Home | History | Annotate | only in /src/sys/arch/hpc/stand/include/machine
History log of /src/sys/arch/hpc/stand/include/machine
RevisionDateAuthorComments
 1.2 17-Jul-2011  joerg 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.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file ansi.h was added on branch thorpej_scsipi on 2001-02-11 19:10:14 +0000
 1.2 01-Feb-2002  uch bootinfo.h, config_hook.h, platid.h are moved to hpc/include
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.6; 1.1.10;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.10.1 28-Feb-2002  nathanw Catch up to -current.
 1.1.6.1 11-Feb-2002  jdolecek Sync w/ -current.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file bootinfo.h was added on branch thorpej_scsipi on 2001-02-11 19:10:15 +0000
 1.3 11-Dec-2005  christos merge ktrace-lwp.
 1.2 06-Aug-2004  uch clean up whitespace.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.26;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.26.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.26.2 18-Sep-2004  skrll Sync with HEAD.
 1.1.26.1 12-Aug-2004  skrll Sync with HEAD.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file bswap.h was added on branch thorpej_scsipi on 2001-02-11 19:10:15 +0000
 1.5 11-Dec-2005  christos merge ktrace-lwp.
 1.4 06-Aug-2004  uch clean up whitespace.
 1.3 26-Apr-2004  uwe <machine/cdefs.h> is included by <sys/cdefs.h>, so there's no point
in including <sys/cdefs.h> from <machine/cdefs.h> again.
 1.2 27-Sep-2001  uch branches: 1.2.4; 1.2.20;
ANSIfy, KNF.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.4; 1.1.6;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.6.1 10-Jan-2002  thorpej Sync kqueue branch with -current.
 1.1.4.1 01-Oct-2001  fvdl Catch up with -current.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file cdefs.h was added on branch thorpej_scsipi on 2001-02-11 19:10:16 +0000
 1.2.20.4 21-Sep-2004  skrll Fix the sync with head I botched.
 1.2.20.3 18-Sep-2004  skrll Sync with HEAD.
 1.2.20.2 12-Aug-2004  skrll Sync with HEAD.
 1.2.20.1 03-Aug-2004  skrll Sync with HEAD
 1.2.4.2 27-Sep-2001  uch ANSIfy, KNF.
 1.2.4.1 27-Sep-2001  uch file cdefs.h was added on branch nathanw_sa on 2001-09-27 16:31:26 +0000
 1.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file coff_machdep.h was added on branch thorpej_scsipi on 2001-02-11 19:10:16 +0000
 1.5 11-Dec-2005  christos merge ktrace-lwp.
 1.4 06-Aug-2004  uch clean up whitespace.
 1.3 26-Apr-2004  uwe Make sure that overzealous definition of __packed in <sys/cdefs.h>
doesn't break compilation with Microsoft compilers. Push/pop #pragma pack
around <sys/bootblock.h>.
 1.2 08-Oct-2003  lukem Overhaul MBR handling (part 1):

<sys/bootblock.h>:
* Added definitions for the Master Boot Record (MBR) used by
a variety of systems (primarily i386), including the format
of the BIOS Parameter Block (BPB).
This information was cribbed from a variety of sources
including <sys/disklabel_mbr.h> which this is a superset of.

As part of this, some data structure elements and #defines
were renamed to be more "namespace friendly" and consistent
with other bootblocks and MBR documentation.
Update all uses of the old names to the new names.

<sys/disklabel_mbr.h>:
* Deprecated in favor of <sys/bootblock.h> (the latter is more
"host tool" friendly).

amd64 & i386:
* Renamed /usr/mdec/bootxx_dosfs to /usr/mdec/bootxx_msdos, to
be consistent with the naming convention of the msdosfs tools.

* Removed /usr/mdec/bootxx_ufs, as it's equivalent to bootxx_ffsv1
and it's confusing to have two functionally equivalent bootblocks,
especially given that "ufs" has multiple meanings (it could be
a synonym for "ffs", or the group of ffs/lfs/ext2fs file systems).

* Rework pbr.S (the first sector of bootxx_*):
+ Ensure that BPB (bytes 11..89) and the partition table
(bytes 446..509) do not contain code.
+ Add support for booting from FAT partitions if BOOT_FROM_FAT
is defined. (Only set for bootxx_msdos).
+ Remove "dummy" partition 3; if people want to installboot(8)
these to the start of the disk they can use fdisk(8) to
create a real MBR partition table...
+ Compile with TERSE_ERROR so it fits because of the above.
Whilst this is less user friendly, I feel it's important
to have a valid partition table and BPB in the MBR/PBR.

