mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 01:43:08 +02:00
linux/adm5120: generate non-initramfs kernel images too
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@26657 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
39ce0ab228
commit
f05b59043c
@ -15,6 +15,21 @@ define imgname
|
||||
$(BIN_DIR)/$(IMG_PREFIX)-$(2)-$(patsubst jffs2-%,jffs2,$(1))
|
||||
endef
|
||||
|
||||
VMLINUX:=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux
|
||||
fs_squash:=squashfs-only
|
||||
fs_all:=all
|
||||
fs_4k:=4k
|
||||
fs_64k:=64k
|
||||
fs_128k:=128k
|
||||
ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y)
|
||||
fs_squash:=initramfs
|
||||
fs_all:=initramfs
|
||||
fs_4k:=initramfs
|
||||
fs_64k:=initramfs
|
||||
fs_128k:=initramfs
|
||||
VMLINUX:=$(BIN_DIR)/$(IMG_PREFIX)-vmlinux-initramfs
|
||||
endif
|
||||
|
||||
define Build/Clean
|
||||
$(LOADER_MAKE) clean
|
||||
endef
|
||||
@ -93,4 +108,9 @@ define Image/Build/Initramfs
|
||||
$(call Image/Build/Profile/$(PROFILE),Initramfs)
|
||||
endef
|
||||
|
||||
define Image/BuildKernel
|
||||
cp $(KDIR)/vmlinux.elf $(VMLINUX).elf
|
||||
cp $(KDIR)/vmlinux $(VMLINUX).bin
|
||||
endef
|
||||
|
||||
$(eval $(call BuildImage))
|
||||
|
Loading…
Reference in New Issue
Block a user