Date: Tue, 24 Jan 2023 22:11:43 GMT From: Warner Losh <imp@FreeBSD.org> To: src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org Subject: git: 0510ad4b1513 - stable/13 - stand: Add a helper 'universe' target Message-ID: <202301242211.30OMBhLi085119@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=0510ad4b151335be821c55c6d2943f6d0ca17dd0 commit 0510ad4b151335be821c55c6d2943f6d0ca17dd0 Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-07-30 11:01:47 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2023-01-24 21:49:29 +0000 stand: Add a helper 'universe' target Add a shortcut for invokging ${SRCTOP}/tools/boot/universe.sh by creating a 'universe' target in src/stand. This will make it easier to test out all the different combinations of boot loaders that we build. Sponsored by: Netflix (cherry picked from commit 206203f5301b1bda1ceabcb7ecb7c0eee3e6b07a) --- stand/Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/stand/Makefile b/stand/Makefile index 1597f6832c07..4d241c623d97 100644 --- a/stand/Makefile +++ b/stand/Makefile @@ -94,3 +94,8 @@ SUBDIR_DEPEND_uboot+= fdt SUBDIR_PARALLEL= yes .include <bsd.subdir.mk> + +# Simplified way to build-test the most important build combinations for the +# loader. +universe: + sh ${SRCTOP}/tools/boot/universe.sh
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202301242211.30OMBhLi085119>