arm64: Add console_init to enable console logs

BUG=None
BRANCH=None
TEST=Compiles sucessfully and hello libpayload seen on screen

Change-Id: I73f888a7b8aa0065c1ca0bf7857c445cc5678cdc
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://chromium-review.googlesource.com/214073
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Commit-Queue: Furquan Shaikh <furquan@chromium.org>
Tested-by: Furquan Shaikh <furquan@chromium.org>
This commit is contained in:
Furquan Shaikh 2014-08-25 15:11:57 -07:00 committed by chrome-internal-fetch
commit 6d6aa84d72

View file

@ -55,11 +55,13 @@ void start_main(void)
{
extern int main(int argc, char **argv);
printf("hello libpayload world");
/* Gather system information. */
lib_get_sysinfo();
#ifndef CONFIG_LP_SKIP_CONSOLE_INIT
console_init();
#endif
printf("ARM64: Libpayload %s\n",__func__);
exception_init();
test_exception();