| History log of /src/sys/arch/i386/include/Makefile | 
    | Revision |  | Date | Author | Comments | 
| 1.53 |  | 30-Nov-2024 | christos | Create a new header lwp_private.h to contain _lwp_getprivate_fast, _lwp_gettcb_fast, _lwp_settcb and remove them from mcontext.h, so that:
 1. we don't need special hacks to hide them
 2. we can include <lwp.h> where needed to get the necessary prototypes
 without redefining them locally.
 
 | 
| 1.52 |  | 04-Nov-2024 | christos | Undo previous lwp.h change. 
 | 
| 1.51 |  | 03-Nov-2024 | christos | Split __lwp_getprivate_fast and __lwp_*tcb from mcontext.h into a separate lwp.h file.
 
 | 
| 1.50 |  | 13-Sep-2019 | manu | Add multiboot 2 support to x86 bootloaders 
 multiboot 2 is required to boot Xen on an EFI system.
 This also require a kernel patch for properly discovering
 the ACPI RSDP, which is available after 20190912, in
 src/sys/arch/x86/acpi/acpi_machdep.c 1.26-1.28
 
 There are a few missing bit in this multiboot 2 implementation
 (which are unused by Xen):
 - Header tags Address, Freambuffer, and Relocatable are ignored
 - Tags APM and Network are not provided
 - Tags ACPI old and ACP new are only provided for ACPI boot
 - Tag boot device does not provides the subpart (BSD disklabel partition)
 
 Notes:
 - multiboot2 is disabled in dosboot, otherwise the binary
 gets too big and build fails.
 - in src/sys/arch/i386/stand/efiboot, consinit() is renamed
 as efi_consinit() to avoid prototype conflicts in src/sys/sys/systm.h
 
 | 
| 1.49 |  | 12-Jul-2018 | maxv | branches:  1.49.4; Remove the kernel PMC code. Sent yesterday on tech-kern@.
 
 This change:
 
 * Removes "options PERFCTRS", the associated includes, and the associated
 ifdefs. In doing so, it removes several XXXSMPs in the MI code, which is
 good.
 
 * Removes the PMC code of ARM XSCALE.
 
 * Removes all the pmc.h files. They were all empty, except for ARM XSCALE.
 
 * Reorders the x86 PMC code not to rely on the legacy pmc.h file. The
 definitions are put in sysarch.h.
 
 * Removes the kern/sys_pmc.c file, and along with it, the sys_pmc_control
 and sys_pmc_get_info syscalls. They are marked as OBSOL in kern,
 netbsd32 and rump.
 
 * Removes the pmc_evid_t and pmc_ctr_t types.
 
 * Removes all the associated man pages. The sets are marked as obsolete.
 
 | 
| 1.48 |  | 12-Aug-2017 | maxv | branches:  1.48.2;  1.48.4; Remove vm86.
 
 Pass 4.
 
 | 
| 1.47 |  | 09-Aug-2017 | maxv | Remove ibcs2_machdep.h on i386, and don't install it. 
 | 
| 1.46 |  | 08-Aug-2017 | maxv | Move freebsd_machdep.h into sys/compat/freebsd, and don't install it. Now, the compat_freebsd files are all contained in sys/compat/freebsd.
 
 | 
| 1.45 |  | 29-Jul-2017 | maxv | Unlink svr4_machdep.h. 
 | 
| 1.44 |  | 27-Feb-2016 | tls | branches:  1.44.10; Add cpu_rng, a framework for simple on-CPU random number generators.
 
 | 
| 1.43 |  | 23-Jul-2014 | alnsn | branches:  1.43.4; Rename sljitarch.h to sljit_machdep.h.
 
 | 
| 1.42 |  | 12-Feb-2014 | dsl | branches:  1.42.2; Change i386 to use x86/fpu.c instead of i386/isa/npx.c
 This changes the trap10 and trap13 code to call directly into fpu.c,
 removing all the code for T_ARITHTRAP, T_XMM and T_FPUNDA from i386/trap.c
 Not all of the code thate appeared to handle fpu traps was ever called!
 Most of the changes just replace the include of machine/npx.h with x86/fpu.h
 (or remove it entirely).
 
 | 
| 1.41 |  | 05-Nov-2012 | alnsn | branches:  1.41.2; Build sljit test when MKSLJIT != no and set MKSLJIT to yes on amd64 and i386.
 
 | 
