summaryrefslogtreecommitdiffstats
path: root/release/sparc64
Commit message (Collapse)AuthorAgeFilesLines
* Farewall, sysinstall! You served us well for many years, but 10.0 is onenwhitehorn2011-10-031-47/+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).
* Use labels to find release media instead of hard-coded device paths. Thisnwhitehorn2011-03-221-0/+2
| | | | | | | | 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
* Fix making a release. The old libdialog was renamed to libodialog.nyan2011-01-141-1/+1
|
* Add gpart and glabel to the release CD mfsroot.marius2010-11-071-1/+4
|
* 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)
* Change yet another script to use /dev/mdX instead of /dev/mdXc (seemarius2009-03-241-2/+2
| | | | also r188438).
* 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-3/+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-1/+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
* 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
* 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
|
* Back out previous commit. Colin's fix to md makes the extra sleepkensmith2004-08-251-2/+0
| | | | here unnecessary. Thanks Colin. :-)
* Found another one. Why does mdconfig hate me? Add a "sleep 5" tokensmith2004-08-221-0/+2
| | | | | | | | | | | this script, without it sparc64 ISO building was consistently failing because the /dev/md0 device name was not present when the commands following mdconfig ran. Apparently there is the possibility of a delay between when mdconfig finishes and the names become visible in /dev. Yes, we could code this better than an unconditional call to "sleep 5" but IMHO we should fix the underlying problem instead. MFC after: 3 days
* Add a publisher variable with the URL for the FreeBSD Project, and putmurray2004-07-151-1/+2
| | | | | | 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.
* Put slattach(8), camcontrol(8), usbd(8), and usbdevs(8) onto theru2004-01-281-3/+3
| | | | | MFS root file system now that these architectures always use the GENERIC kernel for installs.
* - Use the correct boot/boot1 and boot/loader files.ru2003-08-111-4/+3
| | | | | | - Use the newfs command similar to that in doFS.sh. Reviewed by: jake, jhb
* Embed a simplistic version of the dokern.sh script directly intoru2003-07-301-6/+0
| | | | | | | | release/Makefile. Reviewed by: marcel The original patch also removed ia64/dokern.sh, but this was OBE.
* disklabel(8) is spelled bsdlabel(8) or sunlabel(8) these days.ru2003-05-171-1/+1
| | | | | | | | 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)
* tunefs now requires -lufs.ru2003-01-231-1/+1
|
* Revert previous untested commit. I installed an ultra60 this morningjhb2002-11-011-1/+1
| | | | using sysinstall from a release built via 'make release'.
* sparc64 does not yet support sysinstall(8).ru2002-11-011-1/+1
|
* Add beginnings of sparc64 release magic.jake2002-10-133-0/+105
OpenPOWER on IntegriCloud