release: Ship firmware from kmods repo on DVD
The packages for X.Y-RELEASE are a snapshot of the quarterly branch for stable/X, i.e. typically built on X.(Y-1)-RELEASE. (The case of Y=0 is an exception for obvious reasons.) This works for most ports but not for kernel modules, which may need to be built on the release in question; this is why we have a separate "kmods" repository. Make sure that we put the packages from the kmods repository onto the mini-pkg-repo on the DVD rather than shipping unusable firmware. Reviewed by: bz MFC after: 1 week Sponsored by: https://www.patreon.com/cperciva Differential Revision: https://reviews.freebsd.org/D52581
This commit is contained in:
@@ -5,3 +5,10 @@ release: {
|
|||||||
fingerprints: "/usr/share/keys/pkg",
|
fingerprints: "/usr/share/keys/pkg",
|
||||||
enabled: yes
|
enabled: yes
|
||||||
}
|
}
|
||||||
|
release-kmods: {
|
||||||
|
url: "pkg+http://pkg.FreeBSD.org/${ABI}/kmods_latest",
|
||||||
|
mirror_type: "srv",
|
||||||
|
signature_type: "fingerprints",
|
||||||
|
fingerprints: "/usr/share/keys/pkg",
|
||||||
|
enabled: yes
|
||||||
|
}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ export REPO_AUTOUPDATE="NO"
|
|||||||
export ROOTDIR="$PWD/dvd"
|
export ROOTDIR="$PWD/dvd"
|
||||||
export PORTSDIR="${PORTSDIR:-/usr/ports}"
|
export PORTSDIR="${PORTSDIR:-/usr/ports}"
|
||||||
|
|
||||||
_DVD_PACKAGES="
|
_DVD_PACKAGES_MAIN="
|
||||||
comms/usbmuxd
|
comms/usbmuxd
|
||||||
devel/git@lite
|
devel/git@lite
|
||||||
editors/emacs@nox
|
editors/emacs@nox
|
||||||
@@ -19,7 +19,6 @@ editors/vim
|
|||||||
misc/freebsd-doc-all
|
misc/freebsd-doc-all
|
||||||
net/mpd5
|
net/mpd5
|
||||||
net/rsync
|
net/rsync
|
||||||
net/wifi-firmware-kmod@release
|
|
||||||
ports-mgmt/pkg
|
ports-mgmt/pkg
|
||||||
shells/bash
|
shells/bash
|
||||||
shells/zsh
|
shells/zsh
|
||||||
@@ -35,6 +34,10 @@ x11/xorg
|
|||||||
x11-wm/sway
|
x11-wm/sway
|
||||||
"
|
"
|
||||||
|
|
||||||
|
_DVD_PACKAGES_KMODS="
|
||||||
|
net/wifi-firmware-kmod@release
|
||||||
|
"
|
||||||
|
|
||||||
# If NOPORTS is set for the release, do not attempt to build pkg(8).
|
# If NOPORTS is set for the release, do not attempt to build pkg(8).
|
||||||
if [ ! -f ${PORTSDIR}/Makefile ]; then
|
if [ ! -f ${PORTSDIR}/Makefile ]; then
|
||||||
echo "*** ${PORTSDIR} is missing! ***"
|
echo "*** ${PORTSDIR} is missing! ***"
|
||||||
@@ -74,18 +77,25 @@ if [ -n "${PKG_ALTABI}" ]; then
|
|||||||
ln -s ${PKG_ABI} ${ROOTDIR}/packages/${PKG_ALTABI}
|
ln -s ${PKG_ABI} ${ROOTDIR}/packages/${PKG_ALTABI}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Ensure the ports listed in _DVD_PACKAGES exist to sanitize the
|
# Ensure the ports listed in _DVD_PACKAGES_* exist to sanitize the
|
||||||
# final list.
|
# final list.
|
||||||
for _P in ${_DVD_PACKAGES}; do
|
for _P in ${_DVD_PACKAGES_MAIN}; do
|
||||||
if [ -d "${PORTSDIR}/${_P%%@*}" ]; then
|
if [ -d "${PORTSDIR}/${_P%%@*}" ]; then
|
||||||
DVD_PACKAGES="${DVD_PACKAGES} ${_P}"
|
DVD_PACKAGES_MAIN="${DVD_PACKAGES_MAIN} ${_P}"
|
||||||
|
else
|
||||||
|
echo "*** Skipping nonexistent port: ${_P%%@*}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
for _P in ${_DVD_PACKAGES_KMODS}; do
|
||||||
|
if [ -d "${PORTSDIR}/${_P%%@*}" ]; then
|
||||||
|
DVD_PACKAGES_KMODS="${DVD_PACKAGES_KMODS} ${_P}"
|
||||||
else
|
else
|
||||||
echo "*** Skipping nonexistent port: ${_P%%@*}"
|
echo "*** Skipping nonexistent port: ${_P%%@*}"
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
# Make sure the package list is not empty.
|
# Make sure the package list is not empty.
|
||||||
if [ -z "${DVD_PACKAGES}" ]; then
|
if [ -z "${DVD_PACKAGES_MAIN}${DVD_PACKAGES_KMODS}" ]; then
|
||||||
echo "*** The package list is empty."
|
echo "*** The package list is empty."
|
||||||
echo "*** Something is very wrong."
|
echo "*** Something is very wrong."
|
||||||
# Exit '0' so the rest of the build process continues
|
# Exit '0' so the rest of the build process continues
|
||||||
@@ -96,7 +106,8 @@ fi
|
|||||||
# Print pkg(8) information to make debugging easier.
|
# Print pkg(8) information to make debugging easier.
|
||||||
${PKGCMD} -vv
|
${PKGCMD} -vv
|
||||||
${PKGCMD} update -f
|
${PKGCMD} update -f
|
||||||
${PKGCMD} fetch -o ${PKG_REPODIR} -d ${DVD_PACKAGES}
|
${PKGCMD} fetch -o ${PKG_REPODIR} -r release -d ${DVD_PACKAGES_MAIN}
|
||||||
|
${PKGCMD} fetch -o ${PKG_REPODIR} -r release-kmods -d ${DVD_PACKAGES_KMODS}
|
||||||
|
|
||||||
# Create the 'Latest/pkg.pkg' symlink so 'pkg bootstrap' works
|
# Create the 'Latest/pkg.pkg' symlink so 'pkg bootstrap' works
|
||||||
# using the on-disc packages.
|
# using the on-disc packages.
|
||||||
|
|||||||
Reference in New Issue
Block a user