From nobody Thu Jan 23 01:39:28 2025 X-Original-To: uboot@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 4YdkBy23Bjz5lPc2; Thu, 23 Jan 2025 01:39:38 +0000 (UTC) (envelope-from fuz@fuz.su) Received: from fuz.su (fuz.su [IPv6:2001:41d0:8:e508::1]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (2048 bits) client-digest SHA256) (Client CN "fuz.su", Issuer "fuz.su" (not verified)) by mx1.freebsd.org (Postfix) with ESMTPS id 4YdkBx2lKXz3wGm; Thu, 23 Jan 2025 01:39:37 +0000 (UTC) (envelope-from fuz@fuz.su) Authentication-Results: mx1.freebsd.org; dkim=none; spf=pass (mx1.freebsd.org: domain of fuz@fuz.su designates 2001:41d0:8:e508::1 as permitted sender) smtp.mailfrom=fuz@fuz.su; dmarc=fail reason="SPF not aligned (relaxed), No valid DKIM" header.from=freebsd.org (policy=none) Received: from fuz.su (localhost [127.0.0.1]) by fuz.su (8.18.1/8.18.1) with ESMTPS id 50N1dSYN046965 (version=TLSv1.3 cipher=TLS_AES_256_GCM_SHA384 bits=256 verify=NO); Thu, 23 Jan 2025 02:39:28 +0100 (CET) (envelope-from fuz@fuz.su) Received: (from fuz@localhost) by fuz.su (8.18.1/8.18.1/Submit) id 50N1dSp4046964; Thu, 23 Jan 2025 02:39:28 +0100 (CET) (envelope-from fuz) Date: Thu, 23 Jan 2025 02:39:28 +0100 From: Robert Clausecker Cc: ports-committers@freebsd.org, dev-commits-ports-all@freebsd.org, dev-commits-ports-main@freebsd.org, uboot@freebsd.org Subject: Re: git: 5912458941af - main - emulators/rvvm: RISC-V Virtual Machine Message-ID: References: <202501230107.50N17LLp083244@gitrepo.freebsd.org> List-Id: Discussions List-Archive: https://lists.freebsd.org/archives/freebsd-uboot List-Help: List-Post: List-Subscribe: List-Unsubscribe: X-BeenThere: freebsd-uboot@freebsd.org Sender: owner-freebsd-uboot@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <202501230107.50N17LLp083244@gitrepo.freebsd.org> X-Spamd-Result: default: False [-0.86 / 15.00]; MISSING_TO(2.00)[]; NEURAL_HAM_MEDIUM(-1.00)[-1.000]; NEURAL_HAM_LONG(-1.00)[-1.000]; NEURAL_HAM_SHORT(-0.96)[-0.965]; FORGED_SENDER(0.30)[fuz@freebsd.org,fuz@fuz.su]; R_SPF_ALLOW(-0.20)[+a]; DMARC_POLICY_SOFTFAIL(0.10)[freebsd.org : SPF not aligned (relaxed), No valid DKIM,none]; MIME_GOOD(-0.10)[text/plain]; MISSING_XM_UA(0.00)[]; ASN(0.00)[asn:16276, ipnet:2001:41d0::/32, country:FR]; MIME_TRACE(0.00)[0:+]; FREEFALL_USER(0.00)[fuz]; MLMMJ_DEST(0.00)[dev-commits-ports-all@freebsd.org,dev-commits-ports-main@freebsd.org,uboot@freebsd.org]; ARC_NA(0.00)[]; FROM_NEQ_ENVFROM(0.00)[fuz@freebsd.org,fuz@fuz.su]; FROM_HAS_DN(0.00)[]; R_DKIM_NA(0.00)[]; RCVD_COUNT_TWO(0.00)[2]; TO_MATCH_ENVRCPT_ALL(0.00)[]; TO_DN_NONE(0.00)[]; RCVD_TLS_LAST(0.00)[]; RCPT_COUNT_THREE(0.00)[4] X-Spamd-Bar: / X-Rspamd-Queue-Id: 4YdkBx2lKXz3wGm Am Thu, Jan 23, 2025 at 01:07:21AM +0000 schrieb Robert Clausecker: > The branch main has been updated by fuz: > > URL: https://cgit.FreeBSD.org/ports/commit/?id=5912458941af2189b7fa940dd20a21fd168e67fd > > commit 5912458941af2189b7fa940dd20a21fd168e67fd > Author: Robert Clausecker > AuthorDate: 2025-01-22 23:29:49 +0000 > Commit: Robert Clausecker > CommitDate: 2025-01-23 01:06:22 +0000 > > emulators/rvvm: RISC-V Virtual Machine > > RVVM is a virtual machine / emulator for RISC-V guests, which emphasizes > on performance, security, lean code and portability. It already runs a > lot of guest operating systems, including Linux, Haiku, FreeBSD, > OpenBSD, etc. It also aims to run RISC-V applications on a foreign-arch > host without full OS guest & isolation (Userland emulation). > > WWW: https://github.com/LekKit/RVVM > --- > emulators/Makefile | 1 + > emulators/rvvm/Makefile | 79 +++++++++++++++++++++++++++++++++++++ > emulators/rvvm/distinfo | 9 +++++ > emulators/rvvm/files/patch-Makefile | 75 +++++++++++++++++++++++++++++++++++ > emulators/rvvm/files/pkg-message.in | 11 ++++++ > emulators/rvvm/pkg-descr | 5 +++ > emulators/rvvm/pkg-plist | 30 ++++++++++++++ > 7 files changed, 210 insertions(+) > +MASTER_SITES= https://github.com/LekKit/patches-misc/releases/download/rvvm-uboot-2024.7/:fw \ > + https://github.com/LekKit/riscv-tests/releases/download/rvvm-tests/:tests > +DISTFILES= ${FWFILES:.bin=.bin:fw} riscv-tests.tar.gz:tests It would be great if we could build these firmware images from source. Upstream provides a patch set for U-Boot in the repository given in MASTER_SITES, but I don't know enough about U-Boot to generate the right images from that. Maybe someone from uboot@ could help? Yours, Robert Clausecker -- () ascii ribbon campaign - for an encoding-agnostic world /\ - against html email - against proprietary attachments