Ich verwende 4.9.61-1-ARCH armv7l auf meinem RaspberryPi2. Ich habe mein System durch ein Upgrade kaputt gemacht. Um es zu reparieren, habe ich chroot in sdc2 von einer anderen Arch ARM-Installation aus verwendet, aber aus Unfähigkeit die Bootpartition sdc1 nicht gemountet. Ich habe es ausgeführt pacman -Syu
und jetzt bootet mein System wieder und läuft meines Wissens einwandfrei, allerdings habe ich die folgenden Warnungen erhalten:
[2017-11-28 22:34] [ALPM] upgraded linux-raspberrypi (4.9.61-1 -> 4.9.65-1)
[2017-11-28 22:34] [ALPM-SCRIPTLET] WARNING: /boot appears to be a seperate partition but is not mounted.
[2017-11-28 22:34] [ALPM-SCRIPTLET] You probably just broke your system. Congratulations.
[2017-11-28 22:34] [ALPM-SCRIPTLET] >>> Updating module dependencies. Please wait ...
[2017-11-28 22:34] [ALPM] running '99-linux-raspberrypi.hook'...
[2017-11-28 22:34] [ALPM-SCRIPTLET] ==> Building image from preset: /etc/mkinitcpio.d/linux-raspberrypi.preset: 'default'
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> -k 4.9.65-1-ARCH -c /etc/mkinitcpio.conf -g /boot/initramfs-linux.img
[2017-11-28 22:34] [ALPM-SCRIPTLET] ==> Starting build: 4.9.65-1-ARCH
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [base]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [udev]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [autodetect]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [modconf]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [block]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [filesystems]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [keyboard]
[2017-11-28 22:34] [ALPM-SCRIPTLET] -> Running build hook: [fsck]
[2017-11-28 22:34] [ALPM-SCRIPTLET] ==> WARNING: No modules were added to the image. This is probably not what you want.
[2017-11-28 22:34] [ALPM-SCRIPTLET] ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux.img
[2017-11-28 22:34] [ALPM-SCRIPTLET] ==> Image generation successful
Ein anderer pacman -Syu
sagte mir: „Es gibt nichts zu tun“
Jetzt frage ich mich, ob dies möglicherweise bei zukünftigen Upgrades zu Problemen führen kann. Ist es empfehlenswert, linux-raspberrypi herunterzustufen und das Upgrade erneut auszuführen, oder bin ich hier auf der sicheren Seite, da es zu funktionieren scheint?
Die Änderungsdaten des Inhalts des Ordners /boot stimmen mit den Änderungsdaten der Boot-Partition überein, also habe ich sie wie in den Kommentaren vorgeschlagen kopiert – funktioniert einwandfrei.
Antwort1
Kopieren Sie zunächst alles im Verzeichnis /boot in ein temporäres Verzeichnis.
$ sudo cp -R /boot /tmp/boot
$ ls /tmp/boot # verify that everything copied over
Dann lösche alles in /boot,
$ sudo rm -ir /boot/*
Mounten Sie dann Ihr Boot-Verzeichnis.
$ sudo mount -a # mounts all filesystems mentioned in fstab
$ sudo mount | grep boot # verify boot is mounted
Und dann alles zurück nach /boot kopieren,
$ sudo cp -R /tmp/boot/* /boot/
$ ls /boot # verify files copied over successfully
$ sudo rm -rf /tmp/boot # delete temporary directory