summaryrefslogtreecommitdiffstats
path: root/target/ext2
diff options
context:
space:
mode:
Diffstat (limited to 'target/ext2')
-rw-r--r--target/ext2/Config.in6
-rw-r--r--target/ext2/Makefile.in3
2 files changed, 9 insertions, 0 deletions
diff --git a/target/ext2/Config.in b/target/ext2/Config.in
new file mode 100644
index 000000000..7e137ae41
--- /dev/null
+++ b/target/ext2/Config.in
@@ -0,0 +1,6 @@
+config BR2_TARGET_ROOTFS_EXT2
+ bool "ext2 root filesystem for the target device"
+ default y
+ help
+ Build an ext2 root filesystem
+
diff --git a/target/ext2/Makefile.in b/target/ext2/Makefile.in
new file mode 100644
index 000000000..990407718
--- /dev/null
+++ b/target/ext2/Makefile.in
@@ -0,0 +1,3 @@
+ifeq ($(strip $(BR2_TARGET_ROOTFS_EXT2)),y)
+TARGETS+=ext2root
+endif