| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Uncomment rule to build bcopy.S, and use that as our bcopy(9) implementation. | 2007-10-13 | 1 | -5/+5 | |
| | | |||||
| * | Make this actually work by using the right register numbers. In the conversion | 2007-10-13 | 1 | -12/+12 | |
| | | | | | | from hppa the fact that t1-t4 actually number down from r22-r19 got somehow lost. | ||||
| * | Make function pointer calls look all alike; from Holger Mikolon. | 2007-09-10 | 1 | -2/+2 | |
| | | | | | No change in generated code. | ||||
| * | Fix the description of loadfile() semantics in comment (and kill "and | 2007-06-26 | 1 | -3/+4 | |
| | | | | | and" at the same time). | ||||
| * | Pull out the ELF loadfile pieces from the standalone libraries, so that | 2007-05-30 | 2 | -188/+280 | |
| | | | | | | | | | | | | | | both 32- and 64-bit versions can be created (previously only one or the other could be built for a given boot loader). Use this to allow the i386 and amd64 boot blocks to boot both ELF32 and ELF64 kernels (i.e. amd64 boot blocks can now load i386 kernels, and vice versa). Obviously the system must support LONG mode in order to successfully run the amd64 kernel once it is loaded. Advice and discussions from/with dale@ (going back three years). Much testing nick@ and todd@; thanks. | ||||
| * | "boundries" -> "boundaries" in various comments. Started by Diego Casati. | 2007-05-25 | 4 | -6/+6 | |
| | | |||||
| * | move hppa to __HAVE_CPUINFO | 2007-05-14 | 1 | -1/+5 | |
| | | | | | input from miod@, ok kettenis@ | ||||
| * | more locc() dies | 2007-05-04 | 5 | -112/+6 | |
| | | |||||
| * | locc() is dead, spotted by miod | 2007-05-04 | 2 | -48/+1 | |
| | | |||||
| * | move bcd tables to the only place that uses them (the unused mcd driver); | 2007-05-04 | 3 | -44/+3 | |
| | | | | | ok miod | ||||
| * | remove strcpy and strcat from the kernel; they are dead and unused code. | 2007-05-04 | 10 | -468/+3 | |
| | | | | | | | | (OpenBSD does not use strcat/strcpy in the kernel, if people do it in external modules they should update their code) ok deraadt@ | ||||
| * | some shorter code is better code | 2007-05-03 | 1 | -6/+4 | |
| | | |||||
| * | Re-initialise f_seekp to 0 on a successful read_inode() return. | 2007-03-16 | 1 | -1/+2 | |
| | | | | | | | | Fixes a problem that prevented the booting of a kernel that, to be found, needs more than one block per directory iin its path to be read. ok miod@, deraadt@ | ||||
| * | Revert 1.11 and load .shstrtab, as it is currently needed for /dev/ksyms | 2007-01-04 | 1 | -20/+13 | |
| | | | | | proper operation. | ||||
| * | do not load unneeded stringtab sections; avoids backward seeking; from netbsd; tested by miod@ and martin@; deraadt@ ok | 2006-12-30 | 1 | -13/+20 | |
| | | |||||
| * | make it compile w/ debug defined; miod@ ok | 2006-11-29 | 1 | -2/+2 | |
| | | |||||
| * | Move m88k memory copy and fill functions to libkern. The copy functions will | 2006-11-17 | 7 | -1/+576 | |
| | | | | | | | no longer share the same code, but will be instead be duplicated from the same source, so that bcopy() and memcpy() do not need to check for overlap, and memcpy() and memmove() are shorter. | ||||
| * | typo | 2006-11-09 | 1 | -1/+1 | |
| | | |||||
| * | use SEEK_SET; chl@tuxfamily.org | 2006-10-11 | 1 | -2/+2 | |
| | | |||||
| * | import supah pieces from netbsd | 2006-10-06 | 7 | -0/+997 | |
| | | |||||
| * | Import a slightly stripped down strtoll(3) from stdlib | 2006-09-18 | 2 | -1/+139 | |
| | | | | | | | | into libsa as it is needed for boot(8) > 4G support. With help from mickey@ i386 and amd64 tests by me, alpha test by mickey@ OK mickey@, miod@, deraadt@ | ||||
| * | Add a hand rolled 64bit hex printf that can be used outside of | 2006-09-18 | 1 | -4/+22 | |
| | | | | | | | | LIBSA_LONGLONG_PRINTF which requires 64bit math support. With help from mickey@ Tested on i386, amd64 and on alpha by mickey@ OK mickey@, miod@, deraadt@ | ||||
| * | adler32_combine() is not used by anything AND requires qdivrem so ifdef it out; millert@ deraadt@ ok | 2006-07-20 | 1 | -1/+3 | |
| | | |||||
| * | typos from alexey dobriyan; | 2006-02-06 | 1 | -2/+2 | |
| | | |||||
| * | Adapt things to use __type_t instead of _BSD_TYPE_T_ | 2006-01-06 | 1 | -2/+2 | |
| | | | | | | Add new sys/_types.h header Include machine/_types.h or sys/_types.h where applicable | ||||
| * | Switch to the C version of random() on m68k platforms. It is almost as fast | 2006-01-04 | 1 | -2/+2 | |
| | | | | | | | | | | | as the assembly version on 0[234]0, but *fifteen* times faster than it on 68060 systems, since it uses a form of muls.l which has to be emulated. And since we use random() for statclock variance, this means we were gratuitously doing an average of 100 emulation traps per second. ok deraadt@ millert@ | ||||
| * | I'm Positive these are Type-O. | 2005-08-01 | 2 | -4/+4 | |
| | | |||||
| * | not needed | 2005-07-20 | 1 | -2/+2 | |
| | | |||||
| * | add moddi3, needed by new libz | 2005-07-20 | 1 | -5/+2 | |
| | | |||||
| * | Update to zlib 1.2.3; OK deraadt@ | 2005-07-20 | 11 | -119/+560 | |
| | | |||||
| * | do not leak memory if read()ing section headers fails; from Andrey Matveev <evol@online.ptt.ru> | 2005-07-13 | 1 | -1/+2 | |
| | | |||||
| * | Fix bounds check for incomplete code sets so they cannot overflow the codes | 2005-07-06 | 1 | -2/+2 | |
| | | | | | array. From Mark Adler. | ||||
| * | -ansi considered harmful, even in comments | 2005-05-24 | 1 | -2/+2 | |
| | | |||||
| * | hppa64 bits | 2005-04-01 | 3 | -0/+1740 | |
| | | |||||
| * | Remove __P usage in sys that has crept back in. | 2005-02-13 | 1 | -2/+2 | |
| | | | | | 'Looks fine' millert@, ok miod@ | ||||
| * | zlib-1.21 here too | 2004-12-03 | 8 | -98/+136 | |
| | | |||||
| * | sync from libc | 2004-11-28 | 33 | -359/+217 | |
| | | |||||
| * | a tiny hppa64 bit | 2004-11-28 | 1 | -3/+3 | |
| | | |||||
| * | 64 bit safe over entire address range | 2004-10-08 | 5 | -69/+69 | |
| | | |||||
| * | make it compile with _STANDALONE, ok deraadt@ | 2004-09-23 | 1 | -3/+3 | |
| | | |||||
| * | Add code to let 32bit code *printf() {u,}int64_t values. | 2004-09-22 | 1 | -2/+61 | |
| | | | | | | | | Only enabled if libsa is compiled with the adequate define, so as not to grow bootblocks which do not need this feature. ok deraadt@ | ||||
| * | Keep providing a 32bit only version of bzero() #ifdef _STANDALONE, as | 2004-09-21 | 1 | -3/+20 | |
| | | | | | bootblocks are compiled as 32bit code. | ||||
| * | slightly 64 bit improved | 2004-09-18 | 1 | -8/+8 | |
| | | |||||
| * | Changes for 64 bit kernel. Some functions needis to be rewritten or | 2004-09-09 | 8 | -16/+16 | |
| | | | | | optimized to take advantage of full 64 bit width registers. | ||||
| * | Fix for DoS caused by incorrect error handling. From Dmitry V. Levin. | 2004-08-26 | 2 | -1/+7 | |
| | | | | | ok miller@ henning@ | ||||
| * | add missing copyright | 2004-08-13 | 8 | -9/+257 | |
| | | |||||
| * | mips64 now | 2004-08-11 | 11 | -0/+388 | |
| | | |||||
| * | move to mips64 | 2004-08-11 | 11 | -388/+0 | |
| | | |||||
| * | ansi and some missing protos | 2004-08-07 | 54 | -252/+177 | |
| | | |||||
| * | Remove some register keywords to make this compile on amd64. | 2004-07-22 | 1 | -7/+7 | |
| | | |||||
