diff options
author | wdenk <wdenk> | 2004-07-11 22:19:26 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2004-07-11 22:19:26 +0000 |
commit | a1f4a3dd0592ef982017a50a7cfe749823114203 (patch) | |
tree | 5cb47632f587600559b20ad5ca644e1867fc9f2c /lib_arm | |
parent | b9283e2dbedae4492ec0efdf683d51a00566a477 (diff) |
* Patch by George G. Davis, 06 Jul 2004:
- update mach-types.h to latest arm.linux.org.uk master list
- Set correct OMAP1610 bi_arch_number for build target
* Patch by Curt Brune, 06 Jul 2004:
evb4510: add support for timer interrupt; cleanup
Diffstat (limited to 'lib_arm')
-rw-r--r-- | lib_arm/armlinux.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib_arm/armlinux.c b/lib_arm/armlinux.c index 921a1a9851c..6855d5f9494 100644 --- a/lib_arm/armlinux.c +++ b/lib_arm/armlinux.c @@ -166,13 +166,13 @@ void do_bootm_linux (cmd_tbl_t *cmdtp, int flag, int argc, char *argv[], do_reset (cmdtp, flag, argc, argv); } -#ifdef CONFIG_B2 +#if defined(CONFIG_B2) || defined(CONFIG_EVB4510) /* *we need to copy the ramdisk to SRAM to let Linux boot */ memmove ((void *) ntohl(hdr->ih_load), (uchar *)data, len); data = ntohl(hdr->ih_load); -#endif /* CONFIG_B2 */ +#endif /* CONFIG_B2 || CONFIG_EVB4510 */ /* * Now check if we have a multifile image |