diff options
author | Jonas Gorski <jogo@openwrt.org> | 2015-09-10 10:09:26 +0000 |
---|---|---|
committer | Jonas Gorski <jogo@openwrt.org> | 2015-09-10 10:09:26 +0000 |
commit | 78d10e8c9b19235fceb5d9160649da17703eedeb (patch) | |
tree | 5380adbde352895e726c805b8300b7db99a4beb5 | |
parent | 29c44e0647b4ab908ffbad58a9a850038c12920a (diff) | |
download | master-187ad058-78d10e8c9b19235fceb5d9160649da17703eedeb.tar.gz master-187ad058-78d10e8c9b19235fceb5d9160649da17703eedeb.tar.bz2 master-187ad058-78d10e8c9b19235fceb5d9160649da17703eedeb.zip |
ipq806x: fix R7500 kernel generation
Obviously the dummy rootfs must be after the kernel (uImage), not
included in it.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@46837 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | target/linux/ipq806x/image/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/ipq806x/image/Makefile b/target/linux/ipq806x/image/Makefile index 316e0d3ceb..c59e6d446e 100644 --- a/target/linux/ipq806x/image/Makefile +++ b/target/linux/ipq806x/image/Makefile @@ -74,7 +74,7 @@ define Device/DniImage FILESYSTEMS := squashfs KERNEL_SUFFIX := -uImage KERNEL_INITRAMFS := kernel-bin | append-dtb | uImage none - KERNEL = kernel-bin | append-dtb | pad-to $$$$(($$(KERNEL_SIZE)-2*64-1)) | append-file $(KDIR)/root.dummy | uImage none + KERNEL = kernel-bin | append-dtb | pad-to $$$$(($$(KERNEL_SIZE)-2*64-1)) | uImage none | append-file $(KDIR)/root.dummy KERNEL_NAME := zImage NETGEAR_BOARD_ID := NETGEAR_HW_ID := |