summaryrefslogtreecommitdiffstats
path: root/release/picobsd
Commit message (Collapse)AuthorAgeFilesLines
* Change MFS sizes to 2400k since gzip will compact free space anyway.dwhite1999-10-201-3/+4
| | | | Add 'install' to the internal floppy type list.
* Reverse the sense of the /mnt/boot/defaults dir check. This was causingdwhite1999-10-171-1/+1
| | | | | the bootloader to not load the loader.conf and thus the MFS image. The result was 'panic: no init'.
* Fix handling of the 'custom' directory symlink.dwhite1999-10-112-9/+14
| | | | | | | Properly abstract the PicoBSD build directory instead of depending too much on pwd's and relative paths. Submitted by: John Baldwin <jobaldwi@vt.edu>
* Be explicit about kzip location to avoid accidentally calling KDE kzip.dwhite1999-10-111-1/+1
|
* Add documentation for the PicoBSD install floppy.dwhite1999-10-082-1/+100
|
* Add a new floppy type, install. This type builds a disk that candwhite1999-10-0847-2/+1635
| | | | | | | slice, partition, newfs, and install FreeBSD from a tarball on a remote server. Handy for doing mass-installs for server farms. Documentation following shortly.
* Remove tee from stage1 call. You can't capture the return code from stage1dwhite1999-08-291-1/+1
| | | | (easily) so it gives false 'success' indications.
* MFS: Dialog-ify 'reuse custom directory' question.dwhite1999-08-291-7/+14
|
* Backout my last commit. Exit status is $?roger1999-08-281-1/+1
|
* Add file which was missed in last commits due to CVS problemsroger1999-08-281-0/+18
|
* Add file which was missing from previous commitsroger1999-08-281-0/+60
|
* $Id$ -> $FreeBSD$peter1999-08-28123-125/+125
|
* 'build' calls 'stage1'roger1999-08-271-2/+2
| | | | | The check for the exit status of the 'stage1' script was broken. Change "X$?" != "X0" to "X?" != "X0"
* Sync with -stable versionroger1999-08-261-5/+6
|
* Comment out references to ssh to allow builds to complete.roger1999-08-261-3/+5
|
* Update so it applies cleanlyroger1999-08-261-4/+4
|
* Update patch so it applies cleanlyroger1999-08-261-4/+4
|
* Changed to get the page size using a sysctl rather than using DEFAULT_PAGE_SIZEroger1999-08-261-2/+6
| | | | Suggested by: Alan Cox
* Add missing quote.dwhite1999-08-251-2/+2
|
* Fix patch so it applies without asking for a filename.dwhite1999-08-241-21/+29
|
* Add 'options MFS_ROOT' back in to kernel configs -- not going to get fardwhite1999-08-234-4/+8
| | | | without that!
* Add missing files from previous commits.luigi1999-08-232-0/+82
|
* Add missing file from previous commitluigi1999-08-231-0/+25
|
* Remove some files probably forgotten from previous commit.luigi1999-08-236-92/+0
|
* Add missing files probably forgotten in previous commitluigi1999-08-231-0/+33
|
* Add missing files probably forgotten in previous commitluigi1999-08-233-0/+167
|
* Add missing file probably forgotten from previous commitluigi1999-08-233-0/+330
|
* More cleanup: move device entries in Picobsd makefiles in a moreluigi1999-08-234-12/+16
| | | | accessible place.
* Additional cleanup of the picobsd scripts.luigi1999-08-235-203/+223
| | | | Also bump Version to 0.445
* Major PicoBSD update by luigi with some debugging help from myself.dwhite1999-08-22142-3611/+873
| | | | | | | | | | | | | | . Now builds on -STABLE (-CURRENT is broken due to bugs) . etc directory contents centralized instead of in each type directory (can exclude & override as desired) . Removed extraneous language files (lang files for rc really necessary?) . dialog-based build tool with support for custom floppy builds . MFS image loads as a mfs_root module instead of compiled into kernel THIS IS BROKEN ON CURRENT. I'll MFC to -STABLE immediately following. luigi tells me I have an OK from jkh on the MFC. Submitted by: luigi
* Enable printing of bridging statistics.luigi1999-08-171-2/+2
|
* Fix a problem in printing interface names.luigi1999-08-121-9/+13
|
* DEFAULT_PAGE_SIZE was removed, pgtok defined in headers, headers cleaned up.green1999-07-081-3/+4
| | | | Obtained from: Jonathan Towne <jontow@sysctl.urban-a.net>
* Rename bpfilter to bpf.des1999-07-061-2/+2
|
* MFS: No longer needed with PicoBSD 0.44roger1999-06-154-86/+0
|
* MFS: No longer needed in PicoBSD 0.44roger1999-06-1518-8261/+0
|
* MFS: No longer needed in PicoBSD 0.44roger1999-06-153-216/+0
|
* MFS: No longer needed in PicoBSD 0.44roger1999-06-1571-19007/+0
|
* Last commit was incorrect. Remove the 'rp' PCI deviceroger1999-06-141-46/+40
|
* Comment out the PCI Comtrol Rocketport entries.roger1999-06-141-42/+48
| | | | | The PicoBSD 'isp' build fails when both the PCI and ISA versions of the 'rp' driver are included at the same time
* Update to PicoBSD 0.44 from RELENG_3roger1999-06-142-5/+5
|
* Update to PicoBSD 0.44 (from RELENG_3)roger1999-06-142-0/+119
|
* Update to PicoBSD 0.44 from RELENG_3roger1999-06-1426-119/+145
|
* Update to PicoBSD 0.44 from RELENG_roger1999-06-146-39/+19
|
* Update PicoBSD kernel config files. Changes areroger1999-05-244-169/+181
| | | | | | | | | | removal of bio, tty, net removal of quotes switches from isa? to nexus? or atkbdc? additional comments These bring the kernel config files in sync with those in RELENG_3
* Deal with MAKEDEV's braindedness.abial1999-05-054-12/+26
| | | | | Submitted by: Patrick Powell <papowell@astart4.astart.com> Reviewed by: abial
* Simple_HTTPd on steroids - major rework of the original program, byabial1999-05-053-210/+463
| | | | | | | | | | | | William Lloyd. New features include: * many additional command line options * "fetch" mode * less bugs :-) * better README. Submitted by: William Lloyd <wlloyd@lap.net> Reviewed by: abial
* Change references from "passwordperiod" to "passwordtime", sincehoek1999-04-304-8/+8
| | | | | | "passwordtime" is what passwd(1) has actually been using. I suspect passwordperiod was the original intent. I can't figure-out which, if either, BSDi uses. If anyone knows...
* Take boot1/boot2 from their new place, i.e. /boot/, not fromabial1999-03-092-5/+5
| | | | | | (currently nonexistent) /usr/mdec/. Submitted by: luigi
* Copy the 'reboot' script only for "dial" floppy.abial1999-02-151-3/+3
|
OpenPOWER on IntegriCloud