summaryrefslogtreecommitdiffstats
path: root/fs/Config.in
diff options
context:
space:
mode:
authorDmytro Milinevskyy <milinevskyy@gmail.com>2010-06-16 23:25:56 +0300
committerPeter Korsgaard <jacmet@sunsite.dk>2010-07-18 23:15:55 +0200
commit2b3a43f4e336d1af90200f5f34b931d09119e1e5 (patch)
treede35152b2462d6709019d60e47bd8d74f369e45c /fs/Config.in
parentd9119c0bc55de95967b3de67be1fc49101a9d896 (diff)
downloadbuildroot-novena-2b3a43f4e336d1af90200f5f34b931d09119e1e5.tar.gz
buildroot-novena-2b3a43f4e336d1af90200f5f34b931d09119e1e5.zip
fs: add option to define path to custom rootfs skeleton
Signed-off-by: Dmytro Milinevskyy <milinevskyy@gmail.com> Acked-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'fs/Config.in')
-rw-r--r--fs/Config.in23
1 files changed, 23 insertions, 0 deletions
diff --git a/fs/Config.in b/fs/Config.in
index 6865eeaff..188e8155b 100644
--- a/fs/Config.in
+++ b/fs/Config.in
@@ -23,6 +23,29 @@ config BR2_ROOTFS_DEVICE_TABLE
to the makedevs utility to create all the special device
files in the target filesystem.
+choice
+ prompt "Root FS skeleton"
+
+config BR2_ROOTFS_SKELETON_DEFAULT
+ bool "default target skeleton"
+ help
+ Use default target skeleton
+
+config BR2_ROOTFS_SKELETON_CUSTOM
+ bool "custom target skeleton"
+ help
+ Use custom target skeleton.
+
+endchoice
+
+if BR2_ROOTFS_SKELETON_CUSTOM
+config BR2_ROOTFS_SKELETON_CUSTOM_PATH
+ string "custom target skeleton path"
+ default "fs/skeleton"
+ help
+ Path custom target skeleton.
+endif
+
source "fs/cramfs/Config.in"
source "fs/cloop/Config.in"
source "fs/ext2/Config.in"