Dan McGhee wrote:

> (Received complaints about /run/var/bootlog all through the process.
> They were right, it doesn't exist yet.)

Do you have /run/var?

/run is mounted form fstab

tmpfs    /run   tmpfs  defaults     0     0

in the very first boot boot script (mountvirtfs):

# Make sure /run/var is available before logging any messages
if ! mountpoint /run >/dev/null; then
      mount /run || failed=1
fi

mkdir -p /run/var /run/lock /run/shm
...

The scripts all use >> so the only reason that you would get this error 
is iv /run is not mounted.  Actually, even then the writing would be to 
a standard directory so the issue would be permissions.  These scripts 
need to be run as root.

   -- Bruce
-- 
http://linuxfromscratch.org/mailman/listinfo/lfs-support
FAQ: http://www.linuxfromscratch.org/lfs/faq.html
Unsubscribe: See the above information page

Reply via email to