update gentoo systemd profile to 17.1 from 17.0

Upstream is now publishing 17.1 profile systemd stages

Also updates the docs that were forgotten in the last patch

Change-Id: I0f2e7976845b1d3c55ffe8869eec0bc04a191252
This commit is contained in:
Matthew Thode 2019-08-19 15:13:09 -05:00
parent c596fb7dbd
commit 9755c4f9a2
No known key found for this signature in database
GPG Key ID: 64A37BEAAE19A4E8
2 changed files with 7 additions and 7 deletions

View File

@ -26,11 +26,11 @@ Notes:
* Other profiles can be used by exporting GENTOO_PROFILE with a valid profile.
A list of valid profiles follows:
default/linux/amd64/17.0
default/linux/amd64/17.0/no-multilib
default/linux/amd64/17.0/hardened
default/linux/amd64/17.0/no-multilib/hardened
default/linux/amd64/17.0/systemd
default/linux/amd64/17.1
default/linux/amd64/17.1/no-multilib
default/linux/amd64/17.1/hardened
default/linux/amd64/17.1/no-multilib/hardened
default/linux/amd64/17.1/systemd
* You can set the `GENTOO_PORTAGE_CLEANUP` environment variable to False to
disable the clean up of portage repositories (including overlays). This

View File

@ -51,7 +51,7 @@ elif [[ "${GENTOO_PROFILE}" == "default/linux/amd64/17.1/hardened" ]]; then
elif [[ "${GENTOO_PROFILE}" == "default/linux/amd64/17.1/no-multilib/hardened" ]]; then
FILENAME_BASE='gentoo-stage4-hardened-nomultilib'
SIGNED_SOURCE_SUFFIX='hardened+minimal-nomultilib'
elif [[ "${GENTOO_PROFILE}" == "default/linux/amd64/17.0/systemd" ]]; then
elif [[ "${GENTOO_PROFILE}" == "default/linux/amd64/17.1/systemd" ]]; then
FILENAME_BASE='gentoo-stage4-systemd'
SIGNED_SOURCE_SUFFIX='systemd'
else
@ -60,7 +60,7 @@ else
echo 'default/linux/amd64/17.1/no-multilib'
echo 'default/linux/amd64/17.1/hardened'
echo 'default/linux/amd64/17.1/no-multilib/hardened'
echo 'default/linux/amd64/17.0/systemd'
echo 'default/linux/amd64/17.1/systemd'
exit 1
fi