summaryrefslogtreecommitdiffstats
path: root/usr.sbin/sade
Commit message (Collapse)AuthorAgeFilesLines
* Teach sysinstall that documents on the boot floppy might not be gzipped.jhay2002-08-091-0/+6
| | | | Reviewed by: ru
* Typo: s/seperately/separatelyschweikh2002-08-061-1/+1
| | | | | | PR: misc/41235 Submitted by: Fesskat Tudeer <freebsd-fesskat@fesskat.org> MFC after: 3 days
* enable fdisk for ia64 as well as i386peter2002-07-241-2/+2
|
* Only install the mbr code on i386.. not ia64. This changes it frompeter2002-07-241-1/+1
| | | | #ifndef __alpha__ to #ifdef __i386__
* The .Nm utilitycharnier2002-07-141-5/+9
|
* Diff-reduce with 4-stable: 4.x has a compat4x package.jhb2002-07-021-1/+1
|
* Call the 4.x snap server "releng4.freebsd.org" instead ofjhb2002-07-021-2/+2
| | | | "stable.freebsd.org" to be the same as 4-stable.
* Add lge(4) to the list of drivers. It was present in 4-stable but not injhb2002-07-021-0/+1
| | | | -current.
* Change our default XF86Config location from /etc/ to /etc/X11/,obrien2002-06-101-1/+2
| | | | | | following the lead of The XFree86 Project's default. Approved by: Murray
* Fix a bug where request_part_size() was hard-coded to check the rootSizejhb2002-06-071-1/+1
| | | | | | variable rather than the one passed in as the first argument. Sponsored by: The Weather Channel
* o Remove ftp.freebsd.org from the USA servers and add to thejedgar2002-06-051-3/+5
| | | | | | | Denmark servers. o Add snapshots.jp.FreeBSD.org. Approved by: brian
* Add information about setting up media to use the multi-volume supportmurray2002-06-051-0/+60
| | | | | | in sysinstall. Reviewed by: ru
* Fix handling of the 'noError' variable. According to the code comments,jhb2002-06-031-12/+11
| | | | | | | | | | | one can set the 'noError' variable to ignore any errors that occur for the next command. However, the code was only unsetting 'noError' when an error actually occurred, so if you set 'noError', the next command completed ok, and the command after that failed, the second command's failure would be ignored. This fixes this by performing the 'noError' check earlier and then unsetting 'noError' after every command that is run. Sponsored by: The Weather Channel
* Add a 'mediaClose' script command to close the open media. An example usejhb2002-06-032-0/+14
| | | | | | | would be to unmount the CD you installed from and prompt the user to eject it before rebooting the machine. Sponsored by: The Weather Channel
* Brush up descriptions of sendmail menu last added.matusita2002-06-011-2/+4
| | | | Submitted by: gshapiro
* Add 'Sendmail' menu to set sendmail_enable variable.matusita2002-06-012-1/+22
| | | | Reviewed by: bmah (description only)
* Fix integer overflow causing disk/partition size display wrappingpb2002-05-311-3/+3
| | | | above 4GB.
* - Document the new `diskInteractive' variable.jhb2002-05-311-0/+17
| | | | | | - Document the tcpMenuSelect command. Sponsored by: The Weather Channel
* Add a 'diskInteractive' variable that can be set to interactively partitionjhb2002-05-313-4/+9
| | | | and label a disk from a sysinstall script.
* Add two FTP mirrors in France:roberto2002-05-201-0/+4
| | | | | | | - ftp7 in Paris (ftp.club-internet.fr) - ftp8 in Stransbourg (ftp.u-strasbg.fr) MFC after: 1 day
* Add the ability to use Bzip'ed packages.obrien2002-04-302-1/+7
| | | | | | | Also add the ability to use Bzip'ed distributions -- but this is exclusive of being able to use Gzip'ed distributions. Sponsored by: FreeBSD Mall, Inc.
* Change the name of the 'bin' distribution to 'base'.obrien2002-04-231-4/+4
| | | | | | | This is done since it contains much more than /bin, and also gets in the way when making a combined install+fixit CD. OK'ed by: jkh
* Add the concept of a volume to the device and package structures. Ifmurray2002-04-131-0/+2
| | | | | these values are different for a given package, then we must prompt the user to insert another disc before the package can be installed.
* Add comment to supplement my last commit.murray2002-04-071-0/+8
| | | | Requested by: obrien
* GCC >= 3 and C99 handle zero-length arrays differently than oldermurray2002-04-071-0/+6
| | | | | versions of GCC. With this change, sysinstall compiles and works fine with GCC 3.1 or 2.95.
* Add "xf86cfg -textmode" to the list of options for configuring XFree86murray2002-04-061-5/+9
| | | | | | 4.X. Suggested by: many
* Teach sysinstall the difference between a command line, and anmurray2002-04-061-3/+8
| | | | | executable file, so that we can pass commands with arguments to configXSetup().
* Switch to using XFree86 version 4. We do this thru installing the package,obrien2002-04-025-70/+78
| | | | | | | | so know we have proper PKG registration and dependency information. This is a WIP for 5.0 DP #1, so it is still rough around the edges and does not GC the old XFree86 3.3.6 handling stuff that should be GC'ed. Sponsored by: FreeBSD Mall, Inc.
* Our persistent-state, large temporary file dir is /VAR/tmp, not /USR/tmp.obrien2002-04-011-1/+1
|
* Fix /dev/acdNc minor device number. This bug prevents installing FreeBSDmatusita2002-03-301-1/+1
| | | | | | | | | from CD-ROM in 4-stable. Note that in 5-current, we use devfs so this change (hopefully) shouldn't change anything. I'll MFC to 4-stable later. Tested with: FreeBSD/i386, 4.5-STABLE-20020330-JPSNAP
* Only build and link the pccard module on architectures that support it (andmurray2002-03-294-1/+12
| | | | that have room for pccardd on mfsroot.flp).
* Tidy up CLEANFILES.ru2002-03-281-1/+1
|
* Teach sysinstall(8) how to read boot managers out of /bootru2002-03-282-50/+17
| | | | | | | | instead of hardcoding them into the binary. This replaces the work-around in usr.sbin/sysinstall/Makefile,v 1.121. Suggested by: jhb MFC in: 1 week
* Modernize my email addressphk2002-03-251-1/+1
|
* Add the ERRATA file to the documentation menu and index.bmah2002-03-181-1/+3
| | | | | | | | | While I'm here, make the menu entries on the documentation menu begin with "1" instead of "2". Reviewed by: imp, rwatson, murray Approved by: imp, rwatson, murray MFC after: 1 week
* Add wireless devices to device_names array. Now that ifconfig can setmurray2002-03-171-0/+3
| | | | | | | session IDs, and sysinstall can load modules from the MFSROOT, it should be possible to install FreeBSD over a wireless link. MFC after: 2 weeks
* Embed boot images built as part of buildworld rather than theru2002-03-151-9/+37
| | | | | | | | | | | | | | | | | | | installed ones under /boot (which we may not even have in the case of a cross build). This introduced chicken and egg problem - we need boot images early in the "depend" stage but they have not yet been built. Work around this by excluding the generated makeboot.c source from the "depend" list; it's okay because we hardcode all its dependencies explicitly. We actually lose the dependency bit on <sys/types.h> but it's probably okay too as the only thing we use is the u_char datatype and this is unlikely to change. After all, it's normal for sloppy cleaning to cause problems. beast.FreeBSD.org running 5.0-CURRENT alpha has been able to cross build i386 world with this patch. Prodded by: gallatin
* Don't use temporary file to generate makedevs.c -- it's okayru2002-03-151-21/+19
| | | | | to write to makedevs.c directly as it's not protected by the .PRECIOUS attribute.
* o No longer mount /proc by default on newly installed systems. Almostrwatson2002-02-101-4/+0
| | | | | | | | | | all facilities that previously relied on /proc have been rewritten to use ptrace(). procfs has presented a substantial security hazard for years, with several user->root compromises in the last few years. Procfs will continue to be available but will require administrator intervention to use. Reviewed by: scottl, jedgar, mike, tmm
* Reword the ``Please remove the FreeBSD fixit CDROM now.'' tobrian2002-02-081-1/+1
| | | | | | ``Please remove the FreeBSD fixit CDROM/DVD now.''. MFC after: 2 weeks
* Stop saying that "express" mode is for impatient people. It'sjkh2002-01-301-1/+1
| | | | | | | really for impatient and EXPERT people who know sysinstall backwards and forwards. MFC after: 1 week
* Fix a signal 11 error that occurs if you try to use the 'T' option onmurray2002-01-291-1/+2
| | | | | | an existing FreeBSD partition. Reported by: Brent Cook <busterb@mail.utexas.edu>
* Unbreak installation for the CD-ROM and possiblhy other media types.green2002-01-141-2/+2
| | | | | Obtained from: LOMAC project Sponsored by: DARPA, NAI Labs
* Revert rev 1.316 now that the bootstrap issues with filesystems usingsheldonh2002-01-141-4/+0
| | | | | | | | block sizees larger than 8192 bytes have been resolved, as per the following deltas: rev 1.34 src/sys/boot/i386/boot2/boot2.c rev 1.5 src/sys/boot/alpha/boot1/sys.c
* Safwish package built on bento is called `sawfish-gnome', so adjust sysinstallsobomax2002-01-091-1/+1
| | | | | | | and print-cdrom-packages.sh accordingly. Revealed by: re MFC after: 1 day
* According to jhb, the alpha bootstrap code depends on the rootsheldonh2002-01-071-0/+4
| | | | | | | | | filesystem using a block size of 8192. Since this seems unlikely to be fixed soon (specifically in time for 4.5-RELEASE on the RELENG_4 branch), fall back to the old default block and frag sizes of 8192 and 1024 in sysinstall on the alpha. Reported by: jhb
* Add 'R'ecover option that deletes a partition and attemptsdillon2002-01-071-3/+14
| | | | | | | | | | to recover its space into the previous partition. Revert 'D'elete to not attempt to recover any space. Do not auto-create /home as per release engineers decision (though I think this is a mistake). However, all of this code will be replaced later on anyway either with Jordan's stuff or with some other sort of templater, so it isn't a big deal.
* Correct the path for the stable snapshot server.jkh2002-01-031-2/+2
| | | | Noticed by: "Peter Holm" <p_holm@mail.tele.dk>
* o Wording and spelling fixes for security menu description.rwatson2001-12-211-5/+5
|
* o Expand the text describing the Security options menu.rwatson2001-12-212-2/+6
| | | | | | | | | | | | | | | | o Move nfs_reserved_port_only out of security profiles (where it was set somewhat improperly) to the Security options menu directly. Previously, the variable was set to true for Moderate, but not for Extreme, which is at best inconsistent. o Update the Security Profiles help file to remove reference to the NFS reserved port. o Note that the kernel currently defaults the sysctl to '0', but sysinstall has changed it to '1' as a default as of late; however, rc.conf sets the value to NO as the default. This change brings them relatively into sync. Sponsored by: DARPA, NAI Labs
OpenPOWER on IntegriCloud