diff options
author | wdenk <wdenk> | 2003-03-25 18:06:06 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-03-25 18:06:06 +0000 |
commit | 10f670178cce29d7f078ca622f0eeafd6903748a (patch) | |
tree | 437d2411a2c49fcb6ed8976a776493ec710ce597 | |
parent | 4d75a504d00e65253229e1d1b798a7c37041f078 (diff) | |
download | u-boot-imx-10f670178cce29d7f078ca622f0eeafd6903748a.zip u-boot-imx-10f670178cce29d7f078ca622f0eeafd6903748a.tar.gz u-boot-imx-10f670178cce29d7f078ca622f0eeafd6903748a.tar.bz2 |
*** empty log message ***
-rw-r--r-- | Makefile | 14 | ||||
-rw-r--r-- | include/configs/PM826.h | 3 |
2 files changed, 16 insertions, 1 deletions
@@ -525,6 +525,20 @@ MPC8260ADS_config: unconfig MPC8266ADS_config: unconfig @./mkconfig $(@:_config=) ppc mpc8260 mpc8266ads +PM825_config \ +PM825_ROMBOOT_config: unconfig + @echo "#define CONFIG_PCI" >include/config.h + @./mkconfig -a PM826 ppc mpc8260 pm826 + @cd ./include ; \ + if [ "$(findstring _ROMBOOT_,$@)" ] ; then \ + echo "CONFIG_BOOT_ROM = y" >> config.mk ; \ + echo "... booting from 8-bit flash" ; \ + else \ + echo "CONFIG_BOOT_ROM = n" >> config.mk ; \ + echo "... booting from 64-bit flash" ; \ + fi; \ + echo "export CONFIG_BOOT_ROM" >> config.mk; \ + PM826_config \ PM826_ROMBOOT_config: unconfig @./mkconfig $(call xtract_82xx,$@) ppc mpc8260 pm826 diff --git a/include/configs/PM826.h b/include/configs/PM826.h index 05f7130..444b897 100644 --- a/include/configs/PM826.h +++ b/include/configs/PM826.h @@ -303,9 +303,10 @@ # define CFG_RAMBOOT #endif -#define CONFIG_PCI +#ifdef CONFIG_PCI #define CONFIG_PCI_PNP #define CONFIG_EEPRO100 +#endif /* * Internal Definitions |