Remove default for hardened kernel
This commit is contained in:
parent
8fdd32d72d
commit
e3867f2ebc
1 changed files with 2 additions and 10 deletions
|
@ -35,9 +35,7 @@
|
|||
# $ROOTFS is always included, don't specify them here.
|
||||
# Default is "scsi virtio".
|
||||
#
|
||||
# -k --kernel-flavor KERNEL_FLAVOR The kernel flavour to install; vanilla, virt, hardened,
|
||||
# or virthardened (the last two only up to Alpine 3.7).
|
||||
# Default is virt (Alpine 3.8+) or virthardened.
|
||||
# -k --kernel-flavor KERNEL_FLAVOR The kernel flavour to install; virt (default), or vanilla.
|
||||
#
|
||||
# --keys-dir KEYS_DIR Path of directory with Alpine keys to copy into the image.
|
||||
# Default is /etc/apk/keys. If does not exist, keys for
|
||||
|
@ -331,7 +329,7 @@ done
|
|||
: ${IMAGE_FORMAT:=}
|
||||
: ${IMAGE_SIZE:="2G"}
|
||||
: ${INITFS_FEATURES:="scsi virtio"}
|
||||
: ${KERNEL_FLAVOR:=}
|
||||
: ${KERNEL_FLAVOR:="virt"}
|
||||
: ${KEYS_DIR:="/etc/apk/keys"}
|
||||
: ${PACKAGES:=}
|
||||
: ${REPOS_FILE:="/etc/apk/repositories"}
|
||||
|
@ -434,12 +432,6 @@ _apk add --root . mkinitfs
|
|||
setup_mkinitfs . "base $ROOTFS $INITFS_FEATURES"
|
||||
|
||||
#-----------------------------------------------------------------------
|
||||
if [ -z "$KERNEL_FLAVOR" ]; then
|
||||
_apk search --root . --exact --quiet linux-virt | grep -q . \
|
||||
&& KERNEL_FLAVOR='virt' \
|
||||
|| KERNEL_FLAVOR='virthardened'
|
||||
fi
|
||||
|
||||
einfo "Installing kernel linux-$KERNEL_FLAVOR"
|
||||
|
||||
_apk add --root . linux-$KERNEL_FLAVOR
|
||||
|
|
Loading…
Reference in a new issue