summaryrefslogtreecommitdiffstats
path: root/include/image.mk
diff options
context:
space:
mode:
authorgroz <groz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-08-17 07:20:08 +0000
committergroz <groz@3c298f89-4303-0410-b956-a3cf2f4a3e73>2006-08-17 07:20:08 +0000
commitdc8f7b0692f74559101fd004b744415384b932fd (patch)
treed136e5335a677d35a4a4c9aa54af082945374dda /include/image.mk
parent282f9ebaca8fb2e095105f213a4b5a89a497cad0 (diff)
Build bzImage for x86 builds - allow ext2 images even if initramfs used, they are needed for creating boot images
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@4579 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'include/image.mk')
-rw-r--r--include/image.mk12
1 files changed, 7 insertions, 5 deletions
diff --git a/include/image.mk b/include/image.mk
index 660734c9f..903c27ba6 100644
--- a/include/image.mk
+++ b/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