From d4d447cd780753901f9e00aa246cc835458a8f06 Mon Sep 17 00:00:00 2001 From: Andrew Donnellan Date: Mon, 14 Sep 2020 17:12:55 +1000 Subject: tools/create-image.sh: upgrade default release to bullseye bullseye has been the current Debian stable release since 2021, and stretch is now well and truly in the LTS support phase. Change the default release in create-image.sh to bullseye. Also update most other references to stretch in the documentation and elsewhere (there's still a few references we don't change because they're links to images etc). Signed-off-by: Andrew Donnellan --- docs/linux/setup_linux-host_qemu-vm_s390x-kernel.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/linux/setup_linux-host_qemu-vm_s390x-kernel.md') diff --git a/docs/linux/setup_linux-host_qemu-vm_s390x-kernel.md b/docs/linux/setup_linux-host_qemu-vm_s390x-kernel.md index adcb63c75..f0fab769c 100644 --- a/docs/linux/setup_linux-host_qemu-vm_s390x-kernel.md +++ b/docs/linux/setup_linux-host_qemu-vm_s390x-kernel.md @@ -83,16 +83,16 @@ $KERNEL/arch/s390/boot/bzImage ### Debian -To create a Debian Buster Linux image with the minimal set of required packages do: +To create a Debian Linux image with the minimal set of required packages do: ``` cd $IMAGE/ wget https://raw.githubusercontent.com/google/syzkaller/master/tools/create-image.sh -O create-image.sh chmod +x create-image.sh -./create-image.sh -a s390x -d buster +./create-image.sh -a s390x ``` -The result should be `$IMAGE/buster.img` disk image. +The result should be `$IMAGE/bullseye.img` disk image. For additional options of `create-image.sh`, please refer to `./create-image.sh -h` -- cgit mrf-deployment