Skip to content

Commit 0643045

Browse files
committed
prepare release 20241203
1 parent 31974b2 commit 0643045

4 files changed

Lines changed: 10 additions & 10 deletions

File tree

docs/DebianAmd64.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@ How to use a Linux system to write the image onto a USB-Stick or a new hard disk
5353

5454
```shell
5555
# Download the current Debian Amd64 image:
56-
wget -q https://github.com/laroche/arm-devel-infrastructure/releases/download/v20240728/debian-stable-amd64-20240728.zip
56+
wget -q https://github.com/laroche/arm-devel-infrastructure/releases/download/v20241203/debian-stable-amd64-20241203.zip
5757
# Unpack the zip archive to get the raw image *.img:
58-
unzip debian-stable-amd64-20240728.zip
58+
unzip debian-stable-amd64-20241203.zip
5959
# Make sure your install disk is not mounted:
6060
#umount /media/$USER/XXX
6161
# For USB check your devices:
6262
#lsusb; lsblk
6363
# Write the disk image to USB-disk or normal hard disk:
64-
dd if=debian-stable-amd64-20240728/debian-stable-amd64-20240728.img of=/dev/sdX
64+
dd if=debian-stable-amd64-20241203/debian-stable-amd64-20241203.img of=/dev/sdX
6565
```
6666

6767

docs/DebianRpi3.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,15 +58,15 @@ How to use a Linux system to write the image onto a USB-Stick or a new hard disk
5858

5959
```shell
6060
# Download the current Debian rpi3 image:
61-
wget -q https://github.com/laroche/arm-devel-infrastructure/releases/download/v20240728/debian-stable-rpi3-arm64-20240728.zip
61+
wget -q https://github.com/laroche/arm-devel-infrastructure/releases/download/v20241203/debian-stable-rpi3-arm64-20241203.zip
6262
# Unpack the zip archive to get the raw image *.img:
63-
unzip debian-stable-rpi3-arm64-20240728.zip
63+
unzip debian-stable-rpi3-arm64-20241203.zip
6464
# Make sure your install disk is not mounted:
6565
#umount /media/$USER/XXX
6666
# For USB check your devices:
6767
#lsusb; lsblk
6868
# Write the disk image to USB-disk or normal hard disk:
69-
dd if=debian-stable-rpi3-arm64-20240728/debian-stable-amd64-20240728.img of=/dev/sdX
69+
dd if=debian-stable-rpi3-arm64-20241203/debian-stable-amd64-20241203.img of=/dev/sdX
7070
```
7171

7272

vmdb2-debian/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#
55

66
# release date to use:
7-
RDATE="20240728"
7+
RDATE="20241203"
88
# Select either "stable", "testing" or "unstable":
99
TYPE="stable"
1010
# Should we package the image up?

vmdb2-debian/setup.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -747,7 +747,7 @@ KVER=6.5.10-1
747747
# Disabled by default as check for KABI is not enough:
748748
if false && test "$HOSTTYPE" = "x86_64" && ! test -d /lib/modules/${KABI}-amd64 ; then
749749
KERNEL=kernel-amd64-$KVER.tar.gz
750-
wget -q https://github.com/laroche/arm-devel-infrastructure/releases/download/v20240728/$KERNEL
750+
wget -q https://github.com/laroche/arm-devel-infrastructure/releases/download/v20241203/$KERNEL
751751
tar xzf $KERNEL
752752
dpkg -i kernel-amd64-$KVER/linux-image-${KABI}-amd64-unsigned_${KVER}_amd64.deb
753753
rm -fr $KERNEL kernel-amd64-$KVER
@@ -1296,8 +1296,8 @@ if test "X$DEMOSETUP" = X1 ; then
12961296
config_git_default
12971297
fi
12981298
# Remove old Linux kernel:
1299-
if test -d /lib/modules/6.1.0-22-amd64 ; then
1300-
dpkg -P linux-image-6.1.0-22-amd64
1299+
if test -d /lib/modules/6.1.0-27-amd64 ; then
1300+
dpkg -P linux-image-6.1.0-27-amd64
13011301
fi
13021302
# Set new hostname:
13031303
#echo debian01 > /etc/hostname

0 commit comments

Comments
 (0)