You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
679 B
18 lines
679 B
#!/bin/sh |
|
|
|
case "$root" in |
|
live:/dev/*) |
|
{ |
|
printf 'KERNEL=="%s", RUN+="/sbin/initqueue --settled --onetime --unique /sbin/dmsquash-live-root %s"\n' \ |
|
"${root#live:/dev/}" "${root#live:}" |
|
printf 'SYMLINK=="%s", RUN+="/sbin/initqueue --settled --onetime --unique /sbin/dmsquash-live-root %s"\n' \ |
|
"${root#live:/dev/}" "${root#live:}" |
|
} >> /etc/udev/rules.d/99-live-squash.rules |
|
wait_for_dev -n "${root#live:}" |
|
;; |
|
live:*) |
|
if [ -f "${root#live:}" ]; then |
|
/sbin/initqueue --settled --onetime --unique /sbin/dmsquash-live-root "${root#live:}" |
|
fi |
|
;; |
|
esac
|
|
|