generated from images/live-iso-gnome
15 lines
307 B
Plaintext
15 lines
307 B
Plaintext
|
#!/bin/sh
|
||
|
touch /etc/booster.yaml
|
||
|
tee /etc/booster.yaml <<'EOF'
|
||
|
vconsole: true
|
||
|
extra_files: busybox
|
||
|
enable_lvm: true
|
||
|
modules_force_load: usbhid,hid_generic,loop,usb_storage
|
||
|
universal: true
|
||
|
modules: usbhid,hid_generic,loop,usb_storage
|
||
|
enable_hooks: true
|
||
|
enable_plymouth: true
|
||
|
EOF
|
||
|
|
||
|
update-initramfs -c -k all
|