From c122152a711aefb59f9572c4d6d3845d4ef6c303 Mon Sep 17 00:00:00 2001 From: florian Date: Thu, 7 May 2009 00:36:47 +0000 Subject: [rdc] also copy bzImage when generating initramfs images git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15650 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/rdc/image/Makefile | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) (limited to 'target/linux/rdc/image') diff --git a/target/linux/rdc/image/Makefile b/target/linux/rdc/image/Makefile index ecfe7ffa7..3c7f476da 100644 --- a/target/linux/rdc/image/Makefile +++ b/target/linux/rdc/image/Makefile @@ -7,14 +7,8 @@ include $(TOPDIR)/rules.mk include $(INCLUDE_DIR)/image.mk -ifeq ($(CONFIG_LINUX_2_6_23),y) -ARCH_PATH=i386 -else -ARCH_PATH=x86 -endif - define Image/Prepare - $(CP) $(LINUX_DIR)/arch/$(ARCH_PATH)/boot/bzImage $(KDIR)/bzImage + $(CP) $(LINUX_DIR)/arch/x86/boot/bzImage $(KDIR)/bzImage endef define trxalign/jffs2-128k @@ -74,9 +68,16 @@ define Image/Build/amit $(STAGING_DIR_HOST)/bin/makeamitbin -o $(BIN_DIR)/openwrt-$(BOARD)-$(1)-ar360w3g.bin -1 ALK_ATG001 -2 Atropos linux3g $(KDIR)/bzImage ramdisk3g $(KDIR)/root.$(1) endef +define Image/Build/Initramfs + $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD)-ramfs.bzImage +endef + define Image/Build $(CP) $(KDIR)/bzImage $(BIN_DIR)/openwrt-$(BOARD).bzImage $(call Image/Build/$(PROFILE),$(1),$(PROFILE),$(patsubst jffs2-%k,%,$(1))) +ifeq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) + $(call Image/Build/Initramfs) +endif endef $(eval $(call BuildImage)) -- cgit v1.2.3