summaryrefslogtreecommitdiffstats
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
* bmake does not have a -v option so remove itluigi2013-11-041-2/+2
|
* When building the textproc/docproj port, the ports-mgmt/pkg portgjb2013-11-041-0/+4
| | | | | | | | | | needs /var/run/ld-elf*.so.hints, which is not automatically created. Fix reldoc build by running the ldconfig(8) startup script in the chroot directory before starting the port build phase. MFC after: 3 days Sponsored by: The FreeBSD Foundation
* small cleanup for building picobsd-head without CLANG.luigi2013-11-011-11/+6
| | | | | | | | | | Note that svn 257268 gnu/usr.bin/binutils/ld/Makefile seems to break the "toolchain" target when building HEAD on RELENG_9, so until this is solved you may want to svn update -r 257267 gnu/usr.bin/binutils/ld/Makefile before building picobsd
* help running sshd on picobsdluigi2013-10-162-7/+9
|
* update the picobsd script to build with GCC and not CLANGluigi2013-10-161-2/+14
|
* Reduce disc1.iso image size by installing the userland withgjb2013-10-131-1/+2
| | | | | | | | the WITHOUT_PROFILE=1 option set, trimming 56MB from the image. Approved by: re (glebius) MFC after: 1 week Sponsored by: The FreeBSD Foundation
* Remove hash generation from release.sh, as it is run as part ofgjb2013-10-091-5/+0
| | | | | | | | | the 'install' target in the release/Makefile. MFC after: 3 days Submitted by: jhb Approved by: re (hrs) Sponsored by: The FreeBSD Foundation
* Remove BIND.des2013-09-301-2/+1
| | | | Approved by: re (gjb)
* Remove extra 'MAKE_FLAGS' line.gjb2013-09-191-1/+0
| | | | | | Submitted by: jhb Approved by: re (marius) Sponsored by: The FreeBSD Foundation
* CDs are not partitioned, so this is not correct syntax for loading fromnwhitehorn2013-09-171-1/+1
| | | | | | | ISO 9660. Omit the partition ID. Approved by: re (kib) MFC after: 2 weeks
* comment out some stale loader configurations.luigi2013-09-061-3/+5
|
* generate multiple host keys and do that unconditionallyluigi2013-09-061-9/+14
|
* r253616 nuked BINMAKE so we need to adapt to the new definitionluigi2013-09-061-0/+2
|
* Fix 'make release' on older hosts: use buildworld legacy utilities.will2013-08-271-0/+5
| | | | | | | | | | | Newer FreeBSD installs require an install(1) that supports the new flags. This adds ${MAKEOBJDIRPREFIX}${.CURDIR}/tmp/legacy/{bin,usr/{bin,sbin}} to the PATH while generating an mtree database for 'make release'. Note that the problem only exists here because mm-mtree.sh generates its own object tree to avoid mucking with the existing one, which results in a PATH containing legacy utility dirs that are empty.
* Remove get_rev_branch(), functionality exists in the release/Makefile.gjb2013-08-131-13/+0
| | | | Submitted by: hrs
* - Only set ARCH_FLAGS (TARGET/TARGET_ARCH) if specified, otherwisegjb2013-08-132-26/+19
| | | | | | | | | | | | allow the toolchain to detect the correct values. - Remove {SRC,DOC,PORT}REVISION variables, and use 'branch@rNNNNNN' as the {SRC,DOC,PORT}BRANCH variables. - Only set default KERNEL_FLAGS and WORLD_FLAGS make(1) jobs if the number of CPUs is greater than 1. Submitted by: hrs
* Fix the bootable CD:marcel2013-08-031-0/+2
| | | | | | | | | o We need wait a bit before attempting the root mount. The CD drives on HP machines (typical) go through the management controller so that it can be virtualized. In practice what this means is that it is slow to detect and attach. o Tell the kernel what to use as the root file system. The /etc/fstab trick doesn't work, because we're on the EFI-compatble file system.
* - Once we have shifted arguments thrice, base-bits-dir is $1 rather than $4.marius2013-07-261-5/+7
| | | | | | | | | | Introduce $BASEBITSDIR for clarity and in order to avoid repeating this mistake in the future. Fixing this ensures that we pick up the newly built boot code and loader native to the target, which is especially relevant when cross-building release images. - It is pointless to specify an endianess for ISO 9660 images so strip that. MFC after: 3 days
* For consistency with previous releases, name the cdrom installgjb2013-07-221-5/+6
| | | | | | | | | cd 'disc1.iso'. Discussed with: re@ team Approved by: kib (mentor) MFC after: 3 days X-MFC-To: stable/9 only
* Create memstick images with the '.img' filename extension.gjb2013-07-211-5/+6
| | | | | | | Requested by: many Approved by: kib (mentor) MFC after: 3 days X-MFC-To: stable/9 only
* - Add SRC_FORCE_CHECKOUT configuration option to force svn to checkoutgjb2013-07-052-18/+44
| | | | | | | | | | | | | | | | | | | | | the src/ tree into a directory that contains files/directories, such as a case where a custom kernel configuration file is specified. - Allow specification of multiple KERNCONFs to pass to 'make release'. - Move evaluation of NODOCS/NOPORTS earlier, and set based on how the release process expects these options to be evaluated. - Wrap KERNCONF specification in double quotes, and use 'eval' so multiple kernel configurations do not cause the build to fail in strange ways. - Set WITHOUT_X11 for the port build flags for the documentation toolchain build. Also run 'clean distclean' targets during port build. PR: 180192 Submitted by: Anes Mukhametov MFC after: 3 days Approved by: kib (mentor, implicit)
* Revert r252126, r252124, r252121.gjb2013-06-242-6/+9
| | | | Submitted by: hrs
* Trim copyright years, and add the current year.gjb2013-06-231-6/+1
|
* Rewrap after previous commit.gjb2013-06-231-2/+2
|
* Add a new macro, release.current.release, to denote the head/ branchgjb2013-06-232-2/+4
| | | | | | with the -RELEASE suffix. This fixes the incorrect text on the -CURRENT errata page from showing '10.0-CURRENT' followed by 'until 9.1-RELEASE is released.'
* Add missing copyright years.gjb2013-06-231-0/+3
|
* If MAKE_CONF and/or SRC_CONF are set and not character devices,gjb2013-06-221-0/+11
| | | | | | | | copy to chroot to use with release build. Submitted by: Garrett Cooper (original version) Approved by: kib (mentor) MFC after: 1 week
* Fix OSVERSION variable within PBUILD_FLAGS.gjb2013-06-161-1/+1
| | | | | | | | Submitted by: Garrett Cooper (in part) Approved by: kib (mentor) MFC After: 1 week X-MFC-With: r251652 X-MFC-To: stable/9 only
* Add new script to run release builds. The script is heavily based upongjb2013-06-122-0/+234
| | | | | | | | | | | | | | | the release/generate-release.sh script by nwhitehorn. This script can use optional configuration file to override defaults, making running multiple serialzied builds with different specific configurations or architecture-specific tunings quite easy. Sample overrideable options are included in the release.conf.sample file. Approved by: kib (mentor) MFC After: 2 weeks X-MFC-To: stable/9 only
* Add missing copyright notice.nwhitehorn2013-06-121-2/+27
|
* Convert old make variable modifiers :U and :L to bmake :tu and :tl.tijl2013-06-021-2/+2
| | | | Reviewed by: sjg
* Fix typo introduced in r251084.gjb2013-05-281-1/+1
| | | | | MFC after: 1 month X-MFC-With: r251084
* r245757 introduced warning output if update method is set to CVS_UPDATEgjb2013-05-281-12/+16
| | | | | | | | | | | or SUP_UPDATE. CVS exporter for head/ is turned off for nearly one month now. It is finally time to swing the ax at these update methods. Reviewed by: eadler MFC after: 1 month
* Fix build after doc/projects/xml-tools integration.hrs2013-05-1920-30/+30
|
* - Update the release notes to DocBook 4.5 XML to build with thegabor2013-05-17117-1378/+933
| | | | updated documentation tree
* use a plain 'make toolchain' to build toolchain, andluigi2013-05-051-11/+5
| | | | support parallel make on this stage.
* remove a leftover commentluigi2013-05-051-2/+0
|
* support for sshd (newer config file location)luigi2013-04-302-0/+1
|
* Note merge to head for sendmail 8.14.7.gshapiro2013-04-211-1/+1
|
* Fix a few typos.delphij2013-04-121-3/+3
| | | | | Reviewed by: gjb MFC after: 3 days
* - Update hardware notes to reflect that amd64 is no longer "young"[1]gjb2013-03-281-12/+6
| | | | | | - Bump copyright year Patched by: skreuzer
* the NO_PAM option has been finally removed in favor of WITHOUT_PAM.luigi2013-02-182-2/+2
|
* - Add CHECKSUM.* support in Makefile[1].hrs2013-02-038-208/+148
| | | | | | | | | | | | - Use ln -fs to create a symlink. - Remove pkgadd for docports. - Use WITHOUT_JADETEX=yes instead of WITH_JADETEX=no. - Add {WORLD,KERNEL}_FLAGS to [BTWK]MAKE. - Use makefs(8) and gpart(8) for sparc64 ISO image[2]. - Add publisher option to makefs(8)[2]. Based on work by: gjb[1] Discussed with: marius, nwhitehorn[2]
* Fix typo and simplify condition.nwhitehorn2013-01-211-2/+1
| | | | Submitted by: Christoph Mallon <christoph dot mallon at gmx dot de>
* More automated install support: if a script exists at /etc/installerconfig,nwhitehorn2013-01-211-0/+11
| | | | | point the installer there and then reboot without asking questions. This design subject to future change.
* Add now missing color.4th.marcel2013-01-121-0/+1
|
* Set WITHOUT_SVN=yes for textproc/docproj.hrs2013-01-121-1/+1
| | | | Submitted by: gjb
* ISO 9660 specification allows only "d-characters" and "a-characters" in thehrs2013-01-086-10/+10
| | | | | | Volume Descriptor (section 7.4). In short, upper-case alphanumeric + some symbols only. While the makefs utility automatically converts the characters, $LABEL should be consistent in the scripts.
* enable building picobsd with CC instead of CLANGluigi2012-12-231-0/+3
|
* A number of places in the source tree still reference cuad.* aftereadler2012-12-082-5/+5
| | | | | | | | | | | sio(4) was deprecated by uart(4). s/cuad/cuau/g/ PR: docs/171533 Reviewed by: imp Approved by: cperciva (implicit) MFC after: 3 weeks
OpenPOWER on IntegriCloud