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
Use 115200 bps by default for serial communication9600 was a standard baud rate decades ago, but 115200 is now more commonso choose defaults that are useful to the largest number of users.Note t
Use 115200 bps by default for serial communication9600 was a standard baud rate decades ago, but 115200 is now more commonso choose defaults that are useful to the largest number of users.Note that boot0sio does not support rates above 9600 so it remainsunchanged.Reviewed by: bz, imp, manuRelnotes: YesSponsored by: The FreeBSD FoundationDifferential Revision: https://reviews.freebsd.org/D36295
show more ...
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: one-line .h patternRemove /^\s*\*+\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
btx: rename .s files to .S to use Clang IASAs part of the migration away from obsolete binutils we want to retireGNU as. Most assembly files used on amd64 have a .S extension and areassembled wi
btx: rename .s files to .S to use Clang IASAs part of the migration away from obsolete binutils we want to retireGNU as. Most assembly files used on amd64 have a .S extension and areassembled with Clang's integrated assembler; rename two files instand/i386/btx/lib to .S to use IAS as well.The generated .text is identical (the entire .o files are not, as Clangadds debug info).PR: 205250, 233094Discussed with: impSponsored by: The FreeBSD Foundation
stand: remove CLANG_NO_IAS from btx and gptbootMany components under stand/ had CLANG_NO_IAS added when Clang'sIntegrated Assembler (IAS) did not handle .codeNN directives. Clanggained support q
stand: remove CLANG_NO_IAS from btx and gptbootMany components under stand/ had CLANG_NO_IAS added when Clang'sIntegrated Assembler (IAS) did not handle .codeNN directives. Clanggained support quite some time ago, and we can now build stand/ withIAS.Note that in some cases there are small differences in the generatedoutput, so CLANG_NO_IAS should be removed only after testing (or afterfinding no differences in the output).PR: 205250, 233094Sponsored by: The FreeBSD Foundation
Prefer uintXX_t to u_intXX_tA foolish consistency is the hobgoblin of little minds, adored bylittle statesmen and philosophers and divines. With consistency agreat soul has simply nothing to do.
Prefer uintXX_t to u_intXX_tA foolish consistency is the hobgoblin of little minds, adored bylittle statesmen and philosophers and divines. With consistency agreat soul has simply nothing to do. -- Ralph Waldo Emerson
Centralize several variables.MK_CTF, MK_SSP, MK_PROFILE, NO_PIC, and INTERNALLIB are always thesame, so set them in defs.mk. MAN= is common, so set it here too.This removes a lot of boring repeti
Centralize several variables.MK_CTF, MK_SSP, MK_PROFILE, NO_PIC, and INTERNALLIB are always thesame, so set them in defs.mk. MAN= is common, so set it here too.This removes a lot of boring repetition from the Makefiles that addedalmost no value.
Move sys/boot to stand. Fix all references to new locationSponsored by: Netflix