summaryrefslogtreecommitdiff
path: root/sys/arch/macppc/stand
AgeCommit message (Collapse)Author
2012-12-05Remove excessive sys/cdefs.h inclusionTheo de Raadt
ok guenther millert kettenis
2012-10-14The msdos1mb file has not been used since we got newfs_msdos.Theo de Raadt
ok krw
2012-09-02Allow bootblocks to build in PIE; joint effort with pascalTheo de Raadt
boot.mac might still have a problem since it did change size... looking for a testing report.
2012-08-21Add NOPIE= bits for sys/arch/*/stand to ensure that bootblocks will always bePascal Stumpf
built with -fno-pie. This gets the hairiest part of PIE out of the way ... ok deraadt@
2012-06-20move to 5.2-betaTheo de Raadt
2012-01-11crank to 5.1-betaTheo de Raadt
2011-11-19Remove unused function forgotten during the switch to the interactiveMartin Pieuchot
bootloader and make use of strrchr() in hfs_open because we have it. ok krw@
2011-11-19Rewrite the parsing of arguments given to the ofwboot and restore theMartin Pieuchot
possibility to boot a kernel from an HFS partition when there is no OpenBSD partition on the disk. Problem reported by cbsoleil at gmail.com and analysed by otto@. Tested by otto@, krw@ and drahn@ ok krw@, drahn@
2011-07-18take us to 5.0-betaTheo de Raadt
2011-07-08Unbreak macppc bootloader due to libz changes.Dale Rahn
2011-04-10Include <libkern.h> to get proper strrchr() prototype.Miod Vallat
2011-03-13Change daddr_t to daddr32_t. The bootblocks on our architectures onlyTheo de Raadt
do 32-bit block spanning. If later on we get some that can/should do 64-bit, that can be done now using daddr64_t (but of course, we are taking this step to finalize the daddr_t 64-bit conversion). ok miod krw
2011-01-13move to 4.9-currentTheo de Raadt
2010-07-24move to 4.8-betaTheo de Raadt
2010-05-31this dir, itself, should decide if it is entered deeperTheo de Raadt
2010-05-14avoid builtins completely, so avoid possible issues with gcc4.Dale Rahn
2010-05-14Be friendly with gcc4.Dale Rahn
2010-01-264.7-BETA (also, lo-carb and ozone layer friendly)Miod Vallat
2009-06-204.6-BETAMiod Vallat
2009-02-08Move to 4.5-BETAMiod Vallat
2008-07-02move to 4.4-betaTheo de Raadt
2008-06-26First pass at removing clauses 3 and 4 from NetBSD licenses.Ray Lai
Not sure what's more surprising: how long it took for NetBSD to catch up to the rest of the BSDs (including UCB), or the amount of code that NetBSD has claimed for itself without attributing to the actual authors. OK deraadt@
2008-06-13Add some missing $OpenBSD$ tags.Kenneth R Westerback
ok drahn@ gwk@
2008-05-25Don't forget to actually return a value in ttyname(), and fix a bunch ofMiod Vallat
warnings while there.
2008-04-19Change ELF loader to use the LMA as the load address for theTobias Weingartner
various segments. Hopefully this will help remove various hacks in the boot loader in the future. This should have no effect on most architectures (as we tend to have LMA == VMA). ok drahn@, soft ok's various others.
2008-02-204.3-betaMiod Vallat
2008-01-23Cleanup cn_pri. Change constants to more meaningful names, rather thanJoel Sing
the hp300 related ones currently in use. CN_NORMAL becomes CN_LOWPRI, CN_INTERNAL becomes CN_MIDPRI and CN_REMOTE becomes CN_HIGHPRI. ok miod@
2007-11-27typos; ok jmc@Martynas Venckus
sys/dev/pci/pciide.c from naddy@
2007-11-26few more dribbles of LIBKERN cleanupTheo de Raadt
2007-11-25libkern, begone. Move to a new mechanism where config(8)'s "file"Theo de Raadt
directive can select between MI and MD versions of these files. At the same time, adjust the boot programs to pick exactly what they need, instead of the 7 or 8 mechanisms previously used. There will be some fallout from this, but testing it all by myself is a ridiculously slow process; it will be finished in-tree. Various developers were very nice and avoided making fun of me when I was gibbering in the corner..
2007-07-25crank to 4.2-betaTheo de Raadt
2007-06-24When bootfile was made global so that macppc could modify it, itTom Cosgrove
clashed with a global variable already used by the bootblocks. Therefore rename bootfile here to kernelfile. ok drahn@
2007-06-23Enable workaround for decrementer exception problem.Dale Rahn
2007-06-14Remove some debug prints which I let slip in.Dale Rahn
2007-06-14boot code does not do daddr64_t yet. 'unchange that' deraadt@Dale Rahn
2007-06-13Switch macppc to the interactive bootloader in stand/boot.Dale Rahn
Much more useable on serial console systems.
2007-06-06now that all partition size/offsets are potentially 64-bit, change theTheo de Raadt
type of all variables to daddr64_t. this includes the APIs for XXsize() and XXdump(), all range checks inside bio drivers, internal variables for disklabel handling, and even uvm's swap offsets. re-read numerous times by otto, miod, krw, thib to look for errors
2007-06-02oops, why did i delete this. bizzareTheo de Raadt
2007-06-02stand/ofdev.hTheo de Raadt
2007-05-28avoid bypassing sys/queue.h in many places in the kernel.Pierre-Yves Ritschard
many assumptions were made about the way the various list types are implemented. lots of suggestions and help from otto and miod. ok otto@
2007-02-124.1-betaHenning Brauer
2006-12-05Import fixcoff from NetBSD and make some changes to boot.mac Makefile andGordon Willem Klok
ofwboot including loosing some meanigless defines and repurposing XCOFF_GLUE to my own ends. These changes make it possible to boot the OpenBSD kernel on at least the Power Macintosh 9500 and 9600. No binary change in stripped ofwboot. ok drahn@, martin@
2006-10-12Don't try to boot from a NetBSD MBR partition when no OpenBSD MBRKenneth R Westerback
partition is found. Change error message to 'no OpenBSD partition'.
2006-10-10Typo in a comment. ok kettenis.Marc Balmer
2006-07-26crank to 4.0-betaTheo de Raadt
2006-02-28Announce compatibility with MacRISC4, to be able to boot automatically onMark Kettenis
G5 systems. ok drahn@, deraadt@
2006-01-19crank to 3.8-betaTheo de Raadt
2005-12-30Now that errno.h and sys/errno.h are separate header files there is noTodd C. Miller
need to use the -Derrno=errno workaround added when __errno() was introduced. OK deraadt@
2005-12-24Claim a bit more memory such that we can load bsd.rd.Mark Kettenis
tested by many; ok deraadt@
2005-10-09Try to recover part of the reserved space from the OF_claim above.Dale Rahn