| 1.40 |  | 08-Aug-2012 | drochner | branches:  1.40.2; on x86, <machine/cpufunc.h> only pulls in <x86/cpufunc.h>. The latter
 is not installed to userland and noone missed it, so the former ones
 can not be useful either. Don't install them.
 
 | 
| 1.39 |  | 17-Jul-2011 | joerg | branches:  1.39.2; Retire varargs.h support. Move machine/stdarg.h logic into MI
 sys/stdarg.h and expect compiler to provide proper builtins, defaulting
 to the GCC interface. lint still has a special fallback.
 Reduce abuse of _BSD_VA_LIST_ by defining __va_list by default and
 derive va_list as required by standards.
 
 | 
| 1.38 |  | 17-Jul-2011 | dyoung | On i386, good-bye <machine/bus.h>. 
 | 
| 1.37 |  | 31-Jul-2010 | joerg | Add support for fenv.h interface for i386 and amd64. 
 Submitted by Stathis Kamperis as part of GSoC 2010 and ported from
 FreeBSD.
 
 | 
| 1.36 |  | 20-Dec-2007 | ad | branches:  1.36.10;  1.36.24;  1.36.30;  1.36.32; - Make __cpu_simple_lock and similar real functions and patch at runtime.
 - Remove old x86 atomic ops.
 - Drop text alignment back to 16 on i386 (really, this time).
 - Minor cleanup.
 
 | 
| 1.35 |  | 14-Nov-2007 | ad | branches:  1.35.2;  1.35.6; - Remove I486_CPU, I586_CPU, I686_CPU options. They buy us nothing and
 clutter the code significantly.
 - Remove pccons.
 
 | 
| 1.34 |  | 09-Feb-2007 | ad | branches:  1.34.6;  1.34.12;  1.34.22;  1.34.24;  1.34.28;  1.34.30; Merge newlock2 to head.
 
 | 
| 1.33 |  | 26-Jul-2006 | drochner | branches:  1.33.4; don't install <machine/db_machdep.h>, this is kernel only
 
 | 
| 1.32 |  | 04-Feb-2006 | jmmv | branches:  1.32.2; Revert yesterday's change that attempted to fix the detection of the
 boot device when using a Multiboot boot loader.  It couldn't work because
 these boot loaders do not pass a checksum of the disk so matchbiosdisk()
 cannot really find any matches.  I should have gone to sleep before
 commiting...
 
 Found by xtraeme@.
 
 | 
| 1.31 |  | 03-Feb-2006 | jmmv | branches:  1.31.2; When booting an i386 kernel with Multiboot, properly detect the boot device
 by looking it up in the x86_alldisks table (instead of trying to match it
 to 'wd*' manually).
 
 In order to do this, move the cpu_rootconf function from x86 common code
 to amd64 and i386 specific one.  This way, i386 can do an extra step (call
 the appropriate Multiboot code) in the appropriate place (after
 x86_matchbiosdisks and before findroot()).
 
 | 
| 1.30 |  | 03-Feb-2006 | jmmv | Implement support for 'The Multiboot Specification' so that i386 kernels can be booted directly from Multiboot-compliant boot loaders (e.g. GRUB).
 See the added multiboot(8) manual page for more information.
 
 No objections in tech-kern@; only positive comments.
 
 | 
| 1.29 |  | 11-Dec-2005 | christos | branches:  1.29.2;  1.29.4; merge ktrace-lwp.
 
 | 
| 1.28 |  | 03-May-2005 | tron | branches:  1.28.2; "loadfile_machdep.h" should not be installed as pointed out by
 Izumi Tsutsui. This needs to be fixed in the build process.
 
 | 
| 1.27 |  | 02-May-2005 | tron | Install "loadfile_machdep.h" to fix build of "libsa". 
 | 
| 1.26 |  | 08-May-2004 | kleink | Factor out W{CHAR,INT}_{MAX,MIN} into their own header file. 
 | 
| 1.25 |  | 15-May-2003 | wiz | branches:  1.25.2; Don't install machine/mouse.h on i386 and prep; there are no users for
 the old busmouse interface any longer, we use wsmouse now.
 
 | 
| 1.24 |  | 17-Jan-2003 | thorpej | Merge the nathanw_sa branch. 
 | 
