summaryrefslogtreecommitdiff
path: root/eclass/linux-build.eclass
diff options
context:
space:
mode:
authorBertrand Jacquin <bertrand@jacquin.bzh>2015-08-23 22:16:07 +0100
committerBertrand Jacquin <bertrand@jacquin.bzh>2015-08-23 22:18:34 +0100
commit1ef3e9faec61963ddd179db060b9397b7d20c3b8 (patch)
treeaf175c43ec67e821a9831e93f100eb2de55e5f0c /eclass/linux-build.eclass
parentprofiles/common: Disable caps USE flag for app-crypt/pinentry until bug #2646... (diff)
downloadportage-1ef3e9faec61963ddd179db060b9397b7d20c3b8.tar.xz
eclass/linux-build: Correct x509 wording
Diffstat (limited to 'eclass/linux-build.eclass')
-rw-r--r--eclass/linux-build.eclass6
1 files changed, 3 insertions, 3 deletions
diff --git a/eclass/linux-build.eclass b/eclass/linux-build.eclass
index 62f6a5c8..755ea36e 100644
--- a/eclass/linux-build.eclass
+++ b/eclass/linux-build.eclass
@@ -150,7 +150,7 @@ _linux-build_src_prepare_build() {
if [[ -e "${T}/etc/ssl/private/${PF}.crt" &&
-e "${T}/etc/ssl/private/${PF}.key" ]] ; then
- einfo "Use the following X509 pair for CONFIG_MODULE_SIG"
+ einfo "Use the following x509 pair for CONFIG_MODULE_SIG"
einfo " ${PORTAGE_CONFIGROOT%/}/etc/ssl/private/${_LINUX_BUILD_MOD_SIG_X509_PFX}.crt"
einfo " ${PORTAGE_CONFIGROOT%/}/etc/ssl/private/${_LINUX_BUILD_MOD_SIG_X509_PFX}.key"
@@ -160,7 +160,7 @@ _linux-build_src_prepare_build() {
cp --preserve=mode,ownership \
"${T}/etc/ssl/private/${PF}.key" "${BUILDDIR}/signing_key.priv"
else
- einfo "Generating X509 config"
+ einfo "Generating x509 config"
cat > "${BUILDDIR}/x509.genkey" <<-EOF
[ req ]
prompt = no
@@ -179,7 +179,7 @@ _linux-build_src_prepare_build() {
authorityKeyIdentifier=keyid
EOF
- einfo "Generating X509 pair"
+ einfo "Generating x509 pair"
openssl req -x509 -nodes -batch \
-days "${LINUX_BUILD_MOD_SIG_DAYS}" \
-newkey "${LINUX_BUILD_MOD_SIG_KEY_ALG}:${LINUX_BUILD_MOD_SIG_KEY_SIZE}" \