summaryrefslogtreecommitdiffstats
path: root/release/amd64/boot_crunch.conf
Commit message (Collapse)AuthorAgeFilesLines
* 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
* 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
* 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
* 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
* Keep each prog on its own line so that diffs between variousru2004-10-011-7/+23
| | | | *_crunch.conf files are easier to read.
* Take away unused libraries.ru2004-10-011-1/+1
|
* Clean up after revision 1.55.ru2004-01-281-1/+1
|
* tunefs now requires -lufs.ru2003-01-231-1/+1
|
* Since NEWCARD is the default pccard subsystem, pccard[cd] is nomatusita2002-10-191-1/+1
| | | | | | | longer needed. Note that pc98 uses OLDCARD so this is only for i386 (thanks nyan-san). OKed by: imp
* Back out previous commit - I didn't realize that ifconfig(8) dealtjkh2002-05-161-1/+1
| | | | | | properly with 802.11 configuration now. Noted by: jhb
* Add wicontrol to boot floppy until such time as this support is partjkh2002-05-131-1/+1
| | | | | of ifconfig. PR: misc/21886
* Include camcontrol(8) (in its minimalistic form) into the boot floppy.joerg2002-01-171-2/+2
| | | | | | | | This change should/could be merged into other arch's release build areas (PC98, Alpha), but since i cannot test a "make release" there, i won't do this myself. MFC after: 1 week
* Sysinstall cleanups for installation:matusita2001-12-021-3/+1
| | | | | | | | | 1) Use devfs to mount filesystems. If mounting devfs is fail, fallback to old code. 2) When fscking filesystems, use 'fsck_ffs' explicitly. As a result, we no longer need 'fsck' the wrapper program. Reviewed by: jkh
* Add fsck tool for UFS to /stand tools (again).matusita2001-11-191-1/+3
| | | | | | | | | | | | Actually src/release/i386/boot_crunch.conf rev 1.45 does this change, but unfortunately there is no src/sbin/fsck_4.2bsd directory, but src/sbin/fsck_ffs. This commit replaces 'fsck_4.2bsd' to 'fsck_ffs', and add a link to 'fsck_4.2bsd' and 'fsck_ufs'. Note that 4-stable's fsck(8) have an ability of fsck_ffs also, there is no need to MFC at least now. Tested only for: i386 (but I believe this doesn't break for other archs)
* + Build with `lint' defined to cut out some of the `rcsid's (binaries' codeobrien2001-07-211-3/+2
| | | | | | | only, the libs will still have the `rcsid's in them). + mount_mfs is OBE. + Do not need libipx as I have conditionally diked that functional out of ifconfig(8).
* Cleanup: sort by directory/program, remove unused libraries.ru2001-04-031-16/+20
|
* Moved -DRELEASE_CRUNCH into crunchgen(1) config files.ru2001-03-311-0/+2
|
* Add tunefs to the mfsroot floppyjkh2001-03-101-0/+1
|
* Add fsck_4.2bsd to boot crunch target. This returns the ability tojkh2001-02-251-1/+1
| | | | actually fsck (and upgrade) a box from boot media again.
* Now that sysinstall lives in /usr/src/usr.sbin, we don't need to pull itjhb2001-01-171-1/+1
| | | | from /usr/src/release.
* IPv6 support.ume2000-07-141-0/+1
| | | | | | | | | | | IPv6 configuration is only done by rtsol. Does someone really need manual configuration? :-) You can specify IPv6 DNS server as well. We have only one server ftp7.jp.freebsd.org that speaks IPv6 in this time. ftp7.jp speaks IPv4 as well and also listed as Japan #7. Approved by: jkh
* - Removed machine dependent directory and command fromnyan2000-06-291-1/+1
| | | | | | | | src/release/{boot,fixit}_crunch.conf. - Added machine specific fixit_crunch.conf for PC/AT and PC-98 to src/release/$MACHINE. - Use config file in src/release/$MACHINE if exist. If it does not exist, use in src/release.
* - Remove obsolete PC-card boot.flp hack. It was for making both PC-cardnyan2000-06-051-0/+22
| | | | | | | | | | | | | | boot.flp and plain boot.flp. - Clean up crunchgen related routine. - Add PC-98 support. TODO: o Documentation o Fix some messages for PC-98 o Decrease the size of fixit.flp to 1.2MB o I18N (See: http://www.jp.FreeBSD.org/BootAsia/index.html) No response from jkh
* Removed unused boot_crunch.confhosokawa1999-06-291-0/+0
|
* Add bits of PAO that are non-controversial.markm1999-06-171-17/+0
| | | | Submitted by: Tatsumi HOSOKAWA
* Add dhclient to mfsroot floppy - changes to sysinstall to follow.jkh1999-05-011-1/+2
|
* Try #2 with minigzip. Now that John Hay has made it behave more properlyjkh1998-09-291-4/+5
| | | | like gzip, we should be able to use it here.
* Remove support for floppy tape installs. I'm sorry, we're outtajkh1998-09-261-2/+2
| | | | | space, and it's either this or the DOS installs. I think that the DOS installs are somehow more important. :)
* Revert my change to use minigzip. Apparently, this thing is too "mini"jkh1998-09-221-5/+4
| | | | | | | to actually work in this application. Urk. This probably explains the problems people have been having with installing -snap. My bad. Will fix and upload a new beta snap to ftp.freebsd.org. Noted by: jhay
* Try using minigzip instead of gzip; can't hurt!jkh1998-09-191-4/+5
|
* Remove the necessity of -ldes and -lalias etc from release/Makefile.brian1998-01-171-3/+3
| | | | | | | | | | When building a release, RELEASE_CRUNCH is defined for a `make' of the objects required by the crunch of each program. The object list is still obtained in the same way, so you must make sure that all objects are built (empty if necessary) by this make. ppp/Makefile provides an example. Reviewed by: jkh
* Sigh - add libz to libs. Brian just keeps adding stuff to ppp. :)jkh1997-12-041-2/+2
|
* There appears to be no way around linking with DES for thejkh1997-09-301-2/+2
| | | | | | | moment - the compile-time options are useless since the object files are being used from ppp to build the crunched image, and the ppp objects include DES at this stage since they were last built that way to make the secure distribution. Hmmmm!
* Remove -ldes again; Brian's latest fix should deal with it.jkh1997-09-281-2/+2
|
* Add (ick) -ldes to the boot floppy so that ppp can link again.jkh1997-09-271-2/+2
| | | | | Not sure what this does to exportability but it's probably not good.
* Add -lalias for ppp now.jkh1997-05-241-2/+2
|
* Revert $FreeBSD$ to $Id$peter1997-02-221-1/+1
|
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-141-1/+1
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* Whoops, add -lftpiojkh1996-12-111-2/+2
|
* Add -lcrypt for new ppp changes.jkh1996-10-071-2/+2
|
* ppp now requires -lmdphk1996-02-081-2/+2
|
* Sheesh. I've added -lipx to the wrong crunch config file.joerg1996-01-031-2/+2
| | | | While i've been here, added the ``-s labels'' flag to vnconfig.
OpenPOWER on IntegriCloud