diff options
author | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-06-15 22:40:42 +0000 |
commit | 71f9511803de65a3b98d2f592d418da1d1539f13 (patch) | |
tree | 4be38a22fc4f588a80aa8cc350ecd5617a211389 /include/common.h | |
parent | 487778b781257831aa9b9140dd3c7ad4176e8314 (diff) | |
download | u-boot-imx-71f9511803de65a3b98d2f592d418da1d1539f13.zip u-boot-imx-71f9511803de65a3b98d2f592d418da1d1539f13.tar.gz u-boot-imx-71f9511803de65a3b98d2f592d418da1d1539f13.tar.bz2 |
* Fix CONFIG_NET_MULTI support in include/net.h
* Patches by Kyle Harris, 13 Mar 2003:
- Add FAT partition support
- Add command support for FAT
- Add command support for MMC
----
- Add Intel PXA support for video
- Add Intel PXA support for MMC
----
- Enable MMC and FAT for lubbock board
- Other misc changes for lubbock board
Diffstat (limited to 'include/common.h')
-rw-r--r-- | include/common.h | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/include/common.h b/include/common.h index 0a252c5..d312682 100644 --- a/include/common.h +++ b/include/common.h @@ -73,10 +73,21 @@ typedef void (interrupt_handler_t)(void *); #include <asm/u-boot.h> /* boot information for Linux kernel */ #include <asm/global_data.h> /* global data used for startup functions */ -/* enable common handling for all TQM8xxL boards */ +/* + * enable common handling for all TQM8xxL/M boards: + * - CONFIG_TQM8xxM will be defined for all TQM8xxM boards + * - CONFIG_TQM8xxL will be defined for all TQM8xxL _and_ TQM8xxM boards + */ +#if defined(CONFIG_TQM823M) || defined(CONFIG_TQM850M) || \ + defined(CONFIG_TQM855M) || defined(CONFIG_TQM860M) || \ + defined(CONFIG_TQM862M) +# ifndef CONFIG_TQM8xxM +# define CONFIG_TQM8xxM +# endif +#endif #if defined(CONFIG_TQM823L) || defined(CONFIG_TQM850L) || \ defined(CONFIG_TQM855L) || defined(CONFIG_TQM860L) || \ - defined(CONFIG_TQM862L) + defined(CONFIG_TQM862L) || defined(CONFIG_TQM8xxM) # ifndef CONFIG_TQM8xxL # define CONFIG_TQM8xxL # endif @@ -237,6 +248,7 @@ void load_sernum_ethaddr (void); /* $(BOARD)/$(BOARD).c */ int board_pre_init (void); +int board_post_init (void); int board_postclk_init (void); /* after clocks/timebase, before env/serial */ void board_poweroff (void); |