summaryrefslogtreecommitdiffstats
path: root/release/picobsd
Commit message (Collapse)AuthorAgeFilesLines
* use correct "compile" directory, which is ../../compile/<filename>luigi2001-09-011-1/+1
| | | | | This does not apply to RELENG_4 for which the compile directory is ../compile/<filename>
* Supply a default value for the kernel config binary.luigi2001-09-011-0/+1
|
* Bugfix: Use the correct variable for picobsd type (same bug isluigi2001-09-011-5/+6
| | | | present in STABLE). Also add a bit more logging (when enabled).
* add a missing -o.luigi2001-08-301-1/+1
| | | | | There might be some other bug related to OBJDIR handling, once fixed these changes can be MFC immediately.
* s/adress/address/kris2001-07-231-1/+1
| | | | | Inspired by: OpenBSD MFC After: 1 week
* mdoc(7) police: remove extraneous .Pp before and/or after .Sh.dd2001-07-091-1/+0
|
* Fix the type of the NULL arg to execl()brian2001-07-091-1/+1
| | | | Idea from: Theo de Raadt <deraadt@openbsd.org>
* Account for the machdep.msgbuf -> kern.msgbuf renaming.tmm2001-07-031-1/+1
|
* Remove tcpdump from the list of binaries. When cross-compilingluigi2001-06-211-1/+1
| | | | | | | | I get a link error on in6addr_<something> and i cannot find the symbol in any of the libraries. It might be my mistake, but in any case the crunched binary would overflow the floppy, so... This applies to -current only.
* Remove support of I386_CPU in -current.luigi2001-06-216-3/+9
| | | | | | | | | Make sure hints are statically compiled into the kernel, because the bootloader is not available in picobsd and so the hints file cannot be found at run time. (This is kind of inconvenient if you have to handle non PnP devices, but fortunately these days non-PnP ISA cards are disappearing...)
* Use /dev/fd0 instead of /dev/fd0c for mounting the floppy.luigi2001-06-211-2/+4
| | | | | | | | | | | This must have to do with the use of devfs in -CURRENT, but i have no idea when the devfs is actually mounted (is it a side effect of mount -t nonfs or what ?) and when /dev/fd0c becomes available. For the time being, let's use this hack. Once I understand how devfs works, this can be reverted back to the previous value, and also the part of the build script which creates device entries can be nuked. This is for -current only.
* Move handling of crunch* files into Makefile.conf, which is aluigi2001-06-212-29/+58
| | | | | | | | | | | | | | | | | better place to handle dependencies. Make another step at helping cross-compiling: when the user specifies an alternate source tree, the script takes care of creating include files and libraries for the new tree. Furthermore, build and use a version of the "config" program which matches the new sources. It takes a long time to create libraries, and it might even not do the right thing at once, there might be some dependencies that i have forgotten. At any rate, with this code i have been able to build a working picobsd image using -CURRENT sources on -STABLE MFC after: 3 days
* Move variable assignement after argument parsing, to improve handlingluigi2001-06-201-8/+33
| | | | | | of alternate source trees. Also improve verbose behaviour.
* ISO_ -> ISOache2001-06-111-3/+3
|
* mount_msdos(8) -> mount_msdosfs(8).ru2001-06-0116-46/+50
|
* Sync picobsd script with the one in -stable, and alsoluigi2001-05-111-2/+4
| | | | | | patch boot2 so it goes to load /kernel right away Perl code from Josef Karthauser
* This file is not needed, use the default oneluigi2001-05-101-58/+0
|
* remove a reference to a nonexisting script, "clean", whenluigi2001-05-081-2/+1
| | | | | | building all images. Also, build "bridge" image as well. Reported-by: Bruce Montague
* MFS: use absolute, not relative path for tinywareluigi2001-05-081-1/+1
|
* pseudo-device -> device in kernel config.schweikh2001-05-011-1/+1
| | | | Approved by: joerg, dd
* MF4S: Syncronise with Luigi's work in -stable.joe2001-04-2422-252/+93
|
* MF4S: Syncronise with Luigi's work in -stable.joe2001-04-2419-270/+201
|
* MF4S: Syncronise with Luigi's work in -stable.joe2001-04-233-116/+0
|
* MF4S: Sync with the developments that Luigi's been doing in -stable.joe2001-04-237-1070/+8
|
* MF4S: Remove some unused error messages. (revision 1.1.2.5)joe2001-04-231-13/+1
|
* Apply style guidelines (using gident to help).joe2001-04-232-424/+471
|
* Fix a syntax error.joe2001-04-231-2/+2
|
* MFS4: Do not terminate if it fails to clean something. (rev 1.12.2.5)joe2001-04-221-1/+1
|
* FFS_ROOT was made obsolete, so remove it from the PicoBSD kernels.joe2001-04-226-6/+0
|
* Drop support for -DRELEASE_BUILD_FIXIT and -DCRUNCHED_BINARY inru2001-04-034-4/+4
| | | | ${CFLAGS}. The only supported method thus is -DRELEASE_CRUNCH.
* Bring the new script into -current. Still untested here, but thereluigi2001-02-202-0/+725
| | | | is a high chance that they work modulo minor things.
* Enable command line editing in the shellluigi2001-02-181-0/+1
|
* Make correct entries for atapi disksluigi2001-02-181-1/+1
|
* Make the right device entries for atapi disksluigi2001-02-181-1/+1
|
* Bump version to 0.500 -- not that it means much, but at leastluigi2001-02-181-1/+1
| | | | gives some idea on the age of the source used for the build.
* Resurrect Minix sh(1), after its license has been changed to BSD one.abial2001-02-1010-0/+5018
|
* Add the MD_ROOT_SIZE option.luigi2001-02-015-6/+11
| | | | These files might need further work before producing a compilable kernel.
* Add a required option, MD_ROOT_SIZEluigi2001-02-011-18/+37
| | | | also put in a better set of devices and options.
* Put picobsd build scripts in sync with the ones in -STABLE.luigi2001-01-293-75/+80
| | | | | | | | | | | With these scripts i was able to build a _working_ image of a bridge-like floppy image with a reasonable set of utilities in it, despite the code size increase we have in 5.0 The scripts are slightly different from the previous ones especially on the place where the kernel and binaries are built. Hopefully this will not cause too much trouble to people (is there any???) using the old scripts.
* Make the shell handle arrow keysluigi2001-01-271-0/+1
|
* The magic for autodetecting the boot media does not work anymoreluigi2001-01-272-2/+2
| | | | on STABLE or CURRENT. Put the explicit name for the floppy.
* Add dummy -n option, for compatibility with the standard netstatluigi2001-01-271-2/+4
|
* Make the name of the init script and the interpreter compile time options.alex2001-01-202-7/+26
| | | | | | | If not defined, default to the old values (with _PATH_BSHELL instead of "/bin/sh", though). Reviewed by: markm
* MF4: Allow the build process to continue even if crunchgen returns an error.joe2001-01-111-1/+1
| | | | Most crunchgen errors are non-fatal.
* Fix so that the netmask is displayed correctly when it does notabial2001-01-101-4/+9
| | | | | | | | | | consist of contiguous bits in little endian format. Before the fix the netmask of 0xfffffff0 (0xf0ffffff in little endian format) was displayed /24 instead of /28. Also, add a missing include. Submitted by: Maxime Soule <Maxime.Soule@IPricot.com>
* Reformat to be a bit closer to style(9).abial2001-01-101-26/+26
|
* Fix breakage after moving from struct proc/eproc to kinfo_proc.abial2001-01-101-19/+15
|
* Remove floppy.tree from the build directory.joe2000-12-231-2/+3
|
* MF4: Update the bridge kernel config file to reflect the structure andjoe2000-12-231-31/+19
| | | | order that Luigi has just committed to RELENG_4.
* MF4: revision 1.3.2.1.joe2000-12-231-1/+1
| | | | inetd is not always present, check before invoking it.
OpenPOWER on IntegriCloud