initial commit
This commit is contained in:
133
extra/build.conf.sample
Normal file
133
extra/build.conf.sample
Normal file
@@ -0,0 +1,133 @@
|
||||
#####################################################
|
||||
## BUILD.CONF SAMPLE FILE ##
|
||||
#####################################################
|
||||
#
|
||||
# This file is used to define various variables/settings used by the build script.
|
||||
#
|
||||
|
||||
# This should be an alpha-numeric string less than 8 characters. No spaces, etc.
|
||||
# Used for metainfo
|
||||
DISTNAME="BDISK"
|
||||
|
||||
# This should be the lowercase format of ${DISTNAME} but it can be different.
|
||||
# Used for filenames etc. so no spaces
|
||||
UXNAME="bdisk"
|
||||
|
||||
# Used for "pretty-formatted" version of the project. It can contain spaces etc.
|
||||
PNAME="BDisk"
|
||||
|
||||
# Your/your organization's name
|
||||
DISTPUB="r00t^2"
|
||||
|
||||
# What's this distro used for?
|
||||
DISTDESC="j00 got 0wnz0r3d lulz."
|
||||
|
||||
# This should be the directory of the root of the project, e.g. the git's project/working directory.
|
||||
# This can be left as-is as long as you're running everything from the project directory root.
|
||||
BASEDIR="$(pwd)"
|
||||
|
||||
# This is the output directory of the ISO files when done building. This also should not be checked into git.
|
||||
ISODIR="${BASEDIR}/iso"
|
||||
|
||||
# Where source code is kept.
|
||||
SRCDIR="${BASEDIR}/src"
|
||||
|
||||
# Where we mount for chroots etc.
|
||||
MOUNTPT="/mnt/${UXNAME}"
|
||||
|
||||
# This is where an http webroot can be specified. Very useful for PXE setups
|
||||
# (the resulting kernel/initrd can be set to boot from HTTP initiated by PXE).
|
||||
# These files will be generated whether you use them or not, so it's recommended to keep this a sane path.
|
||||
HTTPDIR="${BASEDIR}/http"
|
||||
|
||||
# This is the root for where tftp files should be put for PXE booting.
|
||||
TFTPDIR="${BASEDIR}/tftpboot"
|
||||
|
||||
# This is the user and group your web daemon will use. The webroot is automatically chowned.
|
||||
HTTPUSR="http"
|
||||
HTTPGRP="http"
|
||||
|
||||
# This is the user and group that your tftp files should be chowned as.
|
||||
TFTPUSR="root"
|
||||
TFTPGRP="root"
|
||||
|
||||
# If set to "no", build separate ISOs for different hardware structures.
|
||||
# E.g. a separate i686 and x86_64 ISO. Note that it's TOTALLY supported to
|
||||
# build a dual-architecture ISO (and is the default), it's just that it tends to be over 700MB
|
||||
# (and thus doesn't fit on a normal CD. Still fits on DVDs and USBs though!)
|
||||
MULTIARCH="yes"
|
||||
|
||||
# set to "yes" to enable pushing new changes to a git repo/committing to a local repo
|
||||
GIT="no"
|
||||
|
||||
# If this is set, use rsync to copy the http and iso files. This is the rsync destination host.
|
||||
# This is *great* for iPXE.
|
||||
RSYNC_HOST=""
|
||||
|
||||
# Only used if RSYNC_HOST is set. The destination directory on the destination host to copy files to.
|
||||
RSYNC_DEST="${BASEDIR}"
|
||||
|
||||
# Where the log should go, and how it should be prefixed.
|
||||
# Note that the code appends, rather than replaces, logs- hence the timestamp in EPOCH time format.
|
||||
LOGFILE="${BASEDIR}/logs/$(date +%s)"
|
||||
|
||||
# What should the regular username be? (Automatically logged in on boot)
|
||||
REGUSR="${UXNAME}"
|
||||
|
||||
# Do we have enough horsepower on the build system to jack up the resources we throw at building?
|
||||
# Enabling this will give absolute CPU preference to building the kernels and do make-time
|
||||
# enhancements/optimizations (i.e. use the maximum number of CPU cores detected).
|
||||
# I wouldn't enable this unless you have a dedicated build-box that isn't running much else.
|
||||
I_AM_A_RACECAR="no"
|
||||
|
||||
|
||||
# ________________________________________________________________________________________________
|
||||
## RECOMMENDED DEFALTS ##
|
||||
# The following shoult not be changed unless you are ABSOLUTELY, 100% SURE and COMPLETELY POSITIVE
|
||||
# about what you are doing!!!
|
||||
|
||||
# Legacy support.
|
||||
ROOTDIR="${BASEDIR}"
|
||||
|
||||
# This used to be defined statically (e.g. CHROOTDIR="${ROOTDIR}/chroot"),
|
||||
# but is now dynamically appended. Please don't alter this unless you renamed the chroot directory paths.
|
||||
CHROOTDIR="${BASEDIR}/"
|
||||
CHROOTDIR32="${CHROOTDIR}root.i686"
|
||||
CHROOTDIR64="${CHROOTDIR}root.x86_64"
|
||||
|
||||
# This is a directory we use for staging. It definitely should not be checked into git.
|
||||
# It used to be defined statically (e.g. BUILDDIR="${ROOTDIR}/build"),
|
||||
# but is now dynamically appended. Please don't alter this unless you renamed the chroot directory paths.
|
||||
BUILDDIR="${BASEDIR}/build"
|
||||
|
||||
# More staging.
|
||||
TEMPDIR="${ROOTDIR}/temp"
|
||||
|
||||
# This is where we stage the boot files.
|
||||
ARCHBOOT="${TEMPDIR}/${DISTNAME}"
|
||||
|
||||
# Lockfile for checking for concurrent/failed builds
|
||||
LOCKFILE="${ROOTDIR}/lockfile.lck"
|
||||
|
||||
|
||||
## VARIABLE PROCESSING ##
|
||||
# In order to make cleaner code, we need to make sure we can standardize some input.
|
||||
# Don't even think about touching these unless you know what you're doing.
|
||||
|
||||
# MULTIARCH
|
||||
if [ -z "${MULTIARCH}" ];
|
||||
then
|
||||
MULTIARCH="y"
|
||||
fi
|
||||
|
||||
MULTIARCH=${MULTIARCH:0:1}
|
||||
MULTIARCH=$(echo ${MULTIARCH} | tr [[:upper:]] [[:lower:]])
|
||||
|
||||
# OPTIMIZATIONS?
|
||||
if [ -z "${I_AM_A_RACECAR}" ];
|
||||
then
|
||||
I_AM_A_RACECAR="n"
|
||||
fi
|
||||
|
||||
I_AM_A_RACECAR=${I_AM_A_RACECAR:0:1}
|
||||
I_AM_A_RACECAR=$(echo ${I_AM_A_RACECAR} | tr [[:upper:]] [[:lower:]])
|
||||
Reference in New Issue
Block a user