| Commit message (Collapse) | Author | Age | Files | Lines | ||
|---|---|---|---|---|---|---|
| ... | ||||||
| * | 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 | ||
| | | ||||||
| * | Fix buffer writing in cd9660 code, written by Tom and myself, examined by toby | 2004-07-09 | 1 | -14/+19 | ||
| | | | | | and tested in-tree for a while. | |||||
| * | Change of variable name from read to nread, to reduce difference | 2004-06-22 | 1 | -18/+18 | ||
| | | | | | | | from NetBSD version. ok weingart@ | |||||
| * | add bounded attribute to some functions. anil tested and ok'ed | 2004-06-21 | 2 | -6/+11 | ||
| | | ||||||
| * | Replace RSA-derived md5 code with code derived from Colin Plumb's PD version. | 2004-05-07 | 2 | -368/+2 | ||
| | | | | | | | This moves md5.c out of libkern and into sys/crypto where it belongs (as requested by markus@). Note that md5.c is still mandatory (dev/rnd.c uses it). Verified with IPsec + hmac-md5 and tcp md5sig. OK henning@ and hshoexer@ | |||||
| * | add back strchr/strrchr; from dhartmei | 2004-05-06 | 3 | -3/+72 | ||
| | | ||||||
| * | remove terms 3 & 4 for drochner@NetBSD.org; as seen on netbsd lists | 2004-04-02 | 3 | -21/+3 | ||
| | | ||||||
| * | It turns out that the so-called fast ffs(3) routines were wrong, as soon as | 2004-04-01 | 2 | -18/+2 | ||
| | | | | | | | | | | | | | more than one bit is set, as the ff1 instruction counts from the highest order. However, gcc/m88k with optimization enabled would use a correct, short sequence based upon ff1 and tweaks, to achieve the intended result, hence i did not catch this flaw initially. So revert to the C implementation - it is correct, still decently fast, and will only be used when compiling at -O0. | |||||
| * | Do not check for writing to address zero on vax, since this is where | 2004-03-24 | 1 | -2/+5 | ||
| | | | | | | | we want to be able to load a .gz kernel. ok deraadt@ | |||||
| * | Enter pxeboot, derived from the NetBSD implementation. Initially | 2004-03-19 | 2 | -0/+554 | ||
| | | | | | | | | | intended to support network installs using bsd.rd over TFTP. Thanks to the many who tested, including Diana Eichert. ok deraadt@ | |||||
| * | change amd64's MACHINE_ARCH from x86_64 to amd64. There are many many | 2004-02-27 | 23 | -858/+0 | ||
| | | | | | | | reasons for this, quite a few of them technical, and not all of them in response to Intel's broken ia32e crud. The gcc toolchain stays at x86_64 for now. | |||||
| * | Allow /boot to load read-only data segments in ELF kernels. | 2004-02-10 | 1 | -3/+3 | ||
| | | | | | | | Thanks to miod@ for testing on many archs. ok deraadt@. | |||||
| * | no quad stuff on amd64 either; from art@ | 2004-02-03 | 1 | -2/+2 | ||
| | | ||||||
| * | tag... | 2004-02-01 | 9 | -0/+9 | ||
| | | ||||||
| * | Kernel library bits for arm, from NetBSD. | 2004-02-01 | 9 | -0/+1266 | ||
| | | ||||||
| * | an amd64 arch support. | 2004-01-28 | 46 | -0/+1716 | ||
| | | | | | | | | hacked by art@ from netbsd sources and then later debugged by me into the shape where it can host itself. no bootloader yet as needs redoing from the recent advanced i386 sources (anyone? ;) | |||||
| * | use C comments, works better | 2004-01-22 | 1 | -3/+3 | ||
| | | ||||||
| * | A faster ffs() routine based upon the ff1 assembly instruction. | 2004-01-21 | 2 | -3/+18 | ||
| | | ||||||
| * | put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros | 2004-01-03 | 4 | -8/+8 | ||
| | | | | | | | | to built-ins, so eventually we will have one version of these files. Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes. okay millert@, drahn@, miod@. | |||||
| * | Move -DDYNAMIC_CRC_TABLE into the main libz Makefile | 2003-12-18 | 1 | -2/+4 | ||
| | | ||||||
| * | #include <lib/libsa/stand.h> instead of just <stand.h> so we can avoid | 2003-12-17 | 1 | -2/+2 | ||
| | | | | | | adding an extra -I for each libz Makefile. This is how the old kernel libz was. | |||||
| * | No need to build infback.c here after all. | 2003-12-17 | 1 | -2/+2 | ||
| | | ||||||
| * | _ZLIB_PRIVATE is not used anywhere | 2003-12-17 | 1 | -2/+2 | ||
| | | ||||||
| * | Add #ifdef SMALL and #ifdef SLOW and include sys/unistd.h instead of unistd.h | 2003-12-16 | 4 | -5/+109 | ||
| | | ||||||
| * | Update to zlib 1.2.1 | 2003-12-16 | 21 | -2466/+4032 | ||
| | | ||||||
| * | shrink error strings a lot; ok millert | 2003-12-16 | 6 | -9/+91 | ||
| | | ||||||
| * | KNF, ok deraadt/henning | 2003-12-02 | 1 | -257/+241 | ||
| | | ||||||
| * | make it use system bcopy/bzero (speeds up the vax about twice); from pr3549 | 2003-11-24 | 1 | -1/+2 | ||
| | | ||||||
| * | rename struct dinode to ufs1_dinode. clears the namespace and makes | 2003-08-25 | 1 | -4/+4 | ||
| | | | | | | way for some future work. no function changes yet. help testing otto@ and markus@ | |||||
