diff --git a/scripts/mkimage.sh b/scripts/mkimage.sh index 50d067fa54323b44bb2837d421a1660e1988409b..806247213b03c7fe365909b51097c6debb3577b4 100644 --- a/scripts/mkimage.sh +++ b/scripts/mkimage.sh @@ -209,6 +209,14 @@ req_arch=${req_arch:-${default_arch}} [ "$req_arch" != "all" ] || req_arch="${all_arch}" [ "$req_profiles" != "all" ] || req_profiles="${all_profiles}" +# get abuild pubkey used to sign the apkindex +# we need inject this to the initramfs or we will not be able to use the +# boot repository +if [ -z "$_hostkeys" ]; then + _pub=${PACKAGER_PRIVKEY:+${PACKAGER_PRIVKEY}.pub} + _abuild_pubkey="${PACKAGER_PUBKEY:-$_pub}" +fi + # create images for ARCH in $req_arch; do APKROOT="$WORKDIR/apkroot-$ARCH" diff --git a/scripts/mkimg.base.sh b/scripts/mkimg.base.sh index db2a3b28189b278e91640c87370426bb989ee675..354d174010bb11e9ae75b4494217581c2876621e 100644 --- a/scripts/mkimg.base.sh +++ b/scripts/mkimg.base.sh @@ -4,6 +4,7 @@ build_kernel() { local _pkgs="$@" update-kernel \ $_hostkeys \ + ${_abuild_pubkey:+--apk-pubkey $_abuild_pubkey} \ --media \ --flavor "$_flavor" \ --arch "$ARCH" \