diff options
author | Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> | 2013-02-05 07:16:00 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-02-05 21:35:33 +0100 |
commit | 7f86089292e4fa7e6a7b1907611bd007153f452a (patch) | |
tree | 822aad879d4707ff0e5f83293a10fc8df92baebe /system | |
parent | a0ad75a1255a742b4e4c95e7becf56b20dfecda3 (diff) | |
download | buildroot-novena-7f86089292e4fa7e6a7b1907611bd007153f452a.tar.gz buildroot-novena-7f86089292e4fa7e6a7b1907611bd007153f452a.zip |
target/generic: add filesystem overlay option
The filesystem overlay is a tree that is copied over the target fs
after building everything - which is currently usually done in the
post-build script.
[Peter: don't ignore missing directories]
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
Acked-by: Luca Ceresoli <luca@lucaceresoli.net>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'system')
-rw-r--r-- | system/Config.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/system/Config.in b/system/Config.in index 69863c42b..fa01d914b 100644 --- a/system/Config.in +++ b/system/Config.in @@ -249,6 +249,17 @@ config BR2_TARGET_GENERIC_REMOUNT_ROOTFS_RW endif # BR2_ROOTFS_SKELETON_DEFAULT +config BR2_ROOTFS_OVERLAY + string "Root filesystem overlay directories" + default "" + help + Specify a list of directories that are copied over the target + root filesystem after the build has finished and before it is + packed into the selected filesystem images. + + They are copied as-is into the rootfs, excluding files ending with + ~ and .git, .svn and .hg directories. + config BR2_ROOTFS_POST_BUILD_SCRIPT string "Custom script to run before creating filesystem images" default "" |