aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mkimg.standard.sh
diff options
context:
space:
mode:
authorNatanael Copa <ncopa@alpinelinux.org>2018-06-08 07:06:36 +0000
committerNatanael Copa <ncopa@alpinelinux.org>2018-06-11 18:49:42 +0000
commit79f771260719243d28b4732989be6e442df0b5f6 (patch)
tree3415b9ff7cfd27049ed0e1f94d89ba781d65cdd3 /scripts/mkimg.standard.sh
parent2fed215855d86ade153a701301981d8e26ef6351 (diff)
downloadaports-79f771260719243d28b4732989be6e442df0b5f6.tar.bz2
aports-79f771260719243d28b4732989be6e442df0b5f6.tar.xz
scripts/mkimg: shorten volume id of iso image
The volume id cannot be longer than 32 bytes so we need to shorten it a bit
Diffstat (limited to 'scripts/mkimg.standard.sh')
-rwxr-xr-xscripts/mkimg.standard.sh5
1 files changed, 5 insertions, 0 deletions
diff --git a/scripts/mkimg.standard.sh b/scripts/mkimg.standard.sh
index 5153504177..48eb7c3d60 100755
--- a/scripts/mkimg.standard.sh
+++ b/scripts/mkimg.standard.sh
@@ -4,6 +4,7 @@ profile_standard() {
Just enough to get you started.
Network connection is required."
profile_base
+ profile_abbrev="std"
image_ext="iso"
arch="x86 x86_64 ppc64le s390x"
output_format="iso"
@@ -18,10 +19,12 @@ profile_standard() {
profile_extended() {
profile_standard
+ profile_abbrev="ext"
title="Extended"
desc="Most common used packages included.
Suitable for routers and servers.
Runs from RAM."
+ arch="x86 x86_64"
kernel_addons="dahdi-linux xtables-addons zfs spl"
apks="$apks
dahdi-linux dahdi-tools ethtool hwdata lftp links
@@ -58,10 +61,12 @@ profile_extended() {
profile_virt() {
profile_standard
+ profile_abbrev="virt"
title="Virtual"
desc="Similar to standard.
Slimmed down kernel.
Optimized for virtual systems."
+ arch="x86 x86_64"
kernel_addons=
kernel_flavors="virt"
kernel_cmdline="console=tty0 console=ttyS0,115200"