mirror of
https://github.com/rootzoll/raspiblitz.git
synced 2025-02-28 16:58:03 +01:00
update amd64 base image to debian-12.6.0-amd64-netinst.iso (#4637)
* update amd64 base image to debian-12.6.0-amd64-netinst.iso * add resolvconf and nameservers for the amd64 build
This commit is contained in:
parent
b6c8bc17da
commit
9a2de6cad5
3 changed files with 12 additions and 6 deletions
|
@ -2,6 +2,7 @@
|
|||
|
||||
- New: Set Timezone SSHMENU > SYSTEM > TIME [details](https://github.com/raspiblitz/raspiblitz/issues/1712)
|
||||
- New: Labelbase 2.2.1 [details](https://x.com/labelbase_space)
|
||||
- Update: amd64 base image: debian-12.6.0-amd64-netinst.iso
|
||||
- Update: LNbits 0.12.8 [details](https://github.com/lnbits/lnbits/releases/tag/0.12.8)
|
||||
- Update: Specter Desktop 2.0.4 with reactivated UPDATE option [details](https://github.com/cryptoadvance/specter-desktop/releases/tag/v2.0.4)
|
||||
- Update: BTCPayServer 1.13.0 [details](https://github.com/btcpayserver/btcpayserver/releases/tag/v1.13.0)
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
variable "iso_name" { default = "debian-12.5.0-amd64-netinst.iso" }
|
||||
variable "iso_checksum" { default = "013f5b44670d81280b5b1bc02455842b250df2f0c6763398feb69af1a805a14f" }
|
||||
variable "iso_name" { default = "debian-12.6.0-amd64-netinst.iso" }
|
||||
variable "iso_checksum" { default = "ade3a4acc465f59ca2496344aab72455945f3277a52afc5a2cae88cdc370fa12" }
|
||||
|
||||
variable "pack" { default = "lean" }
|
||||
variable "github_user" { default = "raspiblitz" }
|
||||
|
|
|
@ -1,9 +1,14 @@
|
|||
#!/bin/sh -eux
|
||||
|
||||
# Disable Predictable Network Interface names and use eth0
|
||||
sed -i 's/en[[:alnum:]]*/eth0/g' /etc/network/interfaces;
|
||||
sed -i 's/GRUB_CMDLINE_LINUX="\(.*\)"/GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0 \1"/g' /etc/default/grub;
|
||||
update-grub;
|
||||
sed -i 's/en[[:alnum:]]*/eth0/g' /etc/network/interfaces
|
||||
sed -i 's/GRUB_CMDLINE_LINUX="\(.*\)"/GRUB_CMDLINE_LINUX="net.ifnames=0 biosdevname=0 \1"/g' /etc/default/grub
|
||||
update-grub
|
||||
|
||||
# Adding a 2 sec delay to the interface up, to make the dhclient happy
|
||||
echo "pre-up sleep 2" >> /etc/network/interfaces
|
||||
echo "pre-up sleep 2" >>/etc/network/interfaces
|
||||
|
||||
# needed for resolvconf installed in build_sdcard.sh
|
||||
apt-get install resolvconf -y
|
||||
echo 'nameserver 1.1.1.1' >/etc/resolv.conf
|
||||
echo 'nameserver 8.8.8.8' >>/etc/resolv.conf
|
||||
|
|
Loading…
Add table
Reference in a new issue