fix permissions on image build

git-svn-id: svn://svn.openwrt.org/openwrt/trunk/openwrt@1977 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
Felix Fietkau 2005-09-22 13:38:05 +00:00
parent 4bc7ccda6c
commit 76157716ae
3 changed files with 9 additions and 3 deletions

View File

@ -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:

View File

@ -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

View File

@ -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