/* Copyright (C) 2009 coresystems GmbH (Written by Patrick Georgi for coresystems GmbH */ void cbfs_and_run_core(char*, unsigned ebp); static void copy_and_run(unsigned cpu_reset) { if (cpu_reset == 1) cpu_reset = -1; else cpu_reset = 0; #if CONFIG_USE_FALLBACK_IMAGE == 1 cbfs_and_run_core("fallback/coreboot_ram", cpu_reset); #else cbfs_and_run_core("normal/coreboot_ram", cpu_reset); #endif }