summaryrefslogtreecommitdiffstats
path: root/release/picobsd
Commit message (Collapse)AuthorAgeFilesLines
* sysctl -w -> sysctldd2002-05-114-10/+10
|
* Bring in a slightly older version of usr/bin/passwd which does notluigi2002-05-052-0/+359
| | | | | require libpam and all the libraries that libpam brings in. We have no room for those on picobsd images.
* Usage style sweep: spell "usage" with a small 'u'.des2002-04-221-1/+1
| | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/.
* Record libtelnet.a death.ru2002-04-195-5/+5
|
* Align for const poisoning in -lutil.ru2002-04-081-5/+6
|
* Synch with login/login.c,v 1.81: Switch to OpenPAM.ru2002-04-081-3/+3
|
* Fix handling of undefined variables.luigi2002-04-071-2/+6
| | | | | Add override for /etc/rc.local . Add hook to start syslogd if compiled-in and /etc/syslog.conf exists
* Add a missing void in the parameter list of http_request().asmodai2002-04-071-1/+1
|
* Give functions proper return type, since the default is an integer, whereasmodai2002-04-071-1/+7
| | | | | | | | | the author obviously meant a void since he doesn't return any values. One caveat, http_request has three return()'s, but doesn't do anything with it. Either the code needs to be rewritten to take care of proper error handling on that point, or the returns ripped out. I made it void for now.
* Use %lld instead of %d in order to print struct stat's st_size, which isasmodai2002-04-071-1/+1
| | | | | | | an off_t. PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* Garbage collect unused variables.asmodai2002-04-071-5/+2
| | | | | PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* Actually print the port we are listening too when specified verbose mode.asmodai2002-04-071-1/+1
| | | | | PR: 29725 Submitted by: Eugene Grosbein <eugen@svzserv.kemerovo.su>
* Function declared void shouldn't return any value...abial2002-03-271-2/+2
|
* Modernize my email address.phk2002-03-251-1/+1
|
* Add a few popular entries.luigi2002-03-241-0/+3
|
* DESTDIR does not anymore does the -I${DESTDIR}/usr/include magicru2002-03-221-4/+4
| | | | | | in <bsd.prog.mk> and <bsd.lib.mk>. Reviewed by: luigi
* Gracefully exit when no MFS signature is found in the kernel.luigi2002-03-211-1/+14
| | | | Add support for a new "import_files" option (see manpage for details).
* Batch of fixes to the configuration files from Bruce Montagueluigi2002-03-155-12/+11
|
* Make this compile againluigi2002-03-111-1/+1
| | | | Reported-by: Bruce Montague
* Make this compile again (increase MFS size, remove invalid option).luigi2002-03-111-5/+5
| | | | Reported-by: Bruce Montague
* Fix detection of existing ssh host key, generate the new oneluigi2002-03-111-10/+14
| | | | | | | in floppy.tree instead of mfs_tree. Do not cleanup ${BUILDDIR}/floppy.tree, it might be useful to look at it after an image has been built.
* Make appropriate changes to use devfs.luigi2002-03-111-4/+6
| | | | Add a reference to the fd_size variable to set floppy size.
* Default to ee as EDITOR (some apps such as disklabel default to "vi"luigi2002-03-111-0/+1
| | | | which is not available).
* Use machdep.guessed_bootdev to guess the boot device.luigi2002-03-111-2/+2
|
* CURRENT has devfs, so we do not need to specify what devices weluigi2002-03-105-20/+5
| | | | want on the MFS image. Update the config files accordingly.
* Uncomment the entry for a getty on the serial port. Boxes withluigi2002-03-101-1/+1
| | | | a serial console can make use of it.
* Add back the "sis" driver, we had some room left...luigi2002-03-101-0/+1
|
* With devfs, we do not need to initialize pty's permissions.luigi2002-03-101-1/+0
|
* The probable boot device is "machdep.guessed_bootdev".luigi2002-03-101-2/+2
|
* Remove host.conf, and introduce a way to override the contentluigi2002-03-093-6/+16
| | | | | | of selected files (at the moment /etc/host.conf and /etc/resolv.conf) from /etc/rc.conf , so the number of places to customize is reduced.
* Nuke abandoned configuration.luigi2002-03-0942-1602/+0
|
* Make this fit again into a 1.44 floppy.luigi2002-03-093-10/+10
| | | | | | | We had to give up DDB and grep this time... Add a hint in "config" on how to increase the image size so we can stuff more things in the image (mostly for use on a CDROM).
* Further cleanup: remove useless entries from PATH, and be preparedluigi2002-03-081-2/+3
| | | | | to use kern.bootdevname (if available) to identify the boot device for updating the configuration. Fallback to /dev/fd0 as before.
* Add a (commented out) sample entry for use with a serial line.luigi2002-03-081-0/+1
|
* Do not depend on "expr" for doing arithmetic, use the shell builtin functionsluigi2002-03-081-1/+1
| | | | (picobsd might not have the command available).
* Unbreak "update" script, by doing a mkdir -p of the relevantluigi2002-03-081-30/+41
| | | | | | | | directories when writing to disk. Use the (yet to be committed) sysctl variable kern.bootdevname to derive the device name, fallback to /dev/fd0 if kern.bootdevname is unset or not available.
* Use a default of 25 lines for xterm. This only affects the behaviourluigi2002-03-081-1/+1
| | | | | over a serial line, because the terminal negotiations using ssh/telnet does the right thing anyways.
* Major cleanup of PicoBSD startup scripts, which now should beluigi2002-03-088-347/+323
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | closer to doing "the right thing". The structure is now the following: * /etc/rc (from MFS) loads the rest of /etc and /root from /fd and then from floppy (if present), then transfers control to /etc/rc1 * /etc/rc1 loads defaults from /etc/rc.conf.defaults, tries to set the hostname basing on the MAC address of the first ethernet interface, and then sources /etc/rc.conf and /etc/rc.conf.local for local configurations * The rest of the startup process is then performed (rc.network and so on). Everything except the initial /etc/rc (from MFS) can be overridden with a local version loaded from floppy. But in most cases, you should only need to customize the following files in /etc: rc.conf rc.firewall hosts Previously there were a number of inconsistencies in the calling between files, and also a lot of clutter in rc.conf and rc.firewall. Also, "rc1" was called "rc" and would overwrite the initial /etc/rc from MFS, making it really hard to figure out what was going on in case of bugs.
* MFS: sync with -stable (no functional difference).luigi2002-03-082-4/+5
|
* Invalidate password for sample user entry.luigi2002-03-081-1/+1
|
* Atapi units are now /dev/ad* and not /dev/wd*luigi2002-03-081-3/+3
|
* Misc fixes to the build script:luigi2002-03-081-19/+31
| | | | | | | | | | | | + fix some dialog entries to correctly modify variables instead of working in a subshell + add a logverbose function for debugging purposes + force 512/4096 blocks on filesystems + use 'auto' for disklabel so it works irrespective of the floppy size. This is useful for larger images than 1720k
* Add entry for xterm-colorluigi2002-03-061-0/+2
|
* Put a more reasonable path for "more" sources in crunch.conf,luigi2002-02-142-8/+9
| | | | | | | | and disable telnet and friends in favour of ssh/sshd/scp. Pull out a few NIC drivers from the config file to make the image fit into a 1.44 image again. I have left "lnc" in as that is emulated by vmware so this can be booted there.
* Use { } instead of ( ) for grouping shell commands so thatluigi2002-02-141-8/+8
| | | | | | variable assignments are retained ( () creates a subshell) Reported-by: Michael Bretterklieber <mbretter@inode.at>
* Add a '-l' flag to show CPU load for the various states, similar to whatluigi2001-12-141-2/+46
| | | | | | | | | | | "top" does (thinking of it, i could have as well used the same format line!) This only makes sense when "-w" option is also specified, because the load is computed as the difference between subsequent samples. I think this (and the "-d" feature which shows differences in the network statistics counts) would also make sense in the standard vmstat and netstat.
* Implement a more efficient way to assign addresses: read /etc/hostsluigi2001-11-291-24/+42
| | | | | | only once into an array of shell variables, and then scan the array to find entries matching the MAC address. Associative arrays would really be handy here...
* Whoops... left some junk in previous commit.luigi2001-11-241-4/+0
|
* Let "make" use the .mk files from the correct source tree insteadluigi2001-11-241-6/+24
| | | | | | | | of the default ones (which could be incorrect when doing cross builds). Also, try to be backward compatible when compiling wmk (the goal being able to use the most recent "picobsd" script on a wide range of source trees).
* Use a local write_mfs_in_kernel.c instead of the one in ncvs/src/releasejoe2001-11-201-1/+1
| | | | | which is likely to be removed shortly, after repo-copying it from there.
OpenPOWER on IntegriCloud