diff options
author | Marian Balakowicz <m8@semihalf.com> | 2008-01-31 13:55:53 +0100 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2008-02-07 01:12:59 +0100 |
commit | 68d4f05e6b2383a442fb71f80f2a9fbb3d8def68 (patch) | |
tree | d31babb34f731f8c26a19f20ba3efdc3c4f98312 /lib_microblaze/bootm.c | |
parent | 5ad03eb3854c162684222a718b44c0716ea0db03 (diff) | |
download | u-boot-68d4f05e6b2383a442fb71f80f2a9fbb3d8def68.tar.gz u-boot-68d4f05e6b2383a442fb71f80f2a9fbb3d8def68.tar.xz u-boot-68d4f05e6b2383a442fb71f80f2a9fbb3d8def68.zip |
[new uImage] Removed dead ramdisk code on microblaze architectures
Microblaze do_bootm_linux() includes ramdisk processing code but
the ramdisk does not get used anywhere later on.
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Diffstat (limited to 'lib_microblaze/bootm.c')
-rw-r--r-- | lib_microblaze/bootm.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/lib_microblaze/bootm.c b/lib_microblaze/bootm.c index 1f3e77707a..bccfbe1457 100644 --- a/lib_microblaze/bootm.c +++ b/lib_microblaze/bootm.c @@ -35,17 +35,12 @@ DECLARE_GLOBAL_DATA_PTR; void do_bootm_linux (cmd_tbl_t * cmdtp, int flag, int argc, char *argv[], image_header_t *hdr, int verify) { - ulong initrd_start, initrd_end; - /* First parameter is mapped to $r5 for kernel boot args */ void (*theKernel) (char *); char *commandline = getenv ("bootargs"); theKernel = (void (*)(char *))image_get_ep (hdr); - get_ramdisk (cmdtp, flag, argc, argv, hdr, verify, - IH_ARCH_MICROBLAZE, &initrd_start, &initrd_end); - show_boot_progress (15); #ifdef DEBUG |