summaryrefslogtreecommitdiff
path: root/sys/arch/i386/stand
AgeCommit message (Expand)Author
2021-07-08sys/lib/libz isn't configured for lazy optimizations to save space becauseTheo de Raadt
2021-02-23remove some unused includesJonathan Gray
2020-12-09Use daddr_t and not daddr32_t in boot media.Kenneth R Westerback
2020-08-02additional files from libkern will be needed by clang10Theo de Raadt
2020-06-19fold the TSC value in fewer operations, same result; ok deraadt@Christian Weisgerber
2020-06-15Check rdrand for success and try up to ten times, as recommended by Intel.Christian Weisgerber
2020-06-14do not need assym.hTheo de Raadt
2020-06-14crank version numberTheo de Raadt
2020-06-14asm versions of mdrandom() no longer neededTheo de Raadt
2020-06-14rewrite mdrandom() in C. previously this XOR'd against rdrand if available,Theo de Raadt
2020-05-26increment version numbers, due to recent RB_GOODSEED and fchmod +T changesTheo de Raadt
2020-05-25Adjust mdrandom() to also return 0 for success, -1 for failureTheo de Raadt
2020-03-21Teach i386 boot98) and friends about ffs2. fdboot(8) is the exception:Otto Moerbeek
2020-03-09Recommit, now that we found out how to fix the BIOS related issues: goOtto Moerbeek
2020-03-07Revert previous, there are BIOS that do not like these changes.Otto Moerbeek
2020-02-28Adapt biosboot(8) so it can read boot(8) from an ffs2 filesystem.Otto Moerbeek
2019-12-23The boot loader allows to inspect memory with the hexdump command.Alexander Bluhm
2019-11-28Implement a hexdump command in the boot loader. This helps toAlexander Bluhm
2019-11-09move NT eflag clearing after register saving, otherwise %eax isTheo de Raadt
2019-10-29Use arc4 to bit-spread the 512-byte random buffer over the .openbsd.randomdataTheo de Raadt
2019-10-20Improve previouskn
2019-10-20Document "set db_console 0|1"kn
2019-08-04crank version, following fchmod changeTheo de Raadt
2019-08-03In the bootblocks, after discovering and opening /bsd.upgrade, fchmod -xTheo de Raadt
2019-06-08When loading intel microcode in the non-efi case, error if the file isJonathan Gray
2019-04-20libsa's memcpy() is actually memmove(). make a proper memmove(), and giveTheo de Raadt
2019-04-10crank versionsTheo de Raadt
2019-04-10change marks[] array to uint64_t, so the code can track full 64-bitTheo de Raadt
2019-04-08crank version; looks good deraadtFlorian Obser
2019-03-07Return early in ucode loading if cpuid is not available. Should fixJonathan Gray
2019-01-02markup boot prompt commands using Ic, not Nm; ok jmc@anton
2018-12-16Avoid using a too big bounce buffer by splitting up large reads. AllowsOtto Moerbeek
2018-12-10Ensure that we close the file descriptor after loading microcode.Joel Sing
2018-12-10Do not call free on a non-allocated pointer.Joel Sing
2018-10-16Add linker script to assis lld with building something usable that doesn'tMark Kettenis
2018-09-06fix whitespaceJonathan Gray
2018-08-23port the amd64 code for loading intel microcode on boot to i386Jonathan Gray
2018-08-10Bump boot loader versions for softraid passphrase handling change.Joel Sing
2018-08-10Retry on incorrect passphrase for softraid crypto boot.Joel Sing
2018-07-11Detect vmm(4) in the bootloader and automatically switch to the serialMike Larkin
2018-06-18"a = 1; b = 100; c = a * b; if (c == 0) c = 100;"Kenneth R Westerback
2017-12-18Add sizes for free() in libsa for amd64 and i386.Frederic Cambus
2017-10-17remove the remaining references to .depend files since nothing creates themChristian Weisgerber
2017-09-08If you use sys/param.h, you don't need sys/types.hTheo de Raadt
2017-07-25change -Os to -Oz all around the treeRobert Nagy
2017-07-21Check the hibernation signature for softraid disks and select valid bsdYASUOKA Masahiko
2017-06-22Only print the magic '&' letter on a disk if the hibernate partition isTheo de Raadt
2017-06-19As early as possible, create a link /bsd.booted to the /bsd kernel weTheo de Raadt
2017-06-01Sync with amd64 and allow building the i386 bootstrap with clang:Christian Weisgerber
2017-05-08Guard debug printf with NETIF_DEBUG ifdef like the other debug prints.Patrick Wildt