diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-20 16:52:44 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-03-20 16:52:44 +0000 |
commit | f94a44c3ad06ae6bab203a3dda314b9ed98785e0 (patch) | |
tree | cf38157262febf2af1fac1bdd7489a7d5635396f /target/ext2 | |
parent | 0e59ed02089d4c337c1ab2edcc62672ca51425f9 (diff) |
- use numeric values for the superuser to be more portable.
Closes #1250
Diffstat (limited to 'target/ext2')
-rw-r--r-- | target/ext2/Config.in | 2 | ||||
-rw-r--r-- | target/ext2/ext2root.mk | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/ext2/Config.in b/target/ext2/Config.in index 8d733e5ef..b84ead3cd 100644 --- a/target/ext2/Config.in +++ b/target/ext2/Config.in @@ -15,7 +15,7 @@ config BR2_TARGET_ROOTFS_EXT2_INODES default 0 config BR2_TARGET_ROOTFS_EXT2_RESBLKS - int "reserved blocks" + int "reserved blocks percentage" depends on BR2_TARGET_ROOTFS_EXT2 default 0 diff --git a/target/ext2/ext2root.mk b/target/ext2/ext2root.mk index 69aa871e2..600cf134b 100644 --- a/target/ext2/ext2root.mk +++ b/target/ext2/ext2root.mk @@ -96,7 +96,7 @@ $(EXT2_BASE): host-fakeroot makedevs genext2fs rm -f $(STAGING_DIR)/_fakeroot.$(notdir $(EXT2_TARGET)) touch $(STAGING_DIR)/.fakeroot.00000 cat $(STAGING_DIR)/.fakeroot* > $(STAGING_DIR)/_fakeroot.$(notdir $(EXT2_TARGET)) - echo "chown -R root:root $(TARGET_DIR)" >> $(STAGING_DIR)/_fakeroot.$(notdir $(EXT2_TARGET)) + echo "chown -R 0:0 $(TARGET_DIR)" >> $(STAGING_DIR)/_fakeroot.$(notdir $(EXT2_TARGET)) ifneq ($(TARGET_DEVICE_TABLE),) # Use fakeroot to pretend to create all needed device nodes echo "$(STAGING_DIR)/bin/makedevs -d $(TARGET_DEVICE_TABLE) $(TARGET_DIR)" \ |