mirror of
https://github.com/opnsense/src.git
synced 2026-06-09 00:32:25 -04:00
release: Don't break if firmware install fails
On some platforms (e.g. powerpc) we don't have packages, so we can't install them onto the ISOs. Proceed with building the images anyway. Reported by: Weekly snapshot builds Fixes:7e2996c1f5("release: install wireless firmware onto disc1 and dvd") MFC after: 1 minute (cherry picked from commite8263ace39)
This commit is contained in:
parent
60ec170449
commit
9431091ee0
1 changed files with 2 additions and 2 deletions
|
|
@ -199,7 +199,7 @@ disc1: packagesystem
|
|||
.endif
|
||||
.if ${.MAKE.OS} == "FreeBSD" && (!defined(NOPKG) || empty(NOPKG))
|
||||
# Install packages onto release media.
|
||||
${PKG_INSTALL} wifi-firmware-kmod-release
|
||||
${PKG_INSTALL} wifi-firmware-kmod-release || true
|
||||
.endif
|
||||
# Set up installation environment
|
||||
ln -fs /tmp/bsdinstall_etc/resolv.conf ${.TARGET}/etc/resolv.conf
|
||||
|
|
@ -273,7 +273,7 @@ dvd: packagesystem
|
|||
.endif
|
||||
.if ${.MAKE.OS} == "FreeBSD" && (!defined(NOPKG) || empty(NOPKG))
|
||||
# Install packages onto release media.
|
||||
${PKG_INSTALL} wifi-firmware-kmod-release
|
||||
${PKG_INSTALL} wifi-firmware-kmod-release || true
|
||||
.endif
|
||||
# Set up installation environment
|
||||
ln -fs /tmp/bsdinstall_etc/resolv.conf ${.TARGET}/etc/resolv.conf
|
||||
|
|
|
|||
Loading…
Reference in a new issue