diff options
author | Florian Fainelli <florian@openwrt.org> | 2013-06-28 22:56:34 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2013-06-28 22:56:34 +0000 |
commit | 8ea5e19823917e48c97fb3195ffed9d0fac24626 (patch) | |
tree | 7dcbc23dcdd63fb5078b9d5bc24bb0d9b34081d5 /target/linux/adm5120/image | |
parent | 78ac19be04c06fe91d68b77c0f9e783c050f66e7 (diff) | |
download | upstream-8ea5e19823917e48c97fb3195ffed9d0fac24626.tar.gz upstream-8ea5e19823917e48c97fb3195ffed9d0fac24626.tar.bz2 upstream-8ea5e19823917e48c97fb3195ffed9d0fac24626.zip |
targets: fix remaining targets for initramfs builds
Fix some bugs that slipped through while making initramfs non exclusive.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 37079
Diffstat (limited to 'target/linux/adm5120/image')
-rw-r--r-- | target/linux/adm5120/image/rb1xx.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/adm5120/image/rb1xx.mk b/target/linux/adm5120/image/rb1xx.mk index 333adce805..35529585a4 100644 --- a/target/linux/adm5120/image/rb1xx.mk +++ b/target/linux/adm5120/image/rb1xx.mk @@ -11,8 +11,8 @@ define Image/cmdline/yaffs2 endef define Image/BuildKernel/RouterBoard - $(CP) $(KDIR)/vmlinux.elf $(call imgname,kernel,rb1xx) - $(STAGING_DIR_HOST)/bin/patch-cmdline $(call imgname,kernel,rb1xx) \ + $(CP) $(KDIR)/vmlinux-initramfs.elf $(call imgname,kernel-initramfs,rb1xx) + $(STAGING_DIR_HOST)/bin/patch-cmdline $(call imgname,kernel-initramfs,rb1xx) \ '$(strip $(call Image/cmdline/yaffs2))' endef |