1
0
mirror of https://github.com/gryf/mkinitramfs.git synced 2025-12-18 12:00:21 +01:00

Added parameter to disable copying key to the image.

This commit is contained in:
2022-03-23 07:20:02 +01:00
parent a6ef9a7961
commit 7670f949e1

View File

@@ -295,7 +295,8 @@ class Initramfs(object):
self._copy_modules()
# self._copy_wlan_modules()
self._populate_busybox()
self._copy_key()
if self._args.no_key:
self._copy_key()
self._generate_init()
self._mkcpio_arch()
self._cleanup()
@@ -340,6 +341,10 @@ def main():
'initramfs will be generated in current directory.')
parser.add_argument('-m', '--copy-modules', action='store_true',
help='Copy kernel modules into initramfs image.')
parser.add_argument('-n', '--no-key', action='store_true',
help='Do not copy key file to the initramfs - '
'assuming SD card/usb stick is the only way to open '
'encrypted root.')
parser.add_argument('-k', '--key-path', help='path to the location where '
'keys are stored', default=KEYS_PATH)
parser.add_argument('-l', '--lvm', action='store_true',