summaryrefslogtreecommitdiff
path: root/sys/arch/amd64/stand
AgeCommit message (Collapse)Author
2006-10-31Mention that cdboot won't find boot.conf if you create the CDTom Cosgrove
with 8.3-style filenames. Issue raised by Mikolaj Kucharski, eth0 (at) o2.pl. Jointly written with, and ok, jmc@.
2006-10-30install boot.conf as a section 5 page, not section 8;Jason McIntyre
from mikolaj kucharski; ok mk deraadt krw
2006-10-12Bump versions to note behaviour change of no longer tryingKenneth R Westerback
to boot from NetBSD partitions. Requested by tom@.
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-09-26Zap D_REMOVABLE flag from disklabel. If you didn't already know thatKenneth R Westerback
floppies and cd's were removable, displaying that fact in disklabel output was unlikely to help. And the display in disklabel was the only use of D_REMOVABLE in the tree. ok marco@
2006-09-18boot(8) ``machine memory'' support for > 4G.Marco Pfatschbacher
Convert parser to strtoll(3) and use 64bit printf. With help from mickey@ i386 and amd64 tests by me, alpha test by mickey@ OK mickey@, miod@, deraadt@
2006-05-21some diskless pointers; ok deraadtJason McIntyre
2006-05-20push a BOOTARG_BOOTMAC (what PXE says is the MAC address of the interfaceTheo de Raadt
we are booting from) out towards the kernel; tested by reyk crank the version too
2006-05-15better wording for the "memory" section;Jason McIntyre
2006-05-13sensible english; ok jmc; from graham.gower@gmail.comTheo de Raadt
2006-02-14Fix botched format string specifiers. From adobriyan at gmail.com.Aaron Campbell
2006-01-02Correctly set the %di register on PXENV calls. This should helpTom Cosgrove
older PXE clients get a bit further. Prompted by Rolf Sommerhalder's comments on misc@. ok krw@ (thanks) "no objection" mbalmer@ "go for it" fgsch@ "fine" deraadt@
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-11-27ISOXXX/ISO-XXX -> ISO XXXJason McIntyre
2005-08-01Increment version so we can distinguish this in the future.Tobias Weingartner
2005-08-01do not include boot.c since cdboot.c is a copy of it; shrink 1k off the cdbootMichael Shalayeff
2005-07-30Need moddi3.c qdivrem.c for libzTodd C. Miller
2005-07-15kill trailing whitespace;Jason McIntyre
2005-07-15- add /bsd.rd to FILESJason McIntyre
- for amd64/i386 add /bsd.mp to FILES ok tom@
2005-05-31spelling corrections in comments;Jason McIntyre
from charlie root;
2005-05-28*slightly drunk*Tobias Weingartner
To all my "friends", and my lovely future wife... Thank you. Anyone who still wants to sign the shirt, it's on my bakc. Again, thank you. This commit was ok'd by drahn@, art@, niklas@, in spite of my condition.
2005-05-03The return value from getEBDAaddr() (info) is not used in bios_E820(),Tom Cosgrove
so nuke it. amd64 no longer needs biosprobe.c listed in SRCS. Trims 100 bytes from the boot blocks. Bump versions on boot, cdboot and pxeboot, as I'm getting cautious in my old age. ok weingart@
2005-05-03Convert the size of a memory chunk from bytes to megabytes beforeTom Cosgrove
casting to a 32-bit value, not after. Corrects the display of large memory chunks in the probing: line (mem[615K 3518M 0M a20=on] becomes mem[615K 3518M 12288M a20=on]). Bump version on boot, cdboot and pxeboot accordingly. "looks ok to me" weingart@
2005-04-30As on i386, ensure we save the %ebx register returned from the BIOSTom Cosgrove
call, not just %bx. Fixes problem introduced in gidt.S r1.3. Problem found, and fix tested, on i386 by Roy Morris rmorris (at) internetsecure (dot) com. Thanks. Bump version on boot, cdboot and pxeboot accordingly.
2005-04-29Make boot code use real mode with 64K segments instead of 1M segments,Tom Cosgrove
to match i386 boot blocks. Improves stability with some disk controller cards. Also expicitly state operand size on some moves. Bump version on boot, cdboot and pxeboot accordingly.
2005-03-13Only use bangpxe calling on PXE 2.1 and above. Makes no difference onTom Cosgrove
current-spec PXE systems, but should allow some older ones to get a bit further. Diff from krw@. Tested by krw@ on several PXE 2.1 cards. Many thanks. ok krw@; "get these changes into the amd64" deraadt@
2005-03-13KNFTom Cosgrove
2005-03-13On return from real mode, reload the GDT using a 16-bit pointer ratherTom Cosgrove
than a 32-bit value. Found by Tim Fletcher <tim (at) parrswood (dot) manchester (dot) sch (dot) uk> using Etherboot; thanks to Tim and the Etherboot developers who narrowed this down. Also bump the pxeboot version to 1.01. Tested by Okan Demirmen <okan (at) demirmen (dot) com> and krw@: thanks guys. "get these changes into the amd64" deraadt@
2005-02-18fix zlib's homepage; ok henning@, jmc@Robert Nagy
2004-12-04add /etc/dhcpd.conf to FILES;Jason McIntyre
2004-10-09size works now on cross-size .o filesMichael Shalayeff
2004-09-20addres -> addressMiod Vallat
2004-08-24Sync with i386 cdboot.8:Tom Cosgrove
Better description of the path to bsd.rd, to avoid having to update it every release. Also note that cdboot's ls command doesn't work on ISO-9660 filesystems.
2004-08-24Correctly document the order in which cdboot looks for kernels.Tom Cosgrove
2004-08-24Have cdboot look for /3.6/amd64/bsd.rd first.Tom Cosgrove
"go for it" deraadt@
2004-08-24Have cdbr look for cdboot at /3.6/amd64/cdboot as well as at /cdboot.Tom Cosgrove
"go for it" deraadt@
2004-08-21Hook cdbr and cdboot into the build.Tom Cosgrove
2004-08-21Enter cdboot, a CD-specific second-stage bootrap. Based on the i386Tom Cosgrove
cdboot that Toby and I put together at the hackathon. "go for it" deraadt@
2004-08-21Enter cdbr, an El Torito no-emulation CD boot sector that fitsTom Cosgrove
comfortably in a single CD sector of 2,048. Based on the OpenBSD/i386 code that Toby and I put together at the hackathon, which was in turn based on the FreeBSD equivalent by John Baldwin, jhb (at) FreeBSD (dot) org. "go for it" deraadt@
2004-08-18Calculate time_t correctly from (day, month, year): 1/1/70 is 0, not 1,Tom Cosgrove
as recently fixed on i386. requested by, and ok, deraadt@
2004-07-24Use '=' not '==' with test. While ksh accepts '==' as a synomym for '=',Todd C. Miller
it is not valid in sh.
2004-07-15"mib[4] is too much and mib[3] would be enough" (left over from whenTom Cosgrove
another sysctl() - which did require mib[4] - was removed). From Andrey Matveev - andrushock (at) vniigim (dot) ru - via mickey@. ok mickey@
2004-07-13errno changes, lib major version bumps, and general flag dayMarco S Hyman
To build you must: cd /usr/src && make obj && make includes cd lib/libc && make depend && make && NOMAN=1 sudo make install cd /usr/src && make build
2004-05-17Work arounda behaviour change in binutils-2.14, now -m<...> -nostdlibDale Rahn
removes /usr/libdata from the script search path. add it back with a -L
2004-05-05errx shall be used hereMichael Shalayeff
2004-04-03add pxeboot references to FILES and SEE ALSO;Jason McIntyre
ok deraadt@
2004-03-22Fix dates on my copyrights.Tom Cosgrove
Noticed my miod@, thanks. ok deraadt@.
2004-03-21Grammar fix from jmc@Tom Cosgrove
2004-03-21Enter pxeboot on amd64. Initially intended to support network installsTom Cosgrove
using bsd.rd over TFTP. ok deraadt@
2004-03-21Bring in sync with i386 and enable interrupts before halt when we errorTom Cosgrove
out. Allows use of Ctl-Alt-Del to reboot in case of failure. ok weingart@, deraadt@