kernel is set by config

This commit is contained in:
Tobias Powalowski 2024-07-23 07:34:37 +02:00
parent c210c24d8f
commit 788f329497

View file

@ -16,10 +16,7 @@ ARCHBOOT CPIO
Tool for creating an archboot initramfs image. Tool for creating an archboot initramfs image.
-h Display this message and exit -h Display this message and exit
-c <config> Use <config> file -c <config> Use <config> file
-k <kernel> Use specified <kernel>
-g <path> Generate cpio image and write to specified <path> -g <path> Generate cpio image and write to specified <path>
-d <dir> Generate image into <dir> -d <dir> Generate image into <dir>
@ -39,9 +36,6 @@ while [ $# -gt 0 ]; do
-c) shift -c) shift
_CONFIG="${1}" _CONFIG="${1}"
;; ;;
-k) shift
_KERNEL="${1}"
;;
-d) shift -d) shift
_TARGET_DIR="${1}" _TARGET_DIR="${1}"
;; ;;