| 1.23 |  | 26-Nov-2002 | lukem | Remove KDIR=, since SYS_INCLUDE=symlinks and KDIR are not supported any more. 
 | 
| 1.22 |  | 23-Nov-2002 | lha | install intrdefs.h so it can be used by intr.h (and libkvm) 
 | 
| 1.21 |  | 01-Oct-2002 | fvdl | Merge Bill Sommerfeld's i386 MP branch. This code has some known caveats, but works quite well in a lot of MP cases, and all
 UP cases that I have tested. Parts of this will hopefully be
 reworked in the not-too-distant future.
 
 | 
| 1.20 |  | 06-Sep-2002 | gehenna | Merge the gehenna-devsw branch into the trunk. 
 This merge changes the device switch tables from static array to
 dynamically generated by config(8).
 
 - All device switches is defined as a constant structure in device drivers.
 
 - The new grammer ``device-major'' is introduced to ``files''.
 
 device-major <prefix> char <num> [block <num>] [<rules>]
 
 - All device major numbers must be listed up in port dependent majors.<arch>
 by using this grammer.
 
 - Added the new naming convention.
 The name of the device switch must be <prefix>_[bc]devsw for auto-generation
 of device switch tables.
 
 - The backward compatibility of loading block/character device
 switch by LKM framework is broken. This is necessary to convert
 from block/character device major to device name in runtime and vice versa.
 
 - The restriction to assign device major by LKM is completely removed.
 We don't need to reserve LKM entries for dynamic loading of device switch.
 
 - In compile time, device major numbers list is packed into the kernel and
 the LKM framework will refer it to assign device major number dynamically.
 
 | 
| 1.19 |  | 12-Sep-2001 | jmc | branches:  1.19.2;  1.19.8;  1.19.12; Add mtrr.h to INCS list to get installed on a make includes
 
 | 
| 1.18 |  | 15-Apr-2001 | kleink | branches:  1.18.4;  1.18.6; Add definitions of C99 integer format conversion macros.
 XXX Fastest minimum-width integer types haven't been decided upon yet.
 
 | 
| 1.17 |  | 15-Apr-2001 | kleink | Add definitions of C99 specified-width integer type limits. XXX Fastest minimum-width integer types haven't been decided upon yet.
 
 | 
| 1.16 |  | 14-Apr-2001 | kleink | Add definitions of C99 integer constant macros. Tidy Makefiles up a little.
 
 | 
| 1.15 |  | 14-Apr-2001 | kleink | Add definitions of C99 minimum-width and greatest-width integer types. XXX Fastest minimum-width integer types haven't been decided upon yet.
 
 | 
| 1.14 |  | 05-Nov-2000 | thorpej | branches:  1.14.4; Machine pmc.h
 
 | 
| 1.13 |  | 26-Jun-2000 | kleink | Add <machine/int_types.h>, which provides namespace-pure definitions of exact-width integer types.
 
 | 
| 1.12 |  | 29-Apr-2000 | thorpej | Require that each each MACHINE/MACHINE_ARCH supply a lock.h.  This file contains the values __SIMPLELOCK_LOCKED and __SIMPLELOCK_UNLOCKED, which
 replace the old SIMPLELOCK_LOCKED and SIMPLELOCK_UNLOCKED.  These files
 are also required to supply inline functions __cpu_simple_lock(),
 __cpu_simple_lock_try(), and __cpu_simple_unlock() if locking is to be
 supported on that platform (i.e. if MULTIPROCESSOR is defined in the
 _KERNEL case).  Change these functions to take an int * (&alp->lock_data)
 rather than the struct simplelock * itself.
 
 These changes make it possible for userland to use the locking primitives
 by including <machine/lock.h>.
 
 | 
| 1.11 |  | 17-Mar-2000 | tron | Install "endian_machdep.h" required for "sys/endian.h". 
 | 
| 1.10 |  | 23-Dec-1999 | kleink | C99: Define a NAN macro in <math.h> which evaulates to a constant expression of a single-precision quiet NaN; only to be defined on platforms that do support
 this value.
 
 | 
| 1.9 |  | 25-Oct-1999 | drochner | Don't let loadfile_machdep.h make it to /usr/include - the i386 stand Makefiles already set up the compile environment so that
 machine/loadfile_machdep.h can be found.
 
 | 
