diff options
Diffstat (limited to 'scripts/mkimg.standard.sh')
-rwxr-xr-x | scripts/mkimg.standard.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/mkimg.standard.sh b/scripts/mkimg.standard.sh index 32b5575a2a..4337e07105 100755 --- a/scripts/mkimg.standard.sh +++ b/scripts/mkimg.standard.sh @@ -1,4 +1,8 @@ profile_standard() { + title="Standard" + desc="Alpine as it was intended. + Just enough to get you started. + Network connection is required." profile_base image_ext="iso" arch="x86 x86_64" @@ -9,6 +13,10 @@ profile_standard() { profile_vanilla() { profile_standard + title="Vanilla" + desc="Includes a vanilla kernel. + Does not include grsec patch set. + Suitable for debugging." #arch="$arch aarch64" arch="$arch ppc64le" kernel_flavors="vanilla" @@ -17,6 +25,10 @@ profile_vanilla() { profile_extended() { profile_standard + title="Extended" + desc="Most common used packages included. + Suitable for routers and servers. + Runs from RAM." kernel_addons="dahdi-linux xtables-addons zfs spl" apks="$apks dahdi-linux dahdi-tools ethtool hwdata lftp links @@ -53,6 +65,10 @@ profile_extended() { profile_virt() { profile_standard + title="Virtual" + desc="Similar to standard. + Slimmed down kernel. + Optimized for virtual systems." kernel_addons= kernel_flavors="virthardened" kernel_cmdline="console=tty0 console=ttyS0,115200" |