summaryrefslogtreecommitdiff
path: root/target/mips
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2017-03-08 05:33:33 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-03-17 04:00:54 +0100
commit2d7388bc334ddb383ae275958d746c0622e515a3 (patch)
tree7ac1f78c268dd847fcac3116c1ae1d421050103e /target/mips
parentd0ee6e2acec02180b8940269020f4034c805f83a (diff)
Implement UBIFS rootfs support
This implements UBIFS rootfs, enables it for mips targets and adds the necessary settings for rb532. Signed-off-by: Phil Sutter <phil@nwl.cc>
Diffstat (limited to 'target/mips')
-rw-r--r--target/mips/Makefile8
1 files changed, 8 insertions, 0 deletions
diff --git a/target/mips/Makefile b/target/mips/Makefile
index bb30049f1..6f0bd728c 100644
--- a/target/mips/Makefile
+++ b/target/mips/Makefile
@@ -87,6 +87,11 @@ else
@echo 'sudo dd if=$(FW_DIR)/disk.img of=/dev/sdX bs=2048k'
endif
endif
+ifeq ($(ADK_TARGET_FS),ubifs)
+targethelp:
+ @echo 'The kernel file is: $(FW_DIR)/${TARGET_KERNEL}'
+ @echo 'The UBI image is: ${FW_DIR}/${ROOTFSUBIFS}'
+endif
# image creation and kernel install
kernel-strip:
@@ -121,3 +126,6 @@ endif
ifeq ($(ADK_TARGET_FS),yaffs)
imageinstall: $(FW_DIR)/$(ROOTFSTARBALL) targethelp
endif
+ifeq ($(ADK_TARGET_FS),ubifs)
+imageinstall: $(FW_DIR)/$(ROOTFSUBIFS) targethelp
+endif