mirror of
https://git.proxmox.com/git/mirror_zfs-debian
synced 2025-08-16 07:57:44 +00:00
9 lines
99 B
Plaintext
9 lines
99 B
Plaintext
for x in $(cat /proc/cmdline)
|
|
do
|
|
case $x in
|
|
root=ZFS=*|root=zfs:*)
|
|
BOOT=zfs
|
|
;;
|
|
esac
|
|
done
|