diff options
| -rw-r--r-- | fs/Config.in | 8 | ||||
| -rw-r--r-- | fs/common.mk | 5 | 
2 files changed, 11 insertions, 2 deletions
| diff --git a/fs/Config.in b/fs/Config.in index f885c52e7..6865eeaff 100644 --- a/fs/Config.in +++ b/fs/Config.in @@ -15,6 +15,14 @@ config BR2_ROOTFS_POST_BUILD_SCRIPT  	  only argument. Make sure the exit code of that script is 0,  	  otherwise make will stop after calling it. +config BR2_ROOTFS_DEVICE_TABLE +       string "Path to the device table" +       default "target/generic/device_table.txt" +       help +         Specify the location of a device table, that will be passed +         to the makedevs utility to create all the special device +         files in the target filesystem. +  source "fs/cramfs/Config.in"  source "fs/cloop/Config.in"  source "fs/ext2/Config.in" diff --git a/fs/common.mk b/fs/common.mk index fa6afd94d..cc94eb4ef 100644 --- a/fs/common.mk +++ b/fs/common.mk @@ -28,6 +28,7 @@  # macro will automatically generate a compressed filesystem image.  FAKEROOT_SCRIPT = $(BUILD_DIR)/_fakeroot.fs +ROOTFS_DEVICE_TABLE = $(call qstrip,$(BR2_ROOTFS_DEVICE_TABLE))  define ROOTFS_TARGET_INTERNAL @@ -38,8 +39,8 @@ $(BINARIES_DIR)/rootfs.$(1): $(ROOTFS_$(2)_DEPENDENCIES) host-fakeroot makedevs  	touch $(BUILD_DIR)/.fakeroot.00000  	cat $(BUILD_DIR)/.fakeroot* > $(FAKEROOT_SCRIPT)  	echo "chown -R 0:0 $(TARGET_DIR)" >> $(FAKEROOT_SCRIPT) -ifneq ($(TARGET_DEVICE_TABLE),) -	echo "$(HOST_DIR)/usr/bin/makedevs -d $(TARGET_DEVICE_TABLE) $(TARGET_DIR)" >> $(FAKEROOT_SCRIPT) +ifneq ($(ROOTFS_DEVICE_TABLE),) +	echo "$(HOST_DIR)/usr/bin/makedevs -d $(ROOTFS_DEVICE_TABLE) $(TARGET_DIR)" >> $(FAKEROOT_SCRIPT)  endif  	echo "$(ROOTFS_$(2)_CMD)" >> $(FAKEROOT_SCRIPT)  	chmod a+x $(FAKEROOT_SCRIPT) | 
