mirror of
https://github.com/ublue-os/bazzite.git
synced 2025-03-02 19:13:28 +00:00
12 lines
352 B
Bash
12 lines
352 B
Bash
|
#!/usr/bin/bash
|
||
|
|
||
|
set -oue pipefail
|
||
|
|
||
|
if [[ "${AKMODS_FLAVOR}" == "surface" ]]; then
|
||
|
KERNEL_NAME=kernel-surface
|
||
|
else
|
||
|
KERNEL_NAME=kernel
|
||
|
fi
|
||
|
|
||
|
KERNEL="$(rpm -q "${KERNEL_NAME}" --queryformat '%{FEDORA_VERSION}-%{RELEASE}.%{ARCH}')"
|
||
|
/usr/libexec/rpm-ostree/wrapped/dracut --no-hostonly --kver "${KERNEL}" --reproducible -v --add ostree -f /tmp/dracut
|