summaryrefslogtreecommitdiffstats
path: root/release/i386
Commit message (Collapse)AuthorAgeFilesLines
* Use UFS labels and bsdlabels (like the 8.x memsticks) instead of GPT tonwhitehorn2011-10-091-35/+5
| | | | | | fix problems with some BIOSes. MFC after: 3 days
* Farewall, sysinstall! You served us well for many years, but 10.0 is onenwhitehorn2011-10-032-93/+0
| | | | | | | | digit beyond your time. Various sysinstall dependencies (e.g. libftpio, libdisk, libodialog, etc.) will be cleaned up in coming days. Some will take longer than others due to a few other consumers (tzsetup and sade).
* Mount memsticks read-only by default to prevent them being filled bynwhitehorn2011-07-301-1/+1
| | | | | | user modifications and subsequently preventing a functioning installation. Approved by: re (kib)
* Garbage collect some unused variables and stray debug code.nwhitehorn2011-05-051-1/+0
| | | | Submitted by: marius
* Repair release CD generation on PC98 and sun4v after release buildingnwhitehorn2011-05-041-23/+5
| | | | | | | | changes, and backport the new logic (ISO images are TARGET dependant, not TARGET_CPUARCH dependant) to Makefile.sysinstall. While modifying ISO image scripts, change several archs to use makefs (from base) instead of mkisofs (from ports) which makes release CD generation both faster and self-hosting.
* Use labels to find release media instead of hard-coded device paths. Thisnwhitehorn2011-03-222-14/+12
| | | | | | | | makes booting more reliable (and working at all on USB sticks). While here, move responsibility for setting up fstab into the various platform mk-*.sh scripts. Suggested by: many
* Add generation of memstick images to the bsdinstall release makefile fornwhitehorn2011-03-131-0/+83
| | | | | | | i386 and amd64. This involved moving the memstick generation script to the arch directories from scripts/, in analogy to mkisoimages.sh. This script was never called from /usr/src/release/Makefile, so that hasn't been updated.
* Fix making a release. The old libdialog was renamed to libodialog.nyan2011-01-141-1/+1
|
* Reorder to have -lcrypto after -larchive. Our linker doesn't seem to likedelphij2010-05-261-2/+2
| | | | the current ordering :(
* libarchive now needs libcrypto and liblzma.delphij2010-05-251-2/+2
|
* Remove slattach from the install mfsroot since it doesn't exist anymorejhb2010-01-261-1/+0
| | | | | | to quiet a warning from crunchgen. MFC after: 1 week
* Remove libulog from the bootstrap again.ed2010-01-211-1/+1
| | | | | | libulog now only provides functions that are used by various packages from the ports tree, namely the libutempter ones. There is no reason to link it into the crunch/fixit binaries anymore.
* Don't forget to link the fixits against -lulog.ed2009-12-061-1/+1
| | | | | | reboot(8) now depends on it. Reported by: nyan
* Add libjail to the boot_crunch binaries (for ifconfig).jamie2009-06-291-1/+1
| | | | | | PR: 136071 Submitted by: Scot Hetzel Approved by: re (kensmith), bz (mentor)
* Install libusb20.so.1 as libusb.so.1, there will be a followup commit to thethompsa2009-03-091-1/+1
| | | | | | | | | ports tree so that programs use libusb from the base by default. Thanks to Stanislav Sedov for sorting out the ports build. Bump __FreeBSD_version to 800069 Help and testing by: stas
* Catch up with USB2 change.nyan2009-03-031-2/+2
| | | | | | | Remove the usbdevs and add the usbconfig. Spotted by: hrs Tested on: i386
* - Add libbsdxml and libsbuf required by bsdlabel.nyan2008-09-251-1/+1
| | | | | - Remove the mknod from pc98 fixit and also the ftp from pc98 small fixit to avoid disk full.
* Recent work on the gnu cpio seems to have introduced some bugs, itkensmith2008-08-201-4/+2
| | | | | | | | | | | | complains about "Malformed numbers" while unpacking the dists and what winds up on the disk isn't correct. Use this as an opportunity to switch over to bsdcpio since at this point we don't even build and install the gnu cpio by default. Note sysinstall needed to be tweaked a bit (dropping tape block size setting) because it seems bsdcpio doesn't do anything with block sizes, at least as far as reading from archives goes. That wasn't really a problem since installations from tape have been broken for a while and the rest of sysinstall's tape support code will be removed shortly.
* libbsdxml is now required by ifconfig(8).thompsa2008-04-221-0/+1
| | | | Submitted by: Florian Smeets
* In 'fixit mode' running "fsck /dev/ad0s1a" typically complains that itkensmith2008-01-221-0/+2
| | | | | | | | | | | | | | | | can't find fsck_4.2bsd because there was no fstab file saying what filesystem type it is looking at so it got the filesystem type from the disk's label. When that fails admins who haven't been in this situation before are most likely to try "fsck -t ufs /dev/ad0s1a" because ufs is the type used in fstab files on working systems but that also fails complaining it can't find fsck_ufs. This just sets it up so /stand in the MFS image (/sbin is a symlink to /stand) includes hard links pointing fsck_4.2bsd and fsck_ufs to fsck_ffs which is what is present in /sbin on installed systems. Prodded by: obrien MFC after: 1 day
* ed(1) no longer relies on crypto library when built for the fixit media.kensmith2007-07-021-1/+1
| | | | Approved by: re (hrs)
* The i386 "fixit" floppy began overflowing, most likely due to the newkensmith2007-06-151-4/+2
| | | | | gcc. Replace vi(1) with ed(1) as the editor to make the contents fit on a floppy again.
* Make a bootable CD on pc98.nyan2006-05-161-1/+4
|
* Revamp base system packaging of kernels to enable up/smp selectionsam2006-03-081-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | at runtime and to support distributing additional kernels: o remove kernel from the base tarball o add new kernel tarballs o build + package both SMP and GENERIC kernels when an <arch>/conf/SMP config file is present o add sysinstall support for multiple kernels o update sysinstall to probe for the number of cpus on a system and auto-select smp/up kernel accordingly o add a post-kernels install hook to fixup /boot/kernel o add -ldevinfo to boot crunch for sysinstall's cpu probing logic Notes: 1. On HEAD this code is not currently used because GENERIC kernels include SMP. This work is mainly intended for RELENG_6 where the GENERIC kernel is UP. If HEAD changes to match then just enable WITH_SMP in sysinstall/Makefile. 2. The cpu probing support is done with acpi and MPTable; this means some systems will require work for auto-detection to work. 3. The handling of /boot/kernel may need to be revisited; for now we rename one kernel at the last moment (SMP if installed, otherwise GENERIC). There are other, possibly better, approaches. Lots of help from ru, emaste, scottl, and jhb.
* Remove usbd(8) and all references to it. It is no longer necessaryiedowse2005-12-151-1/+0
| | | | | | since devd(8) now provides the same functionality. Submitted by: Anish Mistry
* The current version of mkisofs is warning us that the -P option willkensmith2005-01-301-1/+1
| | | | | | | | be changing with the next version, and we should be using -publisher instead. Also warned by: trhodes MFC after: 1 week
* Don't allow ISO images to be made that try to use boot.flp to boot as thejhb2004-12-011-5/+2
| | | | | | | boot.flp in 5.3 and later is not self-contained and thus not suitable for CD booting. /boot/cdboot is now the only way to boot the install CDs. MFC after: 2 weeks
* Keep each prog on its own line so that diffs between variousru2004-10-012-14/+56
| | | | *_crunch.conf files are easier to read.
* Take away unused libraries.ru2004-10-012-2/+2
|
* Add a publisher variable with the URL for the FreeBSD Project, and putmurray2004-07-151-1/+3
| | | | | | this into the ISO headers by specifying the -P option to mkisofs. Obtained from: share/examples/worm/makecdfs.sh
* Set BATCH=yes to avoid bumping into interactivity in the port builds.kris2004-07-121-1/+1
| | | | XXX /usr/ports is still hardcoded, should be ${PORTSDIR}
* mkisofs(8) is now installed by sysutils/cdrtools.marius2004-06-021-4/+4
| | | | This will be instantly MFC'ed.
* Unbreak fixit crunch: since Feb/17/2004, mount(8) requires libufs.matusita2004-02-191-1/+1
| | | | | | See also src/sbin/mount/Makefile rev 1.14. Noticed by: snapshots.jp.FreeBSD.org
* Clean up after revision 1.55.ru2004-01-281-1/+1
|
* *BANG* *BANG* *BANG* *BANG* *BANG* *BANG* *CLICK* *CLICK* *CLICK*jhb2004-01-262-148/+0
| | | | | | | *BANG* *BANG* *BANG* *BANG* *BANG* *BANG* *CLICK* *CLICK* *CLICK* Death to the stripped down BOOTMFS kernel for boot floppies and all the cruft that goes along with it.
* Put the em and vx drivers back into the kernel so that the mfsroot stopsscottl2003-12-221-2/+0
| | | | | overflowing. We are one again on the brink of the floppies having major overflow problems.
* Move mly, plip, and slip back into the kernel so floppy 3 can fit again. I'mscottl2003-11-251-3/+0
| | | | | | not sure why it exploded in the last 10 days, though I suspect nfsclient.ko. Approved by: re (rwatson)
* Move cd9660 module from 3rd floppy to 2nd to unbreak release.kuriyama2003-11-121-1/+1
|
* Remove "device acpi" from BOOTMFS kernel for boot floppy to unbreak thekuriyama2003-11-061-0/+1
| | | | release build.
* - Support for multibyte charsets in LIBICONV.fjoe2003-09-261-1/+1
| | | | | | | | - CD9660_ICONV, NTFS_ICONV and MSDOSFS_ICONV kernel options (with corresponding modules). - kiconv(3) for loadable charset conversion tables support. Submitted by: Ryuichiro Imura <imura@ryu16.org>
* Unbreak "make release" by moving bfe and re driver into 2nd floppy.kuriyama2003-09-121-0/+2
|
* Move the mlx driver back into the kernel so that the drivers floppy doesn'tscottl2003-07-251-1/+0
| | | | overflow.
* Added the (undocumented) EMUL_BOOT variable (for TARGET=i386 only)ru2003-07-231-3/+5
| | | | | | | | | that causes the bootable ISO images to be created using the floppy emulation (the old method) as opposed to the new "cdboot" method. Only copy boot.flp to the 2nd CD-ROM if this variable is defined. Reviewed by: murray
* Keep entries sorted by floppy, type, and name.ru2003-06-011-8/+9
|
* Enable the MUTEX_NOINLINE option for the BOOTMFS kernel for ia32, pc98, andscottl2003-05-181-0/+2
| | | | | | alpha. This shaves 36-50k off of the compressed kernel size. Submitted by: jhb
* disklabel(8) is spelled bsdlabel(8) or sunlabel(8) these days.ru2003-05-171-2/+3
| | | | | | | | Also make sure bsdlabel(8) (along with the disklabel(8) compat link) still appear on the fixit floppies of platforms that use it natively (alpha, i386, and pc98). Approved by: re (scottl)
* Move the em driver from flopp3 to floppy 2 to make room for the ips driver.scottl2003-05-121-1/+1
|
* The ips ServeRAID driver can go on the driver floppy.scottl2003-05-111-0/+1
|
* Revert rev 1.78 of dokern.sh. The ncv, stg, and nsp drivers aren'tscottl2003-05-051-3/+0
| | | | | specific to pc98, and it looks like space on the kernel floppy isn't as tight as it was.
* pc98 has it's own release subdir, so it's safe to remove the stg, ncv, andscottl2003-05-021-0/+3
| | | | | | nsp drivers from the i386 floppies. Suggested by: bmah
OpenPOWER on IntegriCloud