2024-12-15 20:06:07 +01:00
|
|
|
#!/bin/sh
|
|
|
|
touch /etc/booster.yaml
|
|
|
|
tee /etc/booster.yaml <<'EOF'
|
|
|
|
vconsole: true
|
|
|
|
extra_files: busybox
|
|
|
|
enable_lvm: true
|
2024-12-17 16:23:29 +01:00
|
|
|
modules_force_load: usbhid,hid_generic,loop,usb_storage
|
2024-12-15 20:06:07 +01:00
|
|
|
universal: true
|
2024-12-17 16:23:29 +01:00
|
|
|
modules: usbhid,hid_generic,loop,usb_storage
|
2024-12-15 20:06:07 +01:00
|
|
|
enable_hooks: true
|
|
|
|
enable_plymouth: true
|
|
|
|
EOF
|
2024-12-15 22:47:40 +01:00
|
|
|
|
|
|
|
update-initramfs -c -k all
|