[PATCH] fix video console init

Move console_add_output-driver() inside the for() loop

Signed-off-by: Jordan Crouse <jordan.crouse@amd.com>
Acked-by: Jordan Crouse <jordan.crouse@amd.com>


git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3681 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Jordan Crouse 2008-10-21 21:49:48 +00:00
parent 039255c59c
commit 6ec8285aa1
3 changed files with 4 additions and 3 deletions

View File

@ -115,6 +115,8 @@ $(obj)/lib/libpayload.a: $(OBJS)
$(Q)printf " AR $(subst $(shell pwd)/,,$(@))\n"
$(Q)$(AR) rc $@ $(OBJS)
include util/kconfig/Makefile
$(obj)/%.o: $(src)/%.c
$(Q)printf " CC $(subst $(shell pwd)/,,$(@))\n"
$(Q)$(CC) -m32 $(CFLAGS) -c -o $@ $<
@ -164,7 +166,6 @@ distclean: clean
$(Q)rm -rf build
$(Q)rm -f .config .config.old ..config.tmp .kconfig.d .tmpconfig*
include util/kconfig/Makefile
.PHONY: $(PHONY) prepare clean distclean doxygen doxy

View File

@ -193,11 +193,10 @@ int video_console_init(void)
}
video_console_fixup_cursor();
console_add_output_driver(&cons);
return 0;
}
console_add_output_driver(&cons);
return 0;
}

View File

@ -34,5 +34,6 @@
int main(void)
{
printf("Hello world!\n");
halt();
return 0;
}