diff options
author | Jon Loeliger <jdl@freescale.com> | 2008-01-15 13:42:41 -0600 |
---|---|---|
committer | Jon Loeliger <jdl@freescale.com> | 2008-01-16 12:05:05 -0600 |
commit | ad8f8687b78c3e917b173f038926695383c55555 (patch) | |
tree | 06444e1c48b7b404a23fb337b75584e0274c5c47 /include/configs | |
parent | 7c2221eb230372a9e537c4f6636b147b0909325f (diff) | |
download | u-boot-imx-ad8f8687b78c3e917b173f038926695383c55555.zip u-boot-imx-ad8f8687b78c3e917b173f038926695383c55555.tar.gz u-boot-imx-ad8f8687b78c3e917b173f038926695383c55555.tar.bz2 |
FSL: Convert board/freescale/common/Makefile to use CONFIG_
Convert the board/freescale/common/Makefile to use
CONFIG_* options to select which files to conditionally
compile into the board/freescale/common library rather
than conditionally compiling entire files.
Now handles::
CONFIG_FSL_PIXIS
CONFIG_FSL_DIU_FB
CONFIG_PQ_MDS_PIB
CONFIG_ID_EEPROM is introduced until CFG_ID_EEPROM is gone.
Signed-off-by: Jon Loeliger <jdl@freescale.com>
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/MPC8610HPCD.h | 3 | ||||
-rw-r--r-- | include/configs/MPC8641HPCN.h | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/include/configs/MPC8610HPCD.h b/include/configs/MPC8610HPCD.h index f77c29d..ac4b3e1 100644 --- a/include/configs/MPC8610HPCD.h +++ b/include/configs/MPC8610HPCD.h @@ -141,6 +141,9 @@ #endif #define CFG_ID_EEPROM +#ifdef CFG_ID_EEPROM +#define CONFIG_ID_EEPROM +#endif #define ID_EEPROM_ADDR 0x57 diff --git a/include/configs/MPC8641HPCN.h b/include/configs/MPC8641HPCN.h index 7f485c6..ab875f0 100644 --- a/include/configs/MPC8641HPCN.h +++ b/include/configs/MPC8641HPCN.h @@ -152,6 +152,9 @@ extern unsigned long get_board_sys_clk(unsigned long dummy); #endif #define CFG_ID_EEPROM 1 +#ifdef CFG_ID_EEPROM +#define CONFIG_ID_EEPROM +#endif #define ID_EEPROM_ADDR 0x57 /* |