mirror of
https://gitlab.com/fedora/bootc/base-images.git
synced 2026-09-02 06:20:46 +00:00
Right now we have an "allowlist" effectively for our dracut modules because we specify a configuration in `/usr/lib/dracut/dracut.conf.d` which seems to turn off autodetection. Add in lvm which we definitely want to support. Signed-off-by: Colin Walters <walters@verbum.org>
8 lines
234 B
YAML
8 lines
234 B
YAML
# Configuration for the "tier-1" initramfs
|
|
postprocess:
|
|
- |
|
|
#!/usr/bin/env bash
|
|
mkdir -p /usr/lib/dracut/dracut.conf.d
|
|
cat > /usr/lib/dracut/dracut.conf.d/30-bootc-tier-1.conf << 'EOF'
|
|
dracutmodules+=" lvm "
|
|
EOF
|