Skip to content

Commit

Permalink
Mute systemd on plymouth boot
Browse files Browse the repository at this point in the history
  • Loading branch information
sakaki- committed May 23, 2016
1 parent cd44739 commit 8ef237c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
6 changes: 5 additions & 1 deletion 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.15"
VERSION="1.0.16"
ETCPROFILE="/etc/profile"
DEFAULTEFIBOOTFILE="bootx64.efi"
EFIBOOTFILE="${DEFAULTEFIBOOTFILE}"
Expand Down Expand Up @@ -439,6 +439,10 @@ setup_final_variables() {
KERNEL_CMD_LINE+="keymap=${KEYMAP}"
if [ -n "${PLYMOUTHTHEME}" ]; then
KERNEL_CMD_LINE+=" quiet splash"
if [[ "${INITSYSTEM}" == "systemd" ]]; then
# make sure systemd doesn't print a version number during early boot
KERNEL_CMD_LINE+=" udev.log-priority=3"
fi
fi
if [ -n "${ADDITIONALKERNELCMDS}" ]; then
KERNEL_CMD_LINE+=" ${ADDITIONALKERNELCMDS}"
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.15: May 2016"
.TH BUILDKERNEL 8 "Version 1.0.16: May 2016"
.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.15: May 2016"
.TH BUILDKERNEL 5 "Version 1.0.16: May 2016"
.SH NAME
buildkernel.conf \- a configuration file for \fBbuildkernel\fR(8)
.SH SYNOPSIS
Expand Down

0 comments on commit 8ef237c

Please sign in to comment.