summaryrefslogtreecommitdiffstats
path: root/release
Commit message (Collapse)AuthorAgeFilesLines
* 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
* Prevent including .zfs snapshot directories in the src.txzgjb2012-11-111-1/+1
| | | | | | | | | | distribution. This can happen if the src/ tree checkout is within its own ZFS dataset, and the 'snapdir' ZFS property is set to 'visible.' Approved by: hrs MFC after: 3 days X-MFC-To: stable/9 only
* Belatedly (by many years!) bump the version numbers in the src/-sidegjb2012-11-091-6/+6
| | | | | | documentation pages. Saddened by: this file
* Exclude potential circular symlinkemaste2012-10-151-1/+1
| | | | | This does not occur with normal release builds but can happen when reusing these release parts for other purposes.
* Exclude potential circular symlink when creating src tarball.emaste2012-10-111-1/+1
| | | | | | | Normal release builds are not affected by this but it can happen if using these release bits against a work tree. Sponsored by: ADARA Networks
* - Rename .sgml files to .xml to track the recent doc changesgabor2012-10-01236-471/+476
| | | | MFC after: 1 day
* - Allow cross-architecture builds with 'generate-release.sh', whichgjb2012-09-261-8/+109
| | | | | | | | | | | | | | | | | | is set by specifying '-a <arch>'. (Only supported for i386 on amd64 and powerpc on powerpc64 currently). - Change how textproc/docproj is installed: o Attempt to install from pkg(8); o Fall back to pkg_add(1) if pkg(8) installation is not successful; o Fall back to installing from ports as last resort. - Ensure the script is run by root[1]. - Get OSVERSION from param.h[1]. Provided by: glebius [1] Reviewed by: nwhitehorn, kensmith Approved by: kensmith MFC After: 2 weeks X-Needs-MFC: r240586, r240587, r240588
* Update usage() in comment section.gjb2012-09-171-6/+2
| | | | | | | Remove CVS_* variables in comments. MFC after: 1 week X-MFC-With: r240586
* Update generate-release.sh script:gjb2012-09-171-27/+14
| | | | | | | | | | | | - Use svn for ports and doc trees - When installing a binary textproc/docproj package, switch pkg_add(1) to pkg(8) [1] Reviewed by: nwhitehorn Approved by: nwhitehorn Enhanced by: glebius [1] MFC After: 1 week X-MFC-To: 9-only
* - Fix build of French release notes with the XMLified doc treegabor2012-09-1420-263/+202
|
* - Fix build of the German release notes with the XMLified doc treegabor2012-09-1420-290/+204
|
* Revert previous commit...gjb2012-09-141-2/+2
| | | | Pointyhat to: gjb (myself)
* Fix man2hwnotes.pl script, which should fix the RELNOTES build.gjb2012-09-141-2/+2
|
* - Make the release notes build with the XMLified doc treegabor2012-09-144-32/+33
|
OpenPOWER on IntegriCloud