buildiso, check-yaml: remove plymouth

This commit is contained in:
udeved 2017-02-27 21:39:03 +01:00
parent 05adad0457
commit d75095f3e6
5 changed files with 0 additions and 20 deletions

View file

@ -26,7 +26,6 @@ show_profile(){
msg2 "autologin: %s" "${autologin}"
msg2 "nonfree_mhwd: %s" "${nonfree_mhwd}"
msg2 "pxe_boot: %s" "${pxe_boot}"
msg2 "plymouth_boot: %s" "${plymouth_boot}"
[[ ${target_arch} == 'x86_64' ]] && msg2 "multilib: %s" "${multilib}"

View file

@ -27,7 +27,6 @@ show_profile(){
msg2 "autologin: %s" "${autologin}"
msg2 "nonfree_mhwd: %s" "${nonfree_mhwd}"
msg2 "pxe_boot: %s" "${pxe_boot}"
msg2 "plymouth_boot: %s" "${plymouth_boot}"
[[ ${target_arch} == 'x86_64' ]] && msg2 "multilib: %s" "${multilib}"

View file

@ -26,9 +26,6 @@
# nonfree xorg drivers
# nonfree_mhwd="true"
# use plymouth
# plymouth_boot="true"
# possible values: grub;systemd-boot
# efi_boot_loader="grub"

View file

@ -15,10 +15,6 @@ set_mkinicpio_hooks(){
sed -e 's/miso_pxe_common miso_pxe_http miso_pxe_nbd miso_pxe_nfs //' \
-e 's/memdisk //' -i $1
fi
if ! ${plymouth_boot};then
msg2 "Removing plymouth hook"
sed -e 's/plymouth //' -i $1
fi
if ! ${use_overlayfs};then
msg2 "Setting aufs hook"
sed -e 's/miso /miso_aufs /' -i $1
@ -27,10 +23,6 @@ set_mkinicpio_hooks(){
gen_boot_args(){
local args=(quiet)
local args=()
if ${plymouth_boot};then
args+=(splash)
fi
echo ${args[@]}
}

View file

@ -379,9 +379,6 @@ check_profile_vars(){
if ! is_valid_bool "${nonfree_mhwd}";then
die "nonfree_mhwd only accepts true/false value!"
fi
if ! is_valid_bool "${plymouth_boot}";then
die "plymouth_boot only accepts true/false value!"
fi
if ! is_valid_bool "${pxe_boot}";then
die "pxe_boot only accepts true/false value!"
fi
@ -398,7 +395,6 @@ check_profile_vars(){
get_svc(){
local service=${displaymanager}
${plymouth_boot} && service="$service-plymouth"
echo $service
}
@ -419,8 +415,6 @@ load_profile_config(){
[[ -z ${pxe_boot} ]] && pxe_boot="true"
[[ -z ${plymouth_boot} ]] && plymouth_boot="true"
[[ -z ${nonfree_mhwd} ]] && nonfree_mhwd="true"
[[ -z ${efi_boot_loader} ]] && efi_boot_loader="grub"
@ -514,7 +508,6 @@ reset_profile(){
unset chrootcfg
unset netgroups
unset geoip
unset plymouth_boot
unset basic
unset extra
}