]> git.zerfleddert.de Git - m1-debian/blobdiff - files/rc.local
finish rc.local
[m1-debian] / files / rc.local
index 50eca51f4ae44e68c59cb4ed293b112534f516dc..47dde6aac034e75a09473edaab7561cd63b49ab4 100755 (executable)
@@ -5,9 +5,13 @@
 # [x] find boot partition
 # [x] generate fstab
 # [x] mount /boot/efi
-# [ ] install grub
-# [ ] extract wifi firmware
-# [ ] reboots if grub or wifi firmware has changed
+# [x] install grub
+# [x] extract wifi firmware
+# [ ] on life system skip everything but wifi firmware
+# [ ] In order to change the uuid of the root filesystem, bootstrap.sh must remember it in a file within the mounted disk image. And the initrd needs to change it.
+
+my $firmware_tarball = '/boot/efi/linux-firmware.tar';
+my $firmware_manifest = '/lib/firmware/ASAHI_FIRMWARE_MANIFEST';
 
 sub
 find_root_device
@@ -30,7 +34,7 @@ find_fs_uuid_of_device
 {
         my $dev = shift || die;
         my $blkid_output = `blkid ${dev}`;
-        # /dev/nvme0n1p5: LABEL="/" UUID="fe9c5ac8-edf4-442e-a09e-e0451606898e" BLOCK_SIZE="4096" TYPE="ext4" PARTLABEL="primary" PARTUUID="03378b79-346d-42f9-b404-44b22bc6798f"
+
         if ($blkid_output =~ /UUID="([^"]+)"/) {
                 return $1;
         }
@@ -88,6 +92,38 @@ EOF
         close(FSTAB);
 }
 
+sub
+install_grub
+{
+        system('apt-get install -y grub-efi-arm64-signed-');
+        system("echo 'grub-efi-arm64 grub2/update_nvram boolean false' | debconf-set-selections");
+        system("echo 'grub-efi-arm64 grub2/force_efi_extra_removable boolean true' | debconf-set-selections");
+        system("dpkg-reconfigure -fnoninteractive grub-efi-arm64");
+}
+
+sub
+update_wifi_firmware_if_necessary
+{
+        return unless -f $firmware_tarball;
+
+        if (-f $firmware_manifest) {
+                system("sha256sum -c $firmware_manifest --quiet");
+                return if $? == 0;
+        }
+
+        system("sha256sum $firmware_tarball > $firmware_manifest");
+        system("tar -C /lib/firmware/ -xf $firmware_tarball");
+
+        system('rmmod brcmfmac');
+        system('rmmod brcmutil');
+        sleep(1);
+        system('modprobe brcmfmac');
+        sleep(1);
+        system('rmmod brcmfmac');
+        sleep(1);
+        system('modprobe brcmfmac');
+}
+
 my $root_block_device = undef;
 my $root_fs_uuid = undef;
 my $efi_block_device = undef;
@@ -101,4 +137,7 @@ unless (-f '/etc/fstab') {
         $efi_fs_uuid = find_fs_uuid_of_device($efi_block_device);
         generate_fstab($root_fs_uuid, $efi_fs_uuid);
         system('mount /boot/efi');
+        install_grub();
 }
+
+update_wifi_firmware_if_necessary();
Impressum, Datenschutz