Looking at the new fuse page, wouldn't it be easier to use: ./configure --prefix=/usr INIT_D_PATH=/dev/null
??? --------------- Also looking at the still open ticket, http://wiki.linuxfromscratch.org/blfs/ticket/2815 There is a boot script: MOUNTPOINT=/sys/fs/fuse/connections start: if ! grep -qw fuse /proc/filesystems; then modprobe fuse >/dev/null 2>&1 || error "Unable to load module fuse." fi if grep -qw fusectl /proc/filesystems && \ ! grep -qw $MOUNTPOINT /proc/mounts; then mount -t fusectl none $MOUNTPOINT >/dev/null 2>&1 || error "Unable to mount control filesystem." fi stop: if grep -qw $MOUNTPOINT /proc/mounts; then umount $MOUNTPOINT >/dev/null 2>&1 || error "Unable to unmount control filesystem." fi Is this needed? If so, should it be incorporated into mountfs? -- Bruce -- http://linuxfromscratch.org/mailman/listinfo/blfs-dev FAQ: http://www.linuxfromscratch.org/blfs/faq.html Unsubscribe: See the above information page