* Renamed /usr/mdec/biosboot to /usr/mdec/boot, to be consistent
with other platforms.

* Enable SUPPORT_DOSFS in /usr/mdec/boot (stage2), so that
we can boot off FAT partitions.

* Crank version of /usr/mdec/boot to 3.1, and fix some of the other
entries in the version file.

installboot(8) (i386):
* Read the existing MBR of the filesystem and retain the BIOS
Parameter Block (BPB) in bytes 11..89 and the MBR partition
table in bytes 446..509. (Previously installboot(8) would
trash those two sections of the MBR.)

mbrlabel(8):
* Use sys/lib/libkern/xlat_mbr_fstype.c instead of homegrown code
to map the MBR partition type to the NetBSD disklabel type.


Test built "make release" for i386, and new bootblocks verified to work
(even off FAT!).
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.26;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.26.4 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.26.3 18-Sep-2004  skrll Sync with HEAD.
 1.1.26.2 12-Aug-2004  skrll Sync with HEAD.
 1.1.26.1 03-Aug-2004  skrll Sync with HEAD
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file disklabel.h was added on branch thorpej_scsipi on 2001-02-11 19:10:16 +0000
 1.3 11-Dec-2005  christos merge ktrace-lwp.
 1.2 06-Aug-2004  uch clean up whitespace.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.26;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.26.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.26.2 18-Sep-2004  skrll Sync with HEAD.
 1.1.26.1 12-Aug-2004  skrll Sync with HEAD.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file elf_machdep.h was added on branch thorpej_scsipi on 2001-02-11 19:10:17 +0000
 1.11 16-Nov-2006  uwe Sync with sys/endian.h: s/const/__const__/ in __attribute__
 1.10 16-Nov-2006  uwe Bring back __unused (sed cannot tell if it's in an argument list or not).
 1.9 16-Nov-2006  christos __unused removal on arguments; approved by core.
 1.8 05-Mar-2006  uwe branches: 1.8.2; 1.8.14; 1.8.16;
Sync with <sys/endian.h>.
Ifdef out ntohl &co defined for little-endian via bswap* - use system versions.
 1.7 14-Jan-2006  uwe branches: 1.7.2; 1.7.4;
Kill trailing whitespace in local comment.
 1.6 14-Jan-2006  uwe Sync with <sys/endian.h>.
 1.5 24-Dec-2005  perry branches: 1.5.2;
__asm__ -> __asm
__const__ -> const
__inline__ -> inline
__volatile__ -> volatile
 1.4 24-Dec-2005  perry Remove leading __ from __(const|inline|signed|volatile) -- it is obsolete.
 1.3 11-Dec-2005  christos merge ktrace-lwp.
 1.2 11-May-2005  uwe branches: 1.2.2;
Our <sys/endian.h> is no longer compilable with eVC3 and probably
other old WinCE compilers because they don't grok ULL constant suffix.
Instead of polluting sys/endian.h with WinCE compatibility ugliness,
pull a copy here, so that we can hack it privately.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.26;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.26.1 10-Nov-2005  skrll Sync with HEAD. Here we go again...
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file endian.h was added on branch thorpej_scsipi on 2001-02-11 19:10:17 +0000
 1.2.2.2 30-Dec-2006  yamt sync with head.
 1.2.2.1 21-Jun-2006  yamt sync with head.
 1.5.2.1 15-Jan-2006  yamt sync with head.
 1.7.4.1 22-Apr-2006  simonb Sync with head.
 1.7.2.1 09-Sep-2006  rpaulo sync with head
 1.8.16.1 10-Dec-2006  yamt sync with head.
 1.8.14.1 18-Nov-2006  ad Sync with head.
 1.8.2.2 05-Mar-2006  uwe Sync with <sys/endian.h>.
Ifdef out ntohl &co defined for little-endian via bswap* - use system versions.
 1.8.2.1 05-Mar-2006  uwe file endian.h was added on branch yamt-pdpolicy on 2006-03-05 03:14:54 +0000
 1.3 11-Dec-2005  christos merge ktrace-lwp.
 1.2 06-Aug-2004  uch clean up whitespace.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.26;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.26.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.26.2 18-Sep-2004  skrll Sync with HEAD.
 1.1.26.1 12-Aug-2004  skrll Sync with HEAD.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file endian_machdep.h was added on branch thorpej_scsipi on 2001-02-11 19:10:17 +0000
 1.1 30-Apr-2001  uch branches: 1.1.2; 1.1.10;
add wrapper header for integer types.
 1.1.10.2 30-Apr-2001  uch add wrapper header for integer types.
 1.1.10.1 30-Apr-2001  uch file int_const.h was added on branch nathanw_sa on 2001-04-30 13:41:33 +0000
 1.1.2.1 21-Jun-2001  nathanw Catch up to -current.
 1.1 30-Apr-2001  uch branches: 1.1.2; 1.1.10;
add wrapper header for integer types.
 1.1.10.2 30-Apr-2001  uch add wrapper header for integer types.
 1.1.10.1 30-Apr-2001  uch file int_fmtio.h was added on branch nathanw_sa on 2001-04-30 13:41:33 +0000
 1.1.2.1 21-Jun-2001  nathanw Catch up to -current.
 1.1 30-Apr-2001  uch branches: 1.1.2; 1.1.10;
add wrapper header for integer types.
 1.1.10.2 30-Apr-2001  uch add wrapper header for integer types.
 1.1.10.1 30-Apr-2001  uch file int_limits.h was added on branch nathanw_sa on 2001-04-30 13:41:34 +0000
 1.1.2.1 21-Jun-2001  nathanw Catch up to -current.
 1.1 30-Apr-2001  uch branches: 1.1.2; 1.1.10;
add wrapper header for integer types.
 1.1.10.2 30-Apr-2001  uch add wrapper header for integer types.
 1.1.10.1 30-Apr-2001  uch file int_mwgwtypes.h was added on branch nathanw_sa on 2001-04-30 13:41:34 +0000
 1.1.2.1 21-Jun-2001  nathanw Catch up to -current.
 1.2 30-Apr-2001  uch branches: 1.2.8;
add wrapper header for integer types.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.4;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.4.1 21-Jun-2001  nathanw Catch up to -current.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file int_types.h was added on branch thorpej_scsipi on 2001-02-11 19:10:18 +0000
 1.2.8.2 30-Apr-2001  uch add wrapper header for integer types.
 1.2.8.1 30-Apr-2001  uch file int_types.h was added on branch nathanw_sa on 2001-04-30 13:41:34 +0000
 1.2 07-Jun-2010  tnozaki 1. MB_LEN_MAX switch MD to MI.
2. unfortunately hppa's MB_LEN_MAX is defined incorrectly 6 instead of 32
so we have to add more setlocale(3) __RENAME func, __setlocale50.
3. move setlocale1.c and setlocale32.c to lib/libc/compat/locale/*
prepareing for next libc major crunk.
4. bump libc minor version.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.132; 1.1.152; 1.1.154;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.154.1 03-Jul-2010  rmind sync with head
 1.1.152.1 17-Aug-2010  uebayasi Sync with HEAD.
 1.1.132.1 11-Aug-2010  yamt sync with head.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file limits.h was added on branch thorpej_scsipi on 2001-02-11 19:10:18 +0000
 1.2 11-Dec-2005  christos merge ktrace-lwp.
 1.1 17-Dec-2003  uwe branches: 1.1.4;
Provide dummy machine/mcontext.h.
 1.1.4.4 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.4.3 18-Sep-2004  skrll Sync with HEAD.
 1.1.4.2 03-Aug-2004  skrll Sync with HEAD
 1.1.4.1 17-Dec-2003  skrll file mcontext.h was added on branch ktrace-lwp on 2004-08-03 10:34:59 +0000
 1.4 11-Dec-2005  christos merge ktrace-lwp.
 1.3 06-Aug-2004  uch clean up whitespace.
 1.2 16-Dec-2003  uwe Add btodb() define.
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.26;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.26.4 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.26.3 18-Sep-2004  skrll Sync with HEAD.
 1.1.26.2 12-Aug-2004  skrll Sync with HEAD.
 1.1.26.1 03-Aug-2004  skrll Sync with HEAD
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file param.h was added on branch thorpej_scsipi on 2001-02-11 19:10:19 +0000
 1.4 11-Dec-2005  christos merge ktrace-lwp.
 1.3 06-Aug-2004  uch clean up whitespace.
 1.2 01-Feb-2002  uch branches: 1.2.16;
bootinfo.h, config_hook.h, platid.h are moved to hpc/include
 1.1 09-Feb-2001  uch branches: 1.1.2; 1.1.6; 1.1.10;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.10.1 28-Feb-2002  nathanw Catch up to -current.
 1.1.6.1 11-Feb-2002  jdolecek Sync w/ -current.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file platid.h was added on branch thorpej_scsipi on 2001-02-11 19:10:19 +0000
 1.2.16.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.2.16.2 18-Sep-2004  skrll Sync with HEAD.
 1.2.16.1 12-Aug-2004  skrll Sync with HEAD.
 1.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file platid_generated.h was added on branch thorpej_scsipi on 2001-02-11 19:10:19 +0000
 1.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file platid_mask.h was added on branch thorpej_scsipi on 2001-02-11 19:10:20 +0000
 1.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file signal.h was added on branch thorpej_scsipi on 2001-02-11 19:10:20 +0000
 1.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file stdarg.h was added on branch thorpej_scsipi on 2001-02-11 19:10:20 +0000
 1.7 05-Mar-2006  uwe branches: 1.7.2;
off_t should be a signed type.
 1.6 14-Jan-2006  uwe branches: 1.6.2; 1.6.4;
Provide uintN_t typedefs. Provide u_intN_t as compatibility typedefs.
Use uintN_t to define other types.
 1.5 11-Dec-2005  christos branches: 1.5.2;
merge ktrace-lwp.
 1.4 06-Aug-2004  uch branches: 1.4.12;
clean up whitespace.
 1.3 30-Apr-2001  uch branches: 1.3.8; 1.3.24;
add wrapper header for integer types.
 1.2 04-Mar-2001  uch branches: 1.2.2;
make this compile on WCE200 SDK
 1.1 09-Feb-2001  uch branches: 1.1.2;
bootloader for SH3, SA-1100, TX39, VR41 based Windows CE(2.00 or later)
 1.1.2.3 12-Mar-2001  bouyer Sync with HEAD.
 1.1.2.2 11-Feb-2001  bouyer Sync with HEAD.
 1.1.2.1 09-Feb-2001  bouyer file types.h was added on branch thorpej_scsipi on 2001-02-11 19:10:21 +0000
 1.2.2.1 21-Jun-2001  nathanw Catch up to -current.
 1.3.24.3 21-Sep-2004  skrll Fix the sync with head I botched.
 1.3.24.2 18-Sep-2004  skrll Sync with HEAD.
 1.3.24.1 12-Aug-2004  skrll Sync with HEAD.
 1.3.8.2 30-Apr-2001  uch add wrapper header for integer types.
 1.3.8.1 30-Apr-2001  uch file types.h was added on branch nathanw_sa on 2001-04-30 13:41:34 +0000
 1.4.12.1 21-Jun-2006  yamt sync with head.
 1.5.2.1 15-Jan-2006  yamt sync with head.
 1.6.4.1 22-Apr-2006  simonb Sync with head.
 1.6.2.1 09-Sep-2006  rpaulo sync with head
 1.7.2.2 05-Mar-2006  uwe off_t should be a signed type.
 1.7.2.1 05-Mar-2006  uwe file types.h was added on branch yamt-pdpolicy on 2006-03-05 03:22:21 +0000
 1.3 28-Apr-2008  martin Remove clause 3 and 4 from TNF licenses
 1.2 11-Dec-2005  christos branches: 1.2.74; 1.2.76; 1.2.78;
merge ktrace-lwp.
 1.1 10-Jun-2004  uch branches: 1.1.2;
make hpcboot compile again.
 1.1.2.4 21-Sep-2004  skrll Fix the sync with head I botched.
 1.1.2.3 18-Sep-2004  skrll Sync with HEAD.
 1.1.2.2 03-Aug-2004  skrll Sync with HEAD
 1.1.2.1 10-Jun-2004  skrll file wchar_limits.h was added on branch ktrace-lwp on 2004-08-03 10:34:59 +0000
 1.2.78.1 16-May-2008  yamt sync with head.
 1.2.76.1 18-May-2008  yamt sync with head.
 1.2.74.1 02-Jun-2008  mjf Sync with HEAD.

RSS XML Feed