Mit folgender Meldung bricht das Booten ab, wenn ich den Standard-Kern verwende:
Code: Alles auswählen
bin/sh: can't access tty; job control turned off
(initramfs)
Grüße, Günther
Code: Alles auswählen
bin/sh: can't access tty; job control turned off
(initramfs)
Code: Alles auswählen
# update-initramfs -u
Code: Alles auswählen
update initramfs -u
Code: Alles auswählen
CONFIG_DEVTMPFS=y
# CONFIG_DEVTMPFS_MOUNT is not set
Code: Alles auswählen
append="devtmpfs.mount=1"
Code: Alles auswählen
...
# Note that this only becomes /dev on the real filesystem if udev's scripts
# are used; which they will be, but it's worth pointing out
tmpfs_size="10M"
if [ -e /etc/udev/udev.conf ]; then
. /etc/udev/udev.conf
fi
if ! mount -t devtmpfs -o size=$tmpfs_size,mode=0755 udev /dev; then
echo "W: devtmpfs not available, falling back to tmpfs for /dev"
mount -t tmpfs -o size=$tmpfs_size,mode=0755 udev /dev
[ -e /dev/console ] || mknod -m 0600 /dev/console c 5 1
[ -e /dev/null ] || mknod /dev/null c 1 3
fi
mkdir /dev/pts
mount -t devpts -o noexec,nosuid,gid=5,mode=0620 devpts /dev/pts || true
mount -t tmpfs -o "nosuid,size=20%,mode=0755" tmpfs /run
mkdir -m 0755 /run/initramfs
...