Remove pacman-boot, it may slow boots times considerably.

This commit is contained in:
Ramon Buldó 2015-06-25 12:17:33 +02:00
parent fffa6f85b7
commit 67b4d20570
3 changed files with 6 additions and 6 deletions

View file

@ -186,12 +186,12 @@ Each iso profile must have these files or symlinks to shared:
# unset defaults to given values
# names must match systemd service names
# services in start_systemd array don't need to be listed here
# start_systemd_live=('livecd' 'mhwd-live' 'pacman-init' 'pacman-boot')
# start_systemd_live=('livecd' 'mhwd-live' 'pacman-init')
# unset defaults to given values,
# names must match openrc service names
# services in start_openrc array don't need to be listed here
# start_openrc_live=('livecd' 'mhwd-live' 'pacman-init' 'pacman-boot')
# start_openrc_live=('livecd' 'mhwd-live' 'pacman-init')
~~~
######* Packages

View file

@ -61,9 +61,9 @@
# unset defaults to given values
# names must match systemd service names
# services in start_systemd array don't need to be listed here
# start_systemd_live=('livecd' 'mhwd-live' 'pacman-init' 'pacman-boot')
# start_systemd_live=('livecd' 'mhwd-live' 'pacman-init')
# unset defaults to given values,
# names must match openrc service names
# services in start_openrc array don't need to be listed here
# start_openrc_live=('livecd' 'mhwd-live' 'pacman-init' 'pacman-boot')
# start_openrc_live=('livecd' 'mhwd-live' 'pacman-init')

View file

@ -452,11 +452,11 @@ load_profile_config(){
fi
if [[ -z ${start_systemd_live[@]} ]];then
start_systemd_live=('livecd' 'mhwd-live' 'pacman-init' 'pacman-boot')
start_systemd_live=('livecd' 'mhwd-live' 'pacman-init')
fi
if [[ -z ${start_openrc_live[@]} ]];then
start_openrc_live=('livecd' 'mhwd-live' 'pacman-init' 'pacman-boot')
start_openrc_live=('livecd' 'mhwd-live' 'pacman-init')
fi
return 0