git: 63284e7d6ac7 - stable/13 - kboot: List sources one per line to make merges easier
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 24 Jan 2023 22:12:22 UTC
The branch stable/13 has been updated by imp: URL: https://cgit.FreeBSD.org/src/commit/?id=63284e7d6ac7719230190f26982111ad22ccfd6a commit 63284e7d6ac7719230190f26982111ad22ccfd6a Author: Warner Losh <imp@FreeBSD.org> AuthorDate: 2022-09-01 17:07:34 +0000 Commit: Warner Losh <imp@FreeBSD.org> CommitDate: 2023-01-24 21:49:33 +0000 kboot: List sources one per line to make merges easier Make SRC an alphabetical list of files, one per line. Sponsored by: Netflix (cherry picked from commit 69818bcf38e0bb1716a8d29f61ed392d447cea83) --- stand/kboot/Makefile | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/stand/kboot/Makefile b/stand/kboot/Makefile index b8e71fd70dc7..c204af8b17e7 100644 --- a/stand/kboot/Makefile +++ b/stand/kboot/Makefile @@ -18,9 +18,18 @@ NEWVERSWHAT= "kboot loader" ${MACHINE_ARCH} INSTALLFLAGS= -b # Architecture-specific loader code -SRCS= crt1.c conf.c vers.c main.c host_syscalls.c hostcons.c hostdisk.c kbootfdt.c gfx_fb_stub.c -SRCS+= init.c -SRCS+= termios.c +SRCS= \ + conf.c \ + crt1.c \ + gfx_fb_stub.c \ + host_syscalls.c \ + hostcons.c \ + hostdisk.c \ + init.c \ + kbootfdt.c \ + main.c \ + termios.c \ + vers.c \ CFLAGS.gfx_fb_stub.c += -I${SRCTOP}/contrib/pnglite -I${SRCTOP}/sys/teken