aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Add missing '\n'; remove redundant 'h' case in getopt switch.Robert Nordier1998-11-051-2/+1
| | | | Notes: svn path=/head/; revision=40926
* Add -c option to usage string.Robert Nordier1998-11-051-1/+1
| | | | | | | | PR: 8568 Submitted by: Ryan Younce <ryany@pobox.com> Notes: svn path=/head/; revision=40925
* Explicitly invoke perl to run the softwords.pl script in case theMike Smith1998-11-051-2/+2
| | | | | | | | script is not executable. Submitted by: Don Lewis <Don.Lewis@tsc.tdk.com> Notes: svn path=/head/; revision=40924
* Build linux_genassym static, this should help aout-to-elf buildsPeter Wemm1998-11-051-2/+2
| | | | Notes: svn path=/head/; revision=40923
* sys/modules/linux has a build-tools targetPeter Wemm1998-11-051-1/+5
| | | | Notes: svn path=/head/; revision=40922
* Do not overwrite the lkm versions of the install scripts for now. linuxPeter Wemm1998-11-053-12/+12
| | | | | | | works but ibcs2 has a load failure and joy doesn't look like it'll work. Notes: svn path=/head/; revision=40921
* Update to use kldload, no temporary files!Peter Wemm1998-11-056-38/+24
| | | | Notes: svn path=/head/; revision=40920
* Do not add ${KMOD} to the CLEANFILES list. We want ${PROG} which is eitherPeter Wemm1998-11-052-4/+4
| | | | | | | | ${KMOD}.o or ${KMOD}.ko. Otherwise we can delete the source shell script for linux, joy and ibcs2. Notes: svn path=/head/; revision=40919
* For large filesystems you can run past default resource limits causingMatt Jacob1998-11-053-3/+21
| | | | | | | | | | fsck to exit unhappily. Fix this by doing a getrlimit/setrlimit for RLIMIT_DATA. I made the same fix in NetBSD. Reviewed by: dg@root.com Notes: svn path=/head/; revision=40918
* Add few declaration for the iicbus/smbus system.Nicolas Souchu1998-11-042-2/+28
| | | | Notes: svn path=/head/; revision=40917
* Add 0s to declarations.Nicolas Souchu1998-11-041-5/+5
| | | | | | | Proposed by: Dag-Erling Coid Notes: svn path=/head/; revision=40916
* iicbus probe and attach deferred until root_bus_configure() call.Nicolas Souchu1998-11-042-10/+2
| | | | Notes: svn path=/head/; revision=40915
* Properly reset parent to get interface addr.Nicolas Souchu1998-11-041-3/+3
| | | | Notes: svn path=/head/; revision=40914
* Fix sbcheck() to check all packets on socket buffer.Bill Fenner1998-11-042-18/+22
| | | | | | | | | | | | | Also fix data types and printf formats while I'm here. PR: misc/8494 Panic instead of looping forever in sbflush(). If sb_mbcnt counts more mbufs than sb_cc counts bytes, the original code can turn into an infinite loop of removing 0 bytes from the socket buffer until it's empty. Notes: svn path=/head/; revision=40913
* Generalize the quirk entry that disables multi-lun probing for Sony CDROMKenneth D. Merry1998-11-041-4/+3
| | | | | | | | | | drives. It seems that quite a few (possibly all?) of their drives respond to inquiries on multiple luns. Hopefully we can detect problems like this in the probe phase at some point. For now, this is a pretty functional solution. Notes: svn path=/head/; revision=40912
* Add example for the internal "ident server".Poul-Henning Kamp1998-11-041-1/+5
| | | | Notes: svn path=/head/; revision=40911
* Add an "internal" driver for the "ident" protocol (tcp/113).Poul-Henning Kamp1998-11-041-1/+31
| | | | | | | | | | | It will return "ERROR:HIDDEN-USER" for all requests. To use it add: ident stream tcp nowait root internal to inetd.conf Notes: svn path=/head/; revision=40910
* Fix make world breakage: "$MACHINE_ARCH" -> "${MACHINE_ARCH}".John Polstra1998-11-041-2/+2
| | | | Notes: svn path=/head/; revision=40909
* Don't try to build i386-centric modules on non-i386 systems.Mike Smith1998-11-041-4/+8
| | | | Notes: svn path=/head/; revision=40908
* Make a.out kernels kld compatable by default...Peter Wemm1998-11-043-30/+6
| | | | Notes: svn path=/head/; revision=40907
* The handle for the kernel is common. With this fix, ELF kernels can loadPeter Wemm1998-11-045-34/+23
| | | | | | | a.out kld modules, and a.out kernels can load ELF kld modules. Notes: svn path=/head/; revision=40906
* Remove stray(?) debugging printf's and cngetc()'s that freeze boot severalPeter Wemm1998-11-041-8/+2
| | | | | | | times waiting for keypresses. Notes: svn path=/head/; revision=40904
* Remove stray .endif from previous commit (I hope this is right)Peter Wemm1998-11-041-2/+1
| | | | Notes: svn path=/head/; revision=40903
* Add usr.bin/gensetdefs to build-tools; it is used for src/sys/modules andPeter Wemm1998-11-041-1/+2
| | | | | | | maybe for other things that use linker sets under ELF. Notes: svn path=/head/; revision=40902
* Include mergesort() in description of errors.Robert Nordier1998-11-041-1/+3
| | | | Notes: svn path=/head/; revision=40901
* Drop unused labels.Robert Nordier1998-11-041-2/+2
| | | | Notes: svn path=/head/; revision=40900
* Remove an error message from sb interrupt driver -- itLuigi Rizzo1998-11-045-40/+0
| | | | | | | does not apply to all situations. Notes: svn path=/head/; revision=40898
* Handle a zero elements argument.Robert Nordier1998-11-041-0/+3
| | | | | | | | PR: 8566 Submitted by: Archie Cobbs <archie@whistle.com> Notes: svn path=/head/; revision=40896
* Typo curnwid -> currnwidMike Smith1998-11-041-1/+1
| | | | | | | Submitted by: Randy Bush <rbush@bainbridge.verio.net> Notes: svn path=/head/; revision=40893
* Don't need this one anymore.Mike Smith1998-11-041-81/+0
| | | | Notes: svn path=/head/; revision=40892
* Well I never. Seems like _setjmp()/_longjmp() are just what the doctorMike Smith1998-11-043-8/+16
| | | | | | | | | | ordered. This brings the Alpha back to parity, and should bring us BootForth on both platforms. Submitted by: John Birrell (jb@freebsd.org) Notes: svn path=/head/; revision=40891
* Improve the assertion testing for successful softword compilation.Mike Smith1998-11-041-4/+1
| | | | | | | The excessive use of assert() vs. robust error checking is annoying. Notes: svn path=/head/; revision=40890
* Improve the quality of isspace() to match expectations. This should makeMike Smith1998-11-041-2/+2
| | | | | | | the Ficl interpreter read its softwords array OK. Notes: svn path=/head/; revision=40889
* Simple update to make these work as kld and preload modules.Peter Wemm1998-11-0413-169/+90
| | | | Notes: svn path=/head/; revision=40885
* Turn off -g accidentally left in from testing.Mike Smith1998-11-041-3/+3
| | | | Notes: svn path=/head/; revision=40884
* Fix includes; we were still pulling in <stdlib.h> in some places.Mike Smith1998-11-0410-34/+54
| | | | | | | | Support building a standalone interpreter with 'make testmain', remove win32 and egregious gets() in testmain.c Notes: svn path=/head/; revision=40883
* Use a smaller default dictionary to waste less space.Mike Smith1998-11-041-2/+2
| | | | Notes: svn path=/head/; revision=40882
* Typo.Jean-Marc Zucconi1998-11-041-3/+3
| | | | Notes: svn path=/head/; revision=40881
* General tidy up: remove more unused code, update comments, simplify somePeter Wemm1998-11-041-34/+16
| | | | | | | routines a little. Notes: svn path=/head/; revision=40880
* Respect ${.OBJDIR} properly when looking for libficl.aJordan K. Hubbard1998-11-041-1/+5
| | | | Notes: svn path=/head/; revision=40879
* Don't try to build (nonexistent) Alpha setjmp until we have one.Mike Smith1998-11-041-1/+3
| | | | Notes: svn path=/head/; revision=40878
* Add required parts for BootForth building (currently disabled andMike Smith1998-11-041-5/+10
| | | | | | | | untested). Only suitable for i386 at the moment, as we are missing setjmp/longjmp on the Alpha. Notes: svn path=/head/; revision=40877
* Make this work in the libstand environment; don't use stdio/stdlib headers.Mike Smith1998-11-047-30/+12
| | | | Notes: svn path=/head/; revision=40876
* Add BootForth hooks; if BOOT_FORTH is defined, pass every line readMike Smith1998-11-044-5/+155
| | | | | | | | | | to the Forth interpreter. Instantiate all of our inbuilt commands as Forth words, and handle them being called from there. Add my copyright to the bcache module (oops). Notes: svn path=/head/; revision=40875
* Move setjmp/longjmp implementations here from libc; no signal handlingMike Smith1998-11-044-4/+504
| | | | | | | | | | | in libstand, only for i386 until I locate an alpha setjmp/longjmp. Minimal 64-bit gcc integer support for i386. This is kinda nasty, and should be revisited once we decide whether the bootblocks need quad arithmetic. Notes: svn path=/head/; revision=40874
* Formatting tweak.Jordan K. Hubbard1998-11-042-6/+6
| | | | Notes: svn path=/head/; revision=40872
* Include "bootstrap.h" to get a definition for bcache_devdata.Mike Smith1998-11-031-1/+2
| | | | | | | Submitted by: jkh Notes: svn path=/head/; revision=40871
* Back out previous commit. The bpfilter -> bpf transition will have to be aDag-Erling Smørgrav1998-11-0312-34/+31
| | | | | | | flag day unless we can hack config(8) to smooth things over. Notes: svn path=/head/; revision=40870
* Rename the 'bpfilter' pseudo-device to 'bpf'. The old syntax is still legalDag-Erling Smørgrav1998-11-0312-31/+34
| | | | | | | and will stick around for a while. Notes: svn path=/head/; revision=40869
* USERCONFIG_BOOT -> INTRO_USERCONFIGMike Smith1998-11-031-2/+2
| | | | Notes: svn path=/head/; revision=40868