Skip to content
Snippets Groups Projects
Commit 836174c2 authored by Imre Kaloz's avatar Imre Kaloz
Browse files

copy initramfs zImage to the bin dir as well


Signed-off-by: default avatarImre Kaloz <kaloz@openwrt.org>

SVN-Revision: 39577
parent 936166c0
No related branches found
No related tags found
No related merge requests found
......@@ -11,7 +11,10 @@ UBIFS_OPTS = -F -m 2048 -e 124KiB -c 4096 -U
UBI_OPTS = -m 2048 -p 128KiB -s 512 -O 2048
define Image/BuildKernel
cp $(KDIR)/zImage $(BIN_DIR)/openwrt-$(BOARD)-zImage
$(CP) $(KDIR)/zImage $(BIN_DIR)/openwrt-$(BOARD)-zImage
ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),)
$(CP) $(KDIR)/zImage-initramfs $(BIN_DIR)/openwrt-$(BOARD)-zImage-initramfs
endif
-mkdir $(BIN_DIR)/dtbs
-$(CP) $(LINUX_DIR)/arch/arm/boot/dts/am335x*.dtb $(BIN_DIR)/dtbs/
-$(CP) $(LINUX_DIR)/arch/arm/boot/dts/omap3*.dtb $(BIN_DIR)/dtbs/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment