Skip to content

Commit

Permalink
Bump version to 1.0.27
Browse files Browse the repository at this point in the history
Add manpage note, very small tweaks to PR #17.
  • Loading branch information
sakaki- committed Nov 8, 2017
1 parent b850f6b commit b48bb89
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 deletions.
6 changes: 3 additions & 3 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.26"
VERSION="1.0.27"
ETCPROFILE="/etc/profile"
DEFAULTEFIBOOTFILE="bootx64.efi"
EFIBOOTFILE="${DEFAULTEFIBOOTFILE}"
Expand Down Expand Up @@ -468,8 +468,8 @@ setup_final_variables() {
KERNEL_CMD_LINE+=" ${ADDITIONALKERNELCMDS}"
fi

if grep -q "CONFIG_MODULES is not set" "${TARGETCONFIG}" > /dev/null; then
show "No module support, disabling kernel modules."
if grep -q "^# CONFIG_MODULES is not set$" "${TARGETCONFIG}" > /dev/null; then
warning "No module support, disabling kernel modules."
USINGMODULES=0
else
USINGMODULES=1
Expand Down
6 changes: 5 additions & 1 deletion buildkernel.8
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.TH BUILDKERNEL 8 "Version 1.0.26: November 2017"
.TH BUILDKERNEL 8 "Version 1.0.27: November 2017"
.SH NAME
buildkernel \- build secure boot kernel, save to EFI system partition
.SH SYNOPSIS
Expand Down Expand Up @@ -87,6 +87,10 @@ ensures that an EFI boot entry for the new kernel exists, and that it is placed
.IP \(bu 2
performs a filesystem sync and then unmounts the EFI system partition (if you so specify, see the \fB--unmount-at-end\fR option text).
.RE
.SH MONOLITHIC KERNEL SUPPORT
If \fBCONFIG_MODULES\fR is unset, \fBbuildkernel\fR will automatically detect
this, and in such a case will not attempt to build or install modules during
the flow just described.
.SH OPTIONS
.TP
.BR \-a ", " \-\-ask
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.26: November 2017"
.TH BUILDKERNEL 5 "Version 1.0.27: November 2017"
.SH NAME
buildkernel.conf \- a configuration file for \fBbuildkernel\fR(8)
.SH SYNOPSIS
Expand Down

0 comments on commit b48bb89

Please sign in to comment.