Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
loader: install help files only onceEvery file should be installed exactly once by `make installworld`.This is especially important for pkgbase.Loader help files were being installed by each loa
loader: install help files only onceEvery file should be installed exactly once by `make installworld`.This is especially important for pkgbase.Loader help files were being installed by each loader variant (e.g.,the simp, lua, and 4th EFI loaders). Add a (slightly hacky) mechanismto skip installing help files for all but one variant.PR: 271178Reviewed by: impSponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D40021
show more ...
Update/fix Makefile.depend for userland
Create a loader for each interpreter for x86 BIOS and all EFICreate loader_{4th,lua,simp}{,.efi}. All of these are installed bydefault. Create LOADER_DEFAULT_INTERP to specify the defaultinterpre
Create a loader for each interpreter for x86 BIOS and all EFICreate loader_{4th,lua,simp}{,.efi}. All of these are installed bydefault. Create LOADER_DEFAULT_INTERP to specify the defaultinterpreter when no other is specified. LOADER_INTERP is the currentinterpreter language building. Turn building of lua on by default tomatch 4th. simploader is a simplified loader build w/o any interpreterlanguage (but with a simple loader). This is the historic behavir yougot with WITHOUT_FORTH. Make a hard link to the default loader. Thishas to be a hard link rather than the more desirable soft link becauseolder zfsboot blocks don't support symlinks.RelNotes: YesDifferential Revision: https://reviews.freebsd.org/D16705