Skip to content

Commit

Permalink
Always start procfs at the end since it seems to lead to system locku…
Browse files Browse the repository at this point in the history
…p at bootup if it's made a passive translator
  • Loading branch information
flavioc committed Jan 29, 2024
1 parent d2d7fda commit a76fb1d
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions files/rc
Original file line number Diff line number Diff line change
Expand Up @@ -92,10 +92,6 @@ if test -d /var/run; then
fi
echo done

if ! test -e /proc/cmdline ; then
settrans -c /proc /hurd/procfs --compatible
fi

# This file must exist for e2fsck to work. XXX
touch /var/run/mtab

Expand Down Expand Up @@ -126,4 +122,12 @@ fi

echo .

echo -n starting translators:

if [ ! -e /proc/cmdline ]; then
settrans -ac /proc /hurd/procfs --compatible && echo -n ' procfs'
fi

echo .

date

0 comments on commit a76fb1d

Please sign in to comment.