| 1.8 |  | 17-Jun-1999 | thorpej | branches:  1.8.2;  1.8.4;  1.8.6; PMAP_NEW is no longer optional on the i386; the old pmap's page table
 allocation strategy no longer works at all.  Move pmap.new.* to pmap.*.
 
 To read the revision history of PMAP_NEW up until this merge, use cvs
 rlog of the old pmap.new.* files.
 
 | 
| 1.7 |  | 28-Apr-1999 | christos | MD defines for the MI loadfile 
 | 
| 1.6 |  | 10-Mar-1999 | mycroft | branches:  1.6.4; Add an ieee.h.
 
 | 
| 1.5 |  | 16-Jan-1999 | tron | Add missing backslashes between continued lines. 
 | 
| 1.4 |  | 16-Jan-1999 | bouyer | Oups, need byte_swap.h too. Pointed out by Robert V. Baron 
 | 
| 1.3 |  | 15-Jan-1999 | bouyer | Move the bswap functions from libutil to libc (this bups the minor of libc and the major of libutil). For little-endian architectures
 merge the bnswap() assembly versions with nto* and hton* using symbols
 aliasing. Use symbol renaming for the bswap function in this case to avoid
 namespace pollution.
 Declare bswap* in machine/bswap.h, not machine/endian.h. For little-endian
 machines, common code for inline macros go in machine/byte_swap.h
 Sync libkern with libc.
 Adjust #include in kernel sources for machine/bswap.h.
 
 | 
| 1.2 |  | 01-Oct-1998 | erh | linux_machdep.h has moved. 
 | 
| 1.1 |  | 12-Jun-1998 | cgd | Rework the way kernel include files are installed.  In the new method, as with user-land programs, include files are installed by each directory
 in the tree that has includes to install.  (This allows more flexibility
 as to what gets installed, makes 'partial installs' easier, and gives us
 more options as to which machines' includes get installed at any given
 time.)  The old SYS_INCLUDES={symlinks,copies} behaviours are _both_
 still supported, though at least one bug in the 'symlinks' case is
 fixed by this change.  Include files can't be build before installation,
 so directories that have includes as targets (e.g. dev/pci) have to move
 those targets into a different Makefile.
 
 | 
| 1.6.4.1 |  | 21-Jun-1999 | thorpej | Sync w/ -current. 
 | 
| 1.8.6.1 |  | 27-Dec-1999 | wrstuden | Pull up to last week's -current. 
 | 
| 1.8.4.1 |  | 15-Nov-1999 | fvdl | Sync with -current 
 | 
| 1.8.2.3 |  | 21-Apr-2001 | bouyer | Sync with HEAD 
 | 
| 1.8.2.2 |  | 22-Nov-2000 | bouyer | Sync with HEAD. 
 | 
| 1.8.2.1 |  | 20-Nov-2000 | bouyer | Update thorpej_scsipi to -current as of a month ago A i386 GENERIC kernel compiles without the siop, ahc and bha drivers
 (will be updated later). i386 IDE/ATAPI and ncr work, as well as
 sparc/esp_sbus. alpha should work as well (untested yet).
 siop, ahc and bha will be updated once I've updated the branch to current
 -current, as well as machine-dependant code.
 
 | 
| 1.14.4.6 |  | 11-Dec-2002 | thorpej | Sync with HEAD. 
 | 
| 1.14.4.5 |  | 18-Oct-2002 | nathanw | Catch up to -current. 
 | 
| 1.14.4.4 |  | 17-Sep-2002 | nathanw | Catch up to -current. 
 | 
| 1.14.4.3 |  | 21-Sep-2001 | nathanw | Catch up to -current. 
 | 
| 1.14.4.2 |  | 21-Jun-2001 | nathanw | Catch up to -current. 
 | 
| 1.14.4.1 |  | 05-Mar-2001 | nathanw | Initial commit of scheduler activations and lightweight process support. 
 | 
| 1.18.6.1 |  | 01-Oct-2001 | fvdl | Catch up with -current. 
 | 
| 1.18.4.2 |  | 10-Oct-2002 | jdolecek | sync kqueue with -current; this includes merge of gehenna-devsw branch, merge of i386 MP branch, and part of autoconf rototil work
 
 | 
