From 0d4a34665278432089f9905f88f3bd8bcf57eacd Mon Sep 17 00:00:00 2001 From: Gerry Rozema Date: Thu, 17 Aug 2006 07:20:08 +0000 Subject: Build bzImage for x86 builds - allow ext2 images even if initramfs used, they are needed for creating boot images SVN-Revision: 4579 --- openwrt/include/image.mk | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) (limited to 'openwrt/include/image.mk') diff --git a/openwrt/include/image.mk b/openwrt/include/image.mk index 660734c..903c27b 100644 --- a/openwrt/include/image.mk +++ b/openwrt/include/image.mk @@ -45,15 +45,17 @@ ifneq ($(CONFIG_TARGET_ROOTFS_INITRAMFS),y) endef endif - ifeq ($(CONFIG_TARGET_ROOTFS_EXT2FS),y) - define Image/mkfs/ext2 + +endif + +ifeq ($(CONFIG_TARGET_ROOTFS_EXT2FS),y) + define Image/mkfs/ext2 $(STAGING_DIR)/bin/genext2fs -q -b 8192 -I 1500 -d $(BUILD_DIR)/root/ $(KDIR)/root.ext2 $(call Image/Build,ext2) - endef - endif - + endef endif + define Image/mkfs/prepare/default find $(BUILD_DIR)/root -type f -not -perm +0100 | xargs chmod 0644 find $(BUILD_DIR)/root -type f -perm +0100 | xargs chmod 0755 -- cgit v1.1