[PATCH] FreeBSD: Upgrade to 12.2 release

Warner Losh posted 1 patch 3 years, 2 months ago
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20210219212352.74172-1-imp@freefall.freebsd.org
Maintainers: "Philippe Mathieu-Daudé" <philmd@redhat.com>, "Alex Bennée" <alex.bennee@linaro.org>, Fam Zheng <fam@euphon.net>
There is a newer version of this series
tests/vm/freebsd | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[PATCH] FreeBSD: Upgrade to 12.2 release
Posted by Warner Losh 3 years, 2 months ago
From: Warner Losh <imp@FreeBSD.org>

FreeBSD 12.1 has reached end of life. Use 12.2 instead so that FreeBSD's
project's packages will work.

Signed-off-by: Warner Losh <imp@FreeBSD.org>
---
 tests/vm/freebsd | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tests/vm/freebsd b/tests/vm/freebsd
index 09f3ee6cb8..c5886f6500 100755
--- a/tests/vm/freebsd
+++ b/tests/vm/freebsd
@@ -24,8 +24,8 @@ class FreeBSDVM(basevm.BaseVM):
     name = "freebsd"
     arch = "x86_64"
 
-    link = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/12.1/FreeBSD-12.1-RELEASE-amd64-disc1.iso.xz"
-    csum = "7394c3f60a1e236e7bd3a05809cf43ae39a3b8e5d42d782004cf2f26b1cfcd88"
+    link = "https://download.freebsd.org/ftp/releases/ISO-IMAGES/12.2/FreeBSD-12.2-RELEASE-amd64-disc1.iso.xz"
+    csum = "a4530246cafbf1dd42a9bd3ea441ca9a78a6a0cd070278cbdf63f3a6f803ecae"
     size = "20G"
     pkgs = [
         # build tools
-- 
2.30.0


Re: [PATCH] FreeBSD: Upgrade to 12.2 release
Posted by Gerd Hoffmann 3 years, 2 months ago
On Fri, Feb 19, 2021 at 02:23:52PM -0700, Warner Losh wrote:
> From: Warner Losh <imp@FreeBSD.org>
> 
> FreeBSD 12.1 has reached end of life. Use 12.2 instead so that FreeBSD's
> project's packages will work.

Not working.  There is a little change in the time zone selection
dialog and we need adjust the install script ...

-        self.console_wait_send("Time Zone Selector",    "a\n")
+        self.console_wait_send("Time Zone Selector",    "0\n")

Try "make vm-build-freebsd" to test changes, add "V=1" for
trouble-shooting.

With that change it seems to work fine (my test install is still busy
fetching packages over my slow internet link ...).

take care,
  Gerd


Re: [PATCH] FreeBSD: Upgrade to 12.2 release
Posted by Warner Losh 3 years, 2 months ago
On Mon, Feb 22, 2021 at 6:21 AM Gerd Hoffmann <kraxel@redhat.com> wrote:

> On Fri, Feb 19, 2021 at 02:23:52PM -0700, Warner Losh wrote:
> > From: Warner Losh <imp@FreeBSD.org>
> >
> > FreeBSD 12.1 has reached end of life. Use 12.2 instead so that FreeBSD's
> > project's packages will work.
>
> Not working.  There is a little change in the time zone selection
> dialog and we need adjust the install script ...
>
> -        self.console_wait_send("Time Zone Selector",    "a\n")
> +        self.console_wait_send("Time Zone Selector",    "0\n")
>
> Try "make vm-build-freebsd" to test changes, add "V=1" for
> trouble-shooting.
>

Thanks! I'll have to start doing that...


> With that change it seems to work fine (my test install is still busy
> fetching packages over my slow internet link ...).
>

I'll rebase and try it here...

Warner