X-Git-Url: http://cvs.zerfleddert.de/cgi-bin/gitweb.cgi/m1-debian/blobdiff_plain/5bd8c45bc4000403e2797f87c54960cabcf1ce04..73dfd6987229baa2b514491550a97a5b3e6171ad:/files/rc.local diff --git a/files/rc.local b/files/rc.local index e6f9c6d..5e9642e 100755 --- a/files/rc.local +++ b/files/rc.local @@ -8,7 +8,7 @@ # [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'; @@ -95,6 +95,7 @@ EOF sub install_grub { + system('rm -rf /boot/efi/*'); 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"); @@ -126,17 +127,21 @@ 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 '/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); + system("mlabel -s -n :: -i $efi_block_device"); + system("tune2fs -U random ${root_block_device}"); $efi_fs_uuid = find_fs_uuid_of_device($efi_block_device); - generate_fstab($root_fs_uuid, $efi_fs_uuid); + $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(); }