fix typos

This commit is contained in:
illiliti 2020-01-30 18:34:33 +03:00
parent ead666ef0d
commit 5bfcf716be
2 changed files with 5 additions and 3 deletions

4
config
View File

@ -3,7 +3,7 @@
# #
# debug mode # debug mode
debug=1 #debug=1
# parse fstab # parse fstab
#use_fstab=0 #use_fstab=0
@ -18,7 +18,7 @@ root="UUID=07729c48-25d8-4096-acaf-ce5322915680"
#root_args="" #root_args=""
# device manager ( mdev,mdevd,udev ) # device manager ( mdev,mdevd,udev )
devmgr="udev" devmgr="mdev"
# drivers # drivers
#drivers="" #drivers=""

View File

@ -230,7 +230,7 @@ EOF
} }
# TODO add more compession tools # TODO add more compession tools
# create cpio archive and compress # create and compress cpio archive
create_initramfs() { create_initramfs() {
{ {
( cd "$tmpdir" && { ( cd "$tmpdir" && {
@ -257,7 +257,9 @@ check_requirements
# handle debug mode # handle debug mode
[ "$debug" = 1 ] && { [ "$debug" = 1 ] && {
# debug shell commands
set -x set -x
# don't remove anything
trap : EXIT INT trap : EXIT INT
} }