diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-22 13:38:05 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2005-09-22 13:38:05 +0000 |
commit | 9ad94d5fa76fecc2174324605e3e4f8f13cbb725 (patch) | |
tree | 326669f86154b304bac5d0eb24d062976cd39596 | |
parent | cd7400daf4adb4ac6492eee2d2c9af7ef35583bb (diff) |
fix permissions on image build
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@1977 3c298f89-4303-0410-b956-a3cf2f4a3e73
-rw-r--r-- | openwrt/target/linux/image/Makefile | 6 | ||||
-rw-r--r-- | openwrt/target/linux/image/jffs2.mk | 4 | ||||
-rw-r--r-- | openwrt/target/linux/image/squashfs.mk | 2 |
3 files changed, 9 insertions, 3 deletions
diff --git a/openwrt/target/linux/image/Makefile b/openwrt/target/linux/image/Makefile index 74c778a33..1e3e22f15 100644 --- a/openwrt/target/linux/image/Makefile +++ b/openwrt/target/linux/image/Makefile @@ -25,6 +25,12 @@ install-ib: mkdir -p $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD) cp $(BUILD_DIR)/linux-$(KERNEL)-$(BOARD)/kernel[-_]*.ipk $(IB_DIR)/build_$(ARCH)/linux-$(KERNEL)-$(BOARD)/ +install-prepare: + find $(KDIR)/root -type f -not -perm +0100 | xargs chmod 0644 + find $(KDIR)/root -type f -perm +0100 | xargs chmod 0755 + find $(KDIR)/root -type d | xargs chmod 0755 + chmod 0777 $(KDIR)/root/tmp + rebuild: clean prepare compile install clean: diff --git a/openwrt/target/linux/image/jffs2.mk b/openwrt/target/linux/image/jffs2.mk index a2c47e4dc..2a169ab32 100644 --- a/openwrt/target/linux/image/jffs2.mk +++ b/openwrt/target/linux/image/jffs2.mk @@ -11,11 +11,11 @@ jffs2-clean: $(MAKE) -C jffs2 clean rm -f $(KDIR)/root.jffs2* -$(KDIR)/root.jffs2-4MB: +$(KDIR)/root.jffs2-4MB: install-prepare @rm -rf $(KDIR)/root/jffs $(STAGING_DIR)/bin/mkfs.jffs2 $(JFFS2OPTS) -e 0x10000 -o $@ -d $(KDIR)/root -$(KDIR)/root.jffs2-8MB: +$(KDIR)/root.jffs2-8MB: install-prepare @rm -rf $(KDIR)/root/jffs $(STAGING_DIR)/bin/mkfs.jffs2 $(JFFS2OPTS) -e 0x20000 -o $@ -d $(KDIR)/root diff --git a/openwrt/target/linux/image/squashfs.mk b/openwrt/target/linux/image/squashfs.mk index 42ff77db6..3811567a0 100644 --- a/openwrt/target/linux/image/squashfs.mk +++ b/openwrt/target/linux/image/squashfs.mk @@ -8,7 +8,7 @@ squashfs-clean: $(MAKE) -C squashfs clean rm -f $(KDIR)/root.squashfs -$(KDIR)/root.squashfs: +$(KDIR)/root.squashfs: install-prepare @mkdir -p $(KDIR)/root/jffs $(STAGING_DIR)/bin/mksquashfs-lzma $(KDIR)/root $@ -nopad -noappend -root-owned -le |