diff options
author | Karl Palsson <karlp@etactica.com> | 2016-10-12 13:51:22 +0000 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-10-15 11:36:51 +0200 |
commit | 5dc56b4123098dbea5e62053fc8c6c154be526b1 (patch) | |
tree | 2df5049203aef9c0da281da67b5cf23cf7fa191a /scripts | |
parent | 4050cfebdaa001d498c396f24dd67771541b710e (diff) | |
download | upstream-5dc56b4123098dbea5e62053fc8c6c154be526b1.tar.gz upstream-5dc56b4123098dbea5e62053fc8c6c154be526b1.tar.bz2 upstream-5dc56b4123098dbea5e62053fc8c6c154be526b1.zip |
scripts: add help text for some generated KConfigs
TARGET_MULTI_PROFILE and TARGET_PER_DEVICE_ROOTFS get some help text to
try and clarify their behaviour.
Signed-off-by: Karl Palsson <karlp@etactica.com>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/target-metadata.pl | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/target-metadata.pl b/scripts/target-metadata.pl index 07160dc4ea..3422572d16 100755 --- a/scripts/target-metadata.pl +++ b/scripts/target-metadata.pl @@ -218,6 +218,9 @@ EOF config TARGET_MULTI_PROFILE bool "Multiple devices" depends on HAS_DEVICES + help + Instead of only building a single image, or all images, this allows you + to select images to be built for multiple devices in one build. EOF @@ -256,6 +259,20 @@ menu "Target Devices" config TARGET_PER_DEVICE_ROOTFS bool "Use a per-device root filesystem that adds profile packages" + help + When disabled, all device packages from all selected devices + will be included in all images by default. (Marked as <*>) You will + still be able to manually deselect any/all packages. + When enabled, each device builds it's own image, including only the + profile packages for that device. (Marked as {M}) You will be able + to change a package to included in all images by marking as {*}, but + will not be able to disable a profile package completely. + + To get the most use of this setting, you must set in a .config stub + before calling "make defconfig". Selecting TARGET_MULTI_PROFILE and + then manually selecting (via menuconfig for instance) this option + will have pre-defaulted all profile packages to included, making this + option appear to have had no effect. EOF foreach my $target (@target) { |