diff options
author | wdenk <wdenk> | 2003-09-17 15:10:32 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-09-17 15:10:32 +0000 |
commit | f54ebdfa28a3c384cb4904f75f8228f3c6d748c5 (patch) | |
tree | 10a301981147099e9f930ac8ec042328e8c062fa /Makefile | |
parent | 34b3049a60a37e180d73332ccddf706c049a0515 (diff) |
Add auto-update code for TRAB board using USB memory sticks
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -796,7 +796,7 @@ shannon_config : unconfig ## ARM92xT Systems ######################################################################### -xtract_trab = $(subst _big_flash,,$(subst _config,,$1)) +xtract_trab = $(subst _old,,$(subst _config,,$1)) omap1510inn_config : unconfig @./mkconfig $(@:_config=) arm arm925t omap1510inn @@ -811,11 +811,11 @@ smdk2410_config : unconfig @./mkconfig $(@:_config=) arm arm920t smdk2410 trab_config \ -trab_big_flash_config: unconfig +trab_old_config: unconfig @ >include/config.h - @[ -z "$(findstring _big_flash,$@)" ] || \ - { echo "#define CONFIG_BIG_FLASH" >>include/config.h ; \ - echo "... with big flash support" ; \ + @[ -z "$(findstring _old,$@)" ] || \ + { echo "#define CONFIG_OLD_VERSION" >>include/config.h ; \ + echo "... with small memory configuration" ; \ } @./mkconfig -a $(call xtract_trab,$@) arm arm920t trab |