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.

12 lines
213 B

  1. #!/bin/sh /etc/rc.common
  2. START=01
  3. boot() {
  4. # Procd mounts non-hierarchical cgroupfs so unmount first before cgroupfs-mount
  5. if mountpoint -q /sys/fs/cgroup; then
  6. umount /sys/fs/cgroup/
  7. fi
  8. cgroupfs-mount
  9. }