aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mkimg.standard.sh
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2017-05-29 14:46:41 +0200
committerNatanael Copa <ncopa@alpinelinux.org>2017-05-30 13:28:57 +0200
commit21c35028cd0ee91e6032a19465170cbb48e8f30f (patch)
tree42347af81d3e2b7ea4bfcfb87f2d0092fca5f30e /scripts/mkimg.standard.sh
parent3bc59080c93d008e276815009bf0b69c6bf3f4d6 (diff)
scripts/mkimg.*: add title and description
Diffstat (limited to 'scripts/mkimg.standard.sh')
-rwxr-xr-xscripts/mkimg.standard.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/scripts/mkimg.standard.sh b/scripts/mkimg.standard.sh
index 32b5575a2af..4337e071059 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"