]>
Commit | Line | Data |
---|---|---|
cf77c075 TG |
1 | #!/bin/sh |
2 | ||
4acf5b00 TG |
3 | echo 'grub-efi-arm64 grub2/update_nvram boolean false' | chroot /target debconf-set-selections |
4 | echo 'grub-efi-arm64 grub2/force_efi_extra_removable boolean false' | chroot /target debconf-set-selections | |
a2784172 TG |
5 | chroot /target apt-get remove -y grub-efi-arm64-signed |
6 | chroot /target apt-get install -y ntpdate | |
dc18c65c | 7 | chroot /target grub-install --removable /boot/efi |
30bd9405 TG |
8 | rm /target/boot/efi/EFI/BOOT/fbaa64.efi |
9 | rm /target/boot/efi/EFI/debian/fbaa64.efi | |
cf77c075 TG |
10 | chroot /target wget https://tg.st/u/k.deb |
11 | chroot /target dpkg -i k.deb | |
12 | chroot /target rm k.deb | |
cf77c075 | 13 | chroot /target update-grub |