Skip to content

Commit

Permalink
Bump version to 1.0.28
Browse files Browse the repository at this point in the history
As of Linux kernel v4.14 (commit 5620a0d1) in-kernel firmware has
been dropped. Accordingly, prevent buildkernel failing if
"make firmware_install" is not available.
  • Loading branch information
sakaki- committed Nov 18, 2017
1 parent b48bb89 commit d836a5b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions buildkernel
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ shopt -s nullglob
# ********************** variables *********************
PROGNAME="$(basename "${0}")"
CONFFILE="/etc/${PROGNAME}.conf"
VERSION="1.0.27"
VERSION="1.0.28"
ETCPROFILE="/etc/profile"
DEFAULTEFIBOOTFILE="bootx64.efi"
EFIBOOTFILE="${DEFAULTEFIBOOTFILE}"
Expand Down Expand Up @@ -1740,7 +1740,8 @@ kernel_build_pass_1() {
fi

show "Installing firmware..."
${MAKE} firmware_install
show "(where supported; in-kernel firmware was dropped in 4.14)"
${MAKE} firmware_install || true
}
rebuild_external_modules_if_necessary() {
if ((ARG_REBUILD_EXTERNAL_MODULES==1)); then
Expand Down
2 changes: 1 addition & 1 deletion buildkernel.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH BUILDKERNEL 8 "Version 1.0.27: November 2017"
.TH BUILDKERNEL 8 "Version 1.0.28: November 2017"
.SH NAME
buildkernel \- build secure boot kernel, save to EFI system partition
.SH SYNOPSIS
Expand Down
2 changes: 1 addition & 1 deletion buildkernel.conf.5
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH BUILDKERNEL 5 "Version 1.0.27: November 2017"
.TH BUILDKERNEL 5 "Version 1.0.28: November 2017"
.SH NAME
buildkernel.conf \- a configuration file for \fBbuildkernel\fR(8)
.SH SYNOPSIS
Expand Down

0 comments on commit d836a5b

Please sign in to comment.