| 1.18.4.1 |  | 13-Sep-2001 | thorpej | Update the kqueue branch to HEAD. 
 | 
| 1.19.12.1 |  | 19-May-2002 | gehenna | Remove port-dependent conf.h. 
 | 
| 1.19.8.1 |  | 17-Mar-2002 | thorpej | Add first-cut mutex and rwlock implementation bits for the x86. XXX Does not actually handle i386 CPUs yet, only i486 and later.
 
 | 
| 1.19.2.2 |  | 11-Dec-2001 | sommerfeld | Install atomic.h for benefit of userland 
 | 
| 1.19.2.1 |  | 12-Sep-2001 | sommerfeld | file Makefile was added on branch sommerfeld_i386mp_1 on 2001-12-11 23:51:25 +0000 
 | 
| 1.25.2.3 |  | 21-Sep-2004 | skrll | Fix the sync with head I botched. 
 | 
| 1.25.2.2 |  | 18-Sep-2004 | skrll | Sync with HEAD. 
 | 
| 1.25.2.1 |  | 03-Aug-2004 | skrll | Sync with HEAD 
 | 
| 1.28.2.5 |  | 21-Jan-2008 | yamt | sync with head 
 | 
| 1.28.2.4 |  | 15-Nov-2007 | yamt | sync with head. 
 | 
| 1.28.2.3 |  | 26-Feb-2007 | yamt | sync with head. 
 | 
| 1.28.2.2 |  | 30-Dec-2006 | yamt | sync with head. 
 | 
| 1.28.2.1 |  | 21-Jun-2006 | yamt | sync with head. 
 | 
| 1.29.4.1 |  | 09-Sep-2006 | rpaulo | sync with head 
 | 
| 1.29.2.1 |  | 18-Feb-2006 | yamt | sync with head. 
 | 
| 1.31.2.1 |  | 22-Apr-2006 | simonb | Sync with head. 
 | 
| 1.32.2.1 |  | 11-Aug-2006 | yamt | sync with head 
 | 
| 1.33.4.1 |  | 24-Oct-2006 | ad | Compile fixes 
 | 
| 1.34.30.2 |  | 27-Dec-2007 | mjf | Sync with HEAD. 
 | 
| 1.34.30.1 |  | 19-Nov-2007 | mjf | Sync with HEAD. 
 | 
| 1.34.28.1 |  | 18-Nov-2007 | bouyer | Sync with HEAD 
 | 
| 1.34.24.1 |  | 09-Jan-2008 | matt | sync with HEAD 
 | 
| 1.34.22.1 |  | 21-Nov-2007 | joerg | Sync with HEAD. 
 | 
| 1.34.12.1 |  | 18-Apr-2007 | thorpej | Convert i386 and amd64 to the new atomic ops API. 
 | 
| 1.34.6.1 |  | 03-Dec-2007 | ad | Sync with HEAD. 
 | 
| 1.35.6.1 |  | 02-Jan-2008 | bouyer | Sync with HEAD 
 | 
| 1.35.2.1 |  | 26-Dec-2007 | ad | Sync with head. 
 | 
| 1.36.32.1 |  | 05-Mar-2011 | rmind | sync with head 
 | 
| 1.36.30.1 |  | 17-Aug-2010 | uebayasi | Sync with HEAD. 
 | 
| 1.36.24.2 |  | 27-Aug-2011 | jym | Sync with HEAD. Most notably: uvm/pmap work done by rmind@, and MP Xen work of cherry@.
 
 No regression observed on suspend/restore.
 
 | 
| 1.36.24.1 |  | 24-Oct-2010 | jym | Sync with HEAD 
 | 
| 1.36.10.1 |  | 11-Aug-2010 | yamt | sync with head. 
 | 
| 1.39.2.3 |  | 22-May-2014 | yamt | sync with head. 
 for a reference, the tree before this commit was tagged
 as yamt-pagecache-tag8.
 
 this commit was splitted into small chunks to avoid
 a limitation of cvs.  ("Protocol error: too many arguments")
 
 | 
| 1.39.2.2 |  | 16-Jan-2013 | yamt | sync with (a bit old) head 
 | 
| 1.39.2.1 |  | 30-Oct-2012 | yamt | sync with head 
 | 
| 1.40.2.3 |  | 03-Dec-2017 | jdolecek | update from HEAD 
 | 
| 1.40.2.2 |  | 20-Aug-2014 | tls | Rebase to HEAD as of a few days ago. 
 | 
| 1.40.2.1 |  | 20-Nov-2012 | tls | Resync to 2012-11-19 00:00:00 UTC 
 | 
| 1.41.2.1 |  | 18-May-2014 | rmind | sync with head 
 | 
| 1.42.2.1 |  | 10-Aug-2014 | tls | Rebase. 
 | 
| 1.43.4.2 |  | 28-Aug-2017 | skrll | Sync with HEAD 
 | 
| 1.43.4.1 |  | 19-Mar-2016 | skrll | Sync with HEAD 
 | 
| 1.44.10.1 |  | 18-Sep-2019 | martin | Pull up following revision(s) [adapted, via patch] (requested by manu in ticket #1382):
 
 sys/arch/i386/include/multiboot2.h: revision 1.1
 sys/arch/i386/stand/lib/exec.c: revision 1.74
 sys/arch/i386/stand/efiboot/efiboot.c: revision 1.11
 sys/arch/i386/stand/efiboot/bootia32/multiboot32.S: revision 1.1
 sys/arch/i386/stand/lib/biosdisk.c: revision 1.52
 sys/arch/i386/stand/efiboot/bootx64/efibootx64.c: revision 1.5
 distrib/sets/lists/comp/md.amd64: revision 1.273
 sys/arch/i386/stand/efiboot/eficons.c: revision 1.7
 sys/arch/i386/stand/efiboot/bootia32/efibootia32.c: revision 1.5
 distrib/sets/lists/comp/md.i386: revision 1.191
 sys/arch/i386/stand/lib/libi386.h: revision 1.45
 sys/arch/i386/stand/lib/bootinfo_memmap.c: revision 1.6
 sys/arch/i386/stand/lib/pread.c: revision 1.8
 sys/arch/i386/stand/efiboot/efiboot.h: revision 1.10
 sys/arch/i386/stand/efiboot/bootia32/Makefile: revision 1.3
 sys/arch/i386/stand/lib/Makefile: revision 1.47
 sys/arch/i386/stand/efiboot/bootx64/Makefile: revision 1.2
 sys/arch/i386/stand/lib/multiboot.S: revision 1.3
 sys/arch/i386/stand/efiboot/bootx64/multiboot64.S: revision 1.1
 sys/arch/i386/stand/efiboot/efimemory.c: revision 1.9
 sys/arch/i386/stand/efiboot/boot.c: revision 1.16
 sys/arch/i386/include/Makefile: revision 1.50
 sys/arch/i386/stand/efiboot/Makefile.efiboot: revision 1.16
 share/man/man8/man8.x86/boot.8: revision 1.20
 sys/arch/i386/stand/boot/Makefile.boot: revision 1.73
 sys/arch/i386/stand/pxeboot/Makefile: revision 1.26
 sys/arch/i386/stand/lib/exec_multiboot1.c: revision 1.1
 sys/arch/i386/stand/netboot/Makefile.netboot: revision 1.11
 sys/arch/i386/stand/lib/exec_multiboot2.c: revision 1.1
 sys/arch/i386/stand/lib/biosdisk.h: revision 1.12
 sys/arch/i386/stand/lib/exec_multiboot2.c: revision 1.2
 sys/arch/i386/stand/dosboot/Makefile: revision 1.32
 sys/external/bsd/gnu-efi/dist/inc/efiapi.h (apply patch)
 
 Add multiboot 2 support to x86 bootloaders
 
 multiboot 2 is required to boot Xen on an EFI system.
 
 This also require a kernel patch for properly discovering
 the ACPI RSDP, which is available after 20190912, in
 src/sys/arch/x86/acpi/acpi_machdep.c 1.26-1.28
 
 There are a few missing bit in this multiboot 2 implementation
 (which are unused by Xen):
 - Header tags Address, Freambuffer, and Relocatable are ignored
 - Tags APM and Network are not provided
 - Tags ACPI old and ACP new are only provided for ACPI boot
 - Tag boot device does not provides the subpart (BSD disklabel partition)
 
 Notes:
 - multiboot2 is disabled in dosboot, otherwise the binary
 gets too big and build fails.
 - in src/sys/arch/i386/stand/efiboot, consinit() is renamed
 as efi_consinit() to avoid prototype conflicts in src/sys/sys/systm.h
 
 Remove debug define.
 
 It remained there unseen because it was misspelled!
 
 Remove obsoeolete BUGS note that UEFI bootloader does not support multiboot
 
 Add new multiboot2.h header.
 
 | 
| 1.48.4.2 |  | 13-Apr-2020 | martin | Mostly merge changes from HEAD upto 20200411 
 | 
| 1.48.4.1 |  | 10-Jun-2019 | christos | Sync with HEAD 
 | 
| 1.48.2.1 |  | 28-Jul-2018 | pgoyette | Sync with HEAD 
 | 
| 1.49.4.1 |  | 17-Sep-2019 | martin | Pull up following revision(s) (requested by manu in ticket #203): 
 sys/arch/i386/include/multiboot2.h: revision 1.1
 sys/arch/i386/stand/lib/exec.c: revision 1.74
 sys/arch/i386/stand/efiboot/efiboot.c: revision 1.11
 sys/arch/i386/stand/efiboot/bootia32/multiboot32.S: revision 1.1
 sys/arch/i386/stand/lib/biosdisk.c: revision 1.52
 sys/arch/i386/stand/efiboot/bootx64/efibootx64.c: revision 1.5
 sys/arch/i386/stand/efiboot/eficons.c: revision 1.7
 sys/arch/i386/stand/efiboot/bootia32/efibootia32.c: revision 1.5
 sys/arch/i386/stand/lib/libi386.h: revision 1.45
 sys/arch/i386/stand/lib/bootinfo_memmap.c: revision 1.6
 sys/arch/i386/stand/lib/pread.c: revision 1.8
 sys/arch/i386/stand/efiboot/efiboot.h: revision 1.10
 sys/arch/i386/stand/efiboot/bootia32/Makefile: revision 1.3
 sys/arch/i386/stand/lib/Makefile: revision 1.47
 sys/arch/i386/stand/efiboot/bootx64/Makefile: revision 1.2
 sys/arch/i386/stand/lib/multiboot.S: revision 1.3
 sys/arch/i386/stand/efiboot/bootx64/multiboot64.S: revision 1.1
 sys/arch/i386/stand/efiboot/efimemory.c: revision 1.9
 sys/arch/i386/stand/efiboot/boot.c: revision 1.16
 sys/arch/i386/include/Makefile: revision 1.50
 sys/arch/i386/stand/efiboot/Makefile.efiboot: revision 1.16
 share/man/man8/man8.x86/boot.8: revision 1.20
 sys/arch/i386/stand/boot/Makefile.boot: revision 1.73
 sys/arch/i386/stand/pxeboot/Makefile: revision 1.26
 sys/arch/i386/stand/lib/exec_multiboot1.c: revision 1.1
 sys/arch/i386/stand/netboot/Makefile.netboot: revision 1.11
 sys/arch/i386/stand/lib/exec_multiboot2.c: revision 1.1
 sys/arch/i386/stand/lib/biosdisk.h: revision 1.12
 sys/arch/i386/stand/lib/exec_multiboot2.c: revision 1.2
 sys/arch/i386/stand/dosboot/Makefile: revision 1.32
 
 Add multiboot 2 support to x86 bootloaders
 
 multiboot 2 is required to boot Xen on an EFI system.
 
 This also require a kernel patch for properly discovering
 the ACPI RSDP, which is available after 20190912, in
 src/sys/arch/x86/acpi/acpi_machdep.c 1.26-1.28
 
 There are a few missing bit in this multiboot 2 implementation
 (which are unused by Xen):
 - Header tags Address, Freambuffer, and Relocatable are ignored
 - Tags APM and Network are not provided
 - Tags ACPI old and ACP new are only provided for ACPI boot
 - Tag boot device does not provides the subpart (BSD disklabel partition)
 Notes:
 - multiboot2 is disabled in dosboot, otherwise the binary
 gets too big and build fails.
 - in src/sys/arch/i386/stand/efiboot, consinit() is renamed
 as efi_consinit() to avoid prototype conflicts in src/sys/sys/systm.h
 
 Remove debug define.
 
 It remained there unseen because it was misspelled!
 
 Remove obsoeolete BUGS note that UEFI bootloader does not support multiboot
 
 |