diff options
author | Jason Jin <Jason.jin@freescale.com> | 2007-08-07 16:17:06 +0800 |
---|---|---|
committer | Gerald Van Baren <vanbaren@cideas.com> | 2007-08-07 10:23:58 -0400 |
commit | 7c4c3722a38d40b0cf537ddae72b04f4088b190c (patch) | |
tree | 1207c492fea2401fd964eea9a6960fc6e763cc25 /drivers/bios_emulator/biosemu.c | |
parent | 6c33c78557ca6f8da68c01ce33e278695197d3f4 (diff) | |
download | u-boot-imx-7c4c3722a38d40b0cf537ddae72b04f4088b190c.zip u-boot-imx-7c4c3722a38d40b0cf537ddae72b04f4088b190c.tar.gz u-boot-imx-7c4c3722a38d40b0cf537ddae72b04f4088b190c.tar.bz2 |
Add CONFIG_BIOSEMU define to guard all the bios emulator code
This patch fix the compile issue on the board that did not enable the bios emulator
Diffstat (limited to 'drivers/bios_emulator/biosemu.c')
-rw-r--r-- | drivers/bios_emulator/biosemu.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/bios_emulator/biosemu.c b/drivers/bios_emulator/biosemu.c index 06d4ad3..4c3aedf 100644 --- a/drivers/bios_emulator/biosemu.c +++ b/drivers/bios_emulator/biosemu.c @@ -48,6 +48,8 @@ #include "biosemui.h" #include <malloc.h> +#if defined(CONFIG_BIOSEMU) + BE_sysEnv _BE_env = {{0}}; static X86EMU_memFuncs _BE_mem __attribute__((section(".got2"))) = { BE_rdb, @@ -368,3 +370,4 @@ int X86API BE_int86x(int intno, RMREGS * in, RMREGS * out, RMSREGS * sregs) sregs->gs = M.x86.R_GS; return out->x.ax; } +#endif |