diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-15 16:49:39 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2007-02-15 16:49:39 +0000 |
commit | 0091f181efdb042e778a357df0ba8ffaddfc9b0c (patch) | |
tree | 12579ad566f77af82be219c517dc9b23738058f0 /target/cramfs | |
parent | 2f67d9e2fe7bbec10e67bf7e52999c594c4d6400 (diff) |
- do not use TARGET_DEVICE_TABLE if is is empty
Diffstat (limited to 'target/cramfs')
-rw-r--r-- | target/cramfs/cramfs.mk | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/target/cramfs/cramfs.mk b/target/cramfs/cramfs.mk index f7e867a84..0f488e143 100644 --- a/target/cramfs/cramfs.mk +++ b/target/cramfs/cramfs.mk @@ -72,9 +72,11 @@ cramfsroot: host-fakeroot makedevs cramfs touch $(STAGING_DIR)/.fakeroot.00000 cat $(STAGING_DIR)/.fakeroot* > $(STAGING_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET)) echo "chown -R root:root $(TARGET_DIR)" >> $(STAGING_DIR)/_fakeroot.$(notdir $(CRAMFS_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)" \ >> $(STAGING_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET)) +endif # Use fakeroot so mkcramfs believes the previous fakery echo "$(CRAMFS_DIR)/mkcramfs -q $(CRAMFS_ENDIANNESS) " \ "$(TARGET_DIR) $(CRAMFS_TARGET)" >> $(STAGING_DIR)/_fakeroot.$(notdir $(CRAMFS_TARGET)) |