diff options
author | Graeme Russ <graeme.russ@gmail.com> | 2011-11-08 02:33:20 +0000 |
---|---|---|
committer | Graeme Russ <graeme.russ@gmail.com> | 2011-11-29 21:09:52 +1100 |
commit | a76fc70ee190416e0c161efebdb955a5fac904d3 (patch) | |
tree | da8e5f0fcf2cdcfd938db82d5a35008772a8ab03 /common | |
parent | a206cc23431474a9890f0301f02f50ad3dc9b062 (diff) | |
download | u-boot-imx-a76fc70ee190416e0c161efebdb955a5fac904d3.zip u-boot-imx-a76fc70ee190416e0c161efebdb955a5fac904d3.tar.gz u-boot-imx-a76fc70ee190416e0c161efebdb955a5fac904d3.tar.bz2 |
x86: Provide more configuration granularity
Planned future ports requires more granularity for some options
Signed-off-by: Graeme Russ <graeme.russ@gmail.com>
Diffstat (limited to 'common')
-rw-r--r-- | common/cmd_bdinfo.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/common/cmd_bdinfo.c b/common/cmd_bdinfo.c index 688b238..6c48594 100644 --- a/common/cmd_bdinfo.c +++ b/common/cmd_bdinfo.c @@ -31,7 +31,8 @@ DECLARE_GLOBAL_DATA_PTR; static void print_num(const char *, ulong); -#if !(defined(CONFIG_ARM) || defined(CONFIG_M68K) || defined(CONFIG_SANDBOX)) \ +#if !(defined(CONFIG_ARM) || defined(CONFIG_M68K) || \ + defined(CONFIG_SANDBOX) || defined(CONFIG_X86)) \ || defined(CONFIG_CMD_NET) #define HAVE_PRINT_ETH static void print_eth(int idx); |