]> git.zerfleddert.de Git - m1-debian/blobdiff - files/rc.local
change uuid of ext4
[m1-debian] / files / rc.local
index 47dde6aac034e75a09473edaab7561cd63b49ab4..06769117c44b4feef7a90dbb27c4f9d98fbbc564 100755 (executable)
@@ -8,10 +8,11 @@
 # [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.
+# [x] change uuid of ext4
 
 my $firmware_tarball = '/boot/efi/linux-firmware.tar';
 my $firmware_manifest = '/lib/firmware/ASAHI_FIRMWARE_MANIFEST';
+my $grubcfg = '/mnt/EFI/debian/grub.cfg';
 
 sub
 find_root_device
@@ -58,8 +59,8 @@ find_efi_parition
 
         for my $dev (@candidates) {
                 system("mount -o ro $dev /mnt");
-                        if (-f '/mnt/EFI/boot/grub.cfg') {
-                                open(GRUBCFG, '<', '/mnt/EFI/boot/grub.cfg') || die ("Can't open /mnt/EFI/boot/grub.cfg: $!");
+                        if (-f $grubcfg) {
+                                open(GRUBCFG, '<', $grubcfg) || die ("Can't open $grubcfg: $!");
                                 my @lines = <GRUBCFG>;
                                 for (@lines) {
                                         if (/${uuid_in_grub_cfg}/) {
@@ -85,7 +86,6 @@ generate_fstab
 
         open(FSTAB, '>', '/etc/fstab') || die ("Can not open fstab");
         print FSTAB <<EOF;
-
 UUID="$root_fs_uuid" /         ext4 defaults 0 0
 UUID="$efi_fs_uuid"  /boot/efi vfat defaults 0 0
 EOF
@@ -99,6 +99,7 @@ install_grub
         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");
+        system("update-grub");
 }
 
 sub
@@ -125,17 +126,20 @@ update_wifi_firmware_if_necessary
 }
 
 my $root_block_device = undef;
-my $root_fs_uuid = undef;
+my $initial_root_fs_uuid = undef;
+my $final_root_fs_uuid = undef;
 my $efi_block_device = undef;
 my $efi_fs_uuid = undef;
 
-unless (-f '/etc/fstab') {
+unless (-f '/boot/grub/grub.cfg') {
         $root_block_device = find_root_device();
         system("resize2fs $root_block_device");
-        $root_fs_uuid = find_fs_uuid_of_device($root_block_device);
-        $efi_block_device = find_efi_parition($root_fs_uuid);
+        $initial_root_fs_uuid = find_fs_uuid_of_device($root_block_device);
+        $efi_block_device = find_efi_parition($initial_root_fs_uuid);
         $efi_fs_uuid = find_fs_uuid_of_device($efi_block_device);
-        generate_fstab($root_fs_uuid, $efi_fs_uuid);
+        system("tune2fs -U random ${root_block_device}");
+        $final_root_fs_uuid = find_fs_uuid_of_device($root_block_device);
+        generate_fstab($final_root_fs_uuid, $efi_fs_uuid);
         system('mount /boot/efi');
         install_grub();
 }
Impressum, Datenschutz