summaryrefslogtreecommitdiffstats
path: root/tools/builder_defaults.sh
Commit message (Collapse)AuthorAgeFilesLines
* Look for src and ports repo in the same git serverRenato Botelho2015-09-281-10/+4
|
* Set FreeBSD src and ports repo to use github or git.pfmechanics.com based on ↵Renato Botelho2015-09-281-2/+10
| | | | local clone of pfSense repo
* Consider numeric values after BETA and RCRenato Botelho2015-09-041-2/+2
|
* Improve base package versioning scheme to deal with -DEVELOPMENT, -ALPHA, ↵Renato Botelho2015-09-041-15/+24
| | | | -BETA and -RC
* Fix one more reverse checkRenato Botelho2015-09-041-1/+1
|
* Fix filenameRenato Botelho2015-09-041-1/+1
|
* Change core pkg dir to have packages under All/ and repo on ./Renato Botelho2015-09-031-1/+1
|
* Move snapshot related functions to builder_common.sh and leave ↵Renato Botelho2015-09-021-0/+8
| | | | build_snapshots.sh a simple script that update repo and call build.sh, without need to know anything about build.conf variables
* Rename directory where core packages are created to match other package repo ↵Renato Botelho2015-09-021-1/+1
| | | | path and make it easy to identify
* Fix reverse checkingRenato Botelho2015-09-021-1/+1
|
* Remove backtick accidentally leftRenato Botelho2015-09-011-1/+1
|
* Do not add timestamp for release buildsRenato Botelho2015-09-011-7/+19
|
* Simplify logic for snapshots datestringsRenato Botelho2015-09-011-25/+10
|
* Rename OVA_FIRST_PART_SIZE to OVA_FIRST_PART_SIZE_IN_GB to match other ↵Renato Botelho2015-09-011-1/+1
| | | | similar variables
* Math here is in bytes, not in blocks, use correct valueRenato Botelho2015-09-011-1/+1
|
* Remove 128 blocks (65536 bytes) from swap size, this is used by loader and ↵Renato Botelho2015-09-011-1/+3
| | | | boot and makes disk capacity to be respected
* First create a raw, then convert it to vmdk, and when convert, use -c to ↵Renato Botelho2015-08-311-0/+2
| | | | force it to respect size
* Fix PEODUCT_URL variable default assignmentRenato Botelho2015-08-311-1/+1
|
* Use modern pfSense.ovf template, remove unnecessary variables and use ↵Renato Botelho2015-08-311-9/+6
| | | | vmdktool to convert disk to a modern version
* Export MAKEOBJDIRPREFIX to builder/tmp and stop touching builder /usr/objRenato Botelho2015-08-281-0/+3
|
* Refactor OVA image build process using mkimg and makefsRenato Botelho2015-08-271-6/+7
|
* Move ovf template to templates/ovf, also rename variables accordinglyRenato Botelho2015-08-271-1/+1
|
* We do not need a separate path variable for ovf, use IMAGES_FINAL_DIR insteadRenato Botelho2015-08-271-1/+0
|
* Fix i386 kernel namesRenato Botelho2015-08-251-1/+1
|
* Do not set PKG_RSYNC_HOSTNAME automaticallyRenato Botelho2015-08-251-1/+0
|
* Remove pfSense definitions from default config and move check after ↵Renato Botelho2015-08-251-9/+9
| | | | PRODUCT_NAME is set
* Remove local from declarations out of functionsRenato Botelho2015-08-251-3/+3
|
* Fix reverse checkRenato Botelho2015-08-251-2/+2
|
* Detect unauthorized attempt to build pfSenseRenato Botelho2015-08-251-0/+7
|
* Replace hard coded rsync data by new variablesRenato Botelho2015-08-251-0/+5
|
* Define BUILDER_TOOLS and BUILDER_ROOT on caller scripts and add extra checksRenato Botelho2015-08-251-8/+14
|
* Reorder default definitions grouping by subjectRenato Botelho2015-08-251-71/+69
|
* Remove unused variable NANO_WITH_VGARenato Botelho2015-08-251-3/+0
|
* Make sure we do not add empty -j to make parameterRenato Botelho2015-08-251-8/+10
|
* Rename SRCDIR to FREEBSD_SRC_DIR and change default value to ↵Renato Botelho2015-08-251-4/+3
| | | | SCRATCHDIR/FreeBSD-src to make build process less intrusive
* Move stage dir and final iso dir to ./tmp to make build process less intrusiveRenato Botelho2015-08-251-5/+5
|
* Remove unused var BUILDER_HOST_TARGETRenato Botelho2015-08-251-1/+0
|
* Remove unnecessary IFS replacementRenato Botelho2015-08-251-6/+0
|
* Add quotes to default variables definitionsRenato Botelho2015-08-251-18/+18
|
* Detect current branch or tagRenato Botelho2015-08-251-1/+7
|
* _BUILDER_EPOCH is localRenato Botelho2015-08-251-1/+1
|
* Rename MAKEOBJDIRPREFIXFINAL to IMAGES_FINAL_DIRRenato Botelho2015-08-251-7/+7
|
* Read /etc/version and set PRODUCT_VERSIONRenato Botelho2015-08-251-1/+9
|
* Introduce PRODUCT_SRCRenato Botelho2015-08-251-0/+1
|
* Rename BUILDER_SCRIPTS to BUILDER_TOOLS that makes more sense on current ↵Renato Botelho2015-08-251-3/+3
| | | | infrastructure, also remove some cd calls
* Adapt tools scripts for pfSense main repo (round #1):Renato Botelho2015-08-251-13/+8
| | | | | | | | | | | | | | | | | | | | - Move SCRATCHDIR to ./tmp and add it to .gitignore - Move logs to ./logs and add it to .gitignore - Add build.conf to .gitignore - Rename BUILDER_TOOLS to BUILDER_ROOT that makes more sense in new infrastructure - Change some (cd DIR && git) to git -C DIR - Remove BASE_DIR - Remove TOOLS_DIR - Remove update_product_repository() - Remove TOOLS_*_COMMIT variables - Rename PRODUCT_CURRENT_COMMIT and PRODUCT_LAST_COMMIT to simply CURRENT_COMMIT and LAST_COMMIT - Remove all use of GIT_REPO_DIR, GIT_REPO_UTL and GIT_REPO_TOOLS - Change clone_to_staging_area() to clone ./src instad of ./ - Detect if script was called from / or /tools and set BUILDER_ROOT and BUILDER_SCRIPTS properly - Create SCRATCHDIR if it doesn't exist
* Change the way to detect BUILDER_SCRIPTS and BUILDER_TOOLS and make ↵Renato Botelho2015-08-251-8/+12
| | | | build.conf optional
* Import build scripts from pfSense-tools repoRenato Botelho2015-08-251-0/+299
OpenPOWER on IntegriCloud