Compare commits
43 Commits
v1.52
...
python_rew
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6d611da615 | ||
| a75cff05b7 | |||
| 5ea464fac9 | |||
| 8726f63c7c | |||
| 673a54ef2e | |||
| f4397354a9 | |||
| ac6d269a64 | |||
| 59bec45449 | |||
| 164032088a | |||
| 2870866232 | |||
| b2c9fc731a | |||
| 0e121285bf | |||
| bd11e3e9ec | |||
| cbde8105c1 | |||
| 6f33687230 | |||
| 24409fe287 | |||
| 7bf72d3987 | |||
| 559e989e1b | |||
| 7ffa278b19 | |||
| 65200c2a00 | |||
| 79a87e4789 | |||
| e2a5ef10eb | |||
| 21dccef17c | |||
| c6f5a880c5 | |||
| fa5a962552 | |||
| 0036055330 | |||
| 71e9d7be5d | |||
| 8b351731bd | |||
| c6dd840e43 | |||
| b36ef29900 | |||
| f4c8f45ee3 | |||
| 342d9894f5 | |||
| 4403901d8f | |||
| fc0a1ec94a | |||
| eca04c2140 | |||
| 6c4634a11d | |||
| 7fb7871daf | |||
| 43cd3ab4b9 | |||
| ef664d39b9 | |||
| 411a544d4b | |||
| 7fb6e77c32 | |||
| 0153d38a33 | |||
| 52cb0ea321 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -31,3 +31,6 @@ extra/pre-build.d/etc/openvpn/client.conf
|
||||
overlay/etc/ssh/*
|
||||
overlay/home/bdisk
|
||||
overlay/etc/systemd/system/multi-user.target.wants/openvpn@client.service
|
||||
src/ipxe_local/ssl/keys
|
||||
src/ipxe_local/ssl/crts
|
||||
src/ipxe_local/ssl/txt
|
||||
|
||||
63
TODO
63
TODO
@@ -1,62 +1 @@
|
||||
## General ##
|
||||
|
||||
-include benchmarking
|
||||
-- http://sourceforge.net/projects/unixbench/
|
||||
-- https://code.google.com/p/byte-unixbench/
|
||||
-- https://github.com/akopytov/sysbench
|
||||
-- (http://blog.due.io/2014/linode-digitalocean-and-vultr-comparison/ etc.)
|
||||
-package in AUR
|
||||
|
||||
|
||||
## NETWORKING ##
|
||||
|
||||
-shorewall/some other firewall?
|
||||
-WISH: locked-down VPN?
|
||||
-autodetection/configuration of network. DHCP is currently running by default, but does it need to support IPv6? if so, how would the user configure their network?
|
||||
-SECURE SSH: https://stribika.github.io/2015/01/04/secure-secure-shell.html
|
||||
-DISABLE NETWORKMANAGER AND "fi.w1.wpa_supplicant1"??? keeps spawning wpa_supplicant (and thusly killing networking proper)
|
||||
-for netboot, custom user agent (should be defined by build.conf)
|
||||
--iPXE's curl
|
||||
--initrd's curl
|
||||
|
||||
|
||||
## Building ##
|
||||
|
||||
-WISH: Better logging[0]
|
||||
-use manual chrooting functions ONLY if distro not detected as arch. if /usr/bin/systemd-nspawn exists, use that instead
|
||||
--does arch-chroot work across all distros? see https://wiki.archlinux.org/index.php/Install_bundled_32-bit_system_in_Arch64 and https://wiki.archlinux.org/index.php/Chroot
|
||||
--i think this might be unnecessary. testing across other major distros is necessary, but i think i can just use the chroot'd arch-chroot
|
||||
-tweak build.conf (and build.conf.sample) to source the pwd and set as BASEDIR ***if*** the project resources are present in pwd, otherwise throw warning
|
||||
--this is half-done;PWD is currently used by default.
|
||||
-does gummiboot? loader? wtfever it's called support splash backgrounds? can i implement that differently somehow?
|
||||
-strip out/remove unnecessary and orphan packages (e.g. gcc, make, automake, etc.)
|
||||
-incorporate iPXE tweaks:
|
||||
--http://ipxe.org/crypto
|
||||
--http://ipxe.org/cmd/imgtrust
|
||||
--http://ipxe.org/cmd/imgverify
|
||||
--enable use of custom CA/self-signed certs for HTTPS etc.
|
||||
-X-platform
|
||||
--what distros are supported?
|
||||
--automatically install what we need for buildtime
|
||||
--hardcode list of runtime dependencies (e.g. openssh, vim, etc.)
|
||||
|
||||
## Split into Separate Tools CD ##
|
||||
|
||||
-include WinMTR, build Mac OS X MTR for dist/tools on CD
|
||||
-include pre-compiled LibreCrypt for opening LUKS parts on Windows (https://github.com/t-d-k/LibreCrypt)
|
||||
--curl -s https://raw.githubusercontent.com/t-d-k/LibreCrypt/master/README.md | egrep 'InstallLibreCrypt_v[A-Za-z0-9\.]*.exe' | cut -f2 -d'"'
|
||||
|
||||
|
||||
__________________________________________________________
|
||||
FOOTNOTES:
|
||||
|
||||
|
||||
[0] I'd really like to implement the following in build.conf; like:
|
||||
http://forums.fedoraforum.org/showthread.php?t=275743
|
||||
# The following is the setting for "verbosity". A more accurate way of saying it is how output should be handled.
|
||||
# Note that for it to be properly parsed, it MUST be in the form of a linear array (e.g. VAR=(1 2 3) ).
|
||||
# '| tee -a ${BASEDIR}/logs/${FUNCNAME}.$(date +%s)' means "display output for STDOUT and STDERR, and also log STDOUT to logs/<function name>.EPOCH_TIME"
|
||||
# '2>&1 /dev/null' means "hide STDOUT and STDERR, no logging"
|
||||
# '>> ${BASEDIR}/logs/${FUNCNAME}.$(date +%s) 2>&1' means "log both STDOUT and STDERR to logs/<function name>.EPOCH_TIME, no output"
|
||||
# '>> ${BASEDIR}/logs/${FUNCNAME}.$(date +%s)' means "log STDOUT to logs/<function name>.EPOCH_TIME, display (but don't log) STDERR)"
|
||||
# '' means "no logging; display both STDOUT and STDERR"
|
||||
- maybe use ZConfig? https://pypi.python.org/pypi/ZConfig
|
||||
|
||||
61
bdisk/base.py
Executable file
61
bdisk/base.py
Executable file
@@ -0,0 +1,61 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import re
|
||||
import hashlib
|
||||
import gnupg
|
||||
from urllib.request import urlopen
|
||||
|
||||
def download_tarball(arch, dlpath):
|
||||
# arch - should be i686 or x86_64
|
||||
# returns path/filename e.g. /some/path/to/file.tar.gz
|
||||
# we use .gnupg since we'll need it later.
|
||||
try:
|
||||
os.makedirs(dlpath + '/.gnupg')
|
||||
except OSError as exception:
|
||||
if exception.errno != errno.EEXIST:
|
||||
raise
|
||||
#mirror = 'http://mirrors.kernel.org/archlinux'
|
||||
mirror = 'https://mirror.us.leaseweb.net/archlinux'
|
||||
rlsdir = mirror + '/iso/latest'
|
||||
sha_in = urlopen(rlsdir + '/sha1sums.txt')
|
||||
sha1sums = sha_in.read()
|
||||
sha_in.close()
|
||||
sha1_list = sha1sums.decode("utf-8")
|
||||
sha_list = list(filter(None, sha1_list.split('\n')))
|
||||
sha_dict = {x.split()[1]: x.split()[0] for x in sha_list}
|
||||
pattern = re.compile('^archlinux-bootstrap-[0-9]{4}\.[0-9]{2}\.[0-9]{2}-' + arch + '\.tar\.gz$')
|
||||
tarball = [filename.group(0) for l in list(sha_dict.keys()) for filename in [pattern.search(l)] if filename][0]
|
||||
sha1 = sha_dict[tarball]
|
||||
# all that lousy work just to get a sha1 sum. okay. so.
|
||||
if os.path.isfile(dlpath + '/latest.' + arch + '.tar.gz'):
|
||||
pass
|
||||
else:
|
||||
# fetch the tarball...
|
||||
print("Fetching the tarball for {0} architecture, please wait...".format(arch))
|
||||
tarball_dl = urlopen(rlsdir + tarball)
|
||||
with open(dlpath + '/latest.' + arch + '.tar.gz', 'wb') as f:
|
||||
f.write(tarball_dl)
|
||||
tarball_dl.close()
|
||||
tarball_hash = hashlib.sha1(open(dlpath + '/latest.' + arch + '.tar.gz', 'rb').read()).hexdigest()
|
||||
if tarball_hash != sha1:
|
||||
exit("There was a failure fetching the tarball and the wrong version exists on the filesystem.\nPlease try again later.")
|
||||
else:
|
||||
# okay, so the sha1 matches. let's verify the signature.
|
||||
# we don't want to futz with the users normal gpg.
|
||||
gpg = gnupg.GPG(gnupghome=dlpath + '/.gnupg')
|
||||
input_data = gpg.gen_key_input(name_email='tempuser@nodomain.tld',passphrase='placeholder_passphrase')
|
||||
key = gpg.gen_key(input_data)
|
||||
keyid = '7F2D434B9741E8AC'
|
||||
gpg_sig = tarball + '.sig'
|
||||
sig_dl = urlopen(rlsdir + gpg_sig)
|
||||
with open(dlpath + '/latest.' + arch + '.tar.gz.sig', 'wb') as f:
|
||||
f.write(sig_dl)
|
||||
sig_dl.close()
|
||||
sig = dlpath + '/latest.' + arch + '.tar.gz.sig'
|
||||
gpg.verify_file(dlpath + '/latest.' + arch + '.tar.gz', sig_file = sig)
|
||||
|
||||
|
||||
return(sha1sum)
|
||||
|
||||
print(download_tarball('x86_64'))
|
||||
16
bdisk/host.py
Executable file
16
bdisk/host.py
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env python3
|
||||
|
||||
import os
|
||||
import sys
|
||||
import platform
|
||||
|
||||
def getOS():
|
||||
# Returns one of: SuSE, debian, fedora, redhat, centos, mandrake,
|
||||
# mandriva, rocks, slackware, yellowdog, gentoo, UnitedLinux,
|
||||
# turbolinux, arch, mageia
|
||||
distro = list(platform.linux_distribution())[0].lower()
|
||||
return(distro)
|
||||
|
||||
def getBits():
|
||||
bits = list(platform.architecture())[0]
|
||||
return(bits)
|
||||
197
bin/build.sh
197
bin/build.sh
@@ -1,197 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# A lot of snippets, inspiration, and some config directives are from https://projects.archlinux.org/archiso.git/ / the ArchLinux ISO layout.
|
||||
# Many thanks and praise are deserved.
|
||||
|
||||
|
||||
#DEBUG
|
||||
#set -x
|
||||
|
||||
## Import settings
|
||||
if [ -f "build.conf" ];
|
||||
then
|
||||
echo "Now importing settings/variables."
|
||||
set -e
|
||||
source extra/build.conf.sample
|
||||
source build.conf
|
||||
set +e
|
||||
else
|
||||
echo "You have not configured a build.conf OR you are not running from the project's root directory (the git repository's working directory).
|
||||
If you are indeed in the correct directory, you may copy the sample at extra/build.conf.sample,
|
||||
edit it for appropriate values, and copy to <PROJECT ROOT>/build.conf"
|
||||
echo 'For now, though, I am using the defaults. If the build fails complaining about a'
|
||||
echo 'missing http user, you need to specify a custom/distro-pertinent one.'
|
||||
cp extra/build.conf.sample build.conf
|
||||
set -e
|
||||
source extra/build.conf.sample
|
||||
set +e
|
||||
fi
|
||||
|
||||
|
||||
## PREPARATION ##
|
||||
|
||||
# safemode browsing enabled. lolz
|
||||
set -e
|
||||
|
||||
# do some basic error checking
|
||||
ARCH=$(uname -m)
|
||||
|
||||
if [[ ${EUID} -ne 0 ]];
|
||||
then
|
||||
#echo "This script must be run as root" 1>&2
|
||||
echo "This script must be run as root."
|
||||
exit 1
|
||||
elif [ -f ${LOCKFILE} ];
|
||||
then
|
||||
echo "Script already running, stale lockfile present, or an error occurred during last run."
|
||||
echo "Please clear ${LOCKFILE} by hand before attempting another build."
|
||||
echo -n "Timestamp of lockfile is: "
|
||||
ls -l ${LOCKFILE} | awk '{print $6" "$7" "$8}'
|
||||
exit 1
|
||||
elif [[ "$(uname -s)" != "Linux" ]];
|
||||
then
|
||||
echo "ERROR: This script is only supported on GNU/Linux."
|
||||
exit 1
|
||||
elif [[ "${ARCH}" != 'x86_64' ]];
|
||||
then
|
||||
echo "Your hardware architecture, ${ARCH}, is not supported. Only x86_64 is supported."
|
||||
echo "Dying now."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Checking directory structure and creating lockfile at ${LOCKFILE}..."
|
||||
touch ${LOCKFILE}
|
||||
|
||||
# make sure the paths exist and then check for an existing chroot session
|
||||
for i in ${BASEDIR} ${CHROOTDIR32} ${CHROOTDIR64} ${BUILDDIR}32 ${BUILDDIR}64 ${ISODIR} ${MOUNTPT} ${TEMPDIR}/{${UXNAME},${DISTNAME}} ${ARCHBOOT} ${SRCDIR} ${TFTPDIR} ${HTTPDIR}/${DISTNAME} ${BASEDIR}/logs;
|
||||
do
|
||||
if [ ! -d ${i} ];
|
||||
then
|
||||
#echo "${i} does not exist - creating."
|
||||
mkdir -p ${i}
|
||||
fi
|
||||
done
|
||||
|
||||
if [ ! -f "./BUILDNO" ];
|
||||
then
|
||||
echo '0' > ./BUILDNO
|
||||
fi
|
||||
|
||||
CHROOTDIR_GLOB="${CHROOTDIR}"
|
||||
BUILDDIR_GLOB="${BUILDDIR}"
|
||||
|
||||
# Set the version.
|
||||
VERSION="$(git describe --abbrev=0 --tags)-$(git rev-parse --short --verify HEAD)"
|
||||
BUILD="$(cat BUILDNO)"
|
||||
BUILD="$(expr ${BUILD} + 1)"
|
||||
echo ${BUILD} > ./BUILDNO
|
||||
BUILDTIME="$(date)"
|
||||
BUILD_MACHINE="$(hostname -f)"
|
||||
#BUILD_USERNAME="${SUDO_USER}"
|
||||
#BUILD_USERNAME="$(who am i | awk '{print $1}')"
|
||||
set +e ; logname > /dev/null 2>&1
|
||||
if [[ "${?}" == "0" ]];
|
||||
then
|
||||
BUILD_USERNAME="$(logname)"
|
||||
else
|
||||
BUILD_USERNAME="$(whoami)"
|
||||
fi
|
||||
set -e
|
||||
USERNAME_REAL="$(grep ${BUILD_USERNAME} /etc/passwd | cut -f5 -d':')"
|
||||
|
||||
cat > VERSION_INFO.txt << EOF
|
||||
Version: ${VERSION}
|
||||
Build: ${BUILD}
|
||||
Time: ${BUILDTIME}
|
||||
Machine: ${BUILD_MACHINE}
|
||||
User: ${BUILD_USERNAME} (${USERNAME_REAL})
|
||||
EOF
|
||||
|
||||
## FUNCTIONS ##
|
||||
|
||||
source lib/02-im_batman.func.sh
|
||||
source lib/03-holla_atcha_boi.func.sh
|
||||
source lib/04-release_me.func.sh
|
||||
source lib/05-facehugger.func.sh
|
||||
source lib/06-chroot_wrapper.func.sh
|
||||
source lib/07-jenny_craig.func.sh
|
||||
source lib/08-centos_is_stupid.func.sh
|
||||
source lib/09-will_it_blend.func.sh
|
||||
source lib/10-stuffy.func.sh
|
||||
source lib/11-yo_dj.func.sh
|
||||
source lib/12-mentos.func.sh
|
||||
|
||||
## The Business-End(TM) ##
|
||||
|
||||
CHROOTDIR="${CHROOTDIR_GLOB}"
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
holla_atcha_boi
|
||||
|
||||
rm -rf ${TEMPDIR}/*
|
||||
release_me 64 > /dev/null 2>&1
|
||||
release_me 32 > /dev/null 2>&1
|
||||
|
||||
# do we need to perform any updates?
|
||||
if [[ -f "${CHROOTDIR}root.x86_64/root/chroot" || -f "${CHROOTDIR}root.i686/root/chroot" ]];
|
||||
then
|
||||
chroot_wrapper 64
|
||||
chroot_wrapper 32
|
||||
centos_is_stupid
|
||||
will_it_blend 64
|
||||
will_it_blend 32
|
||||
yo_dj
|
||||
fi
|
||||
|
||||
if [[ ${1} == "update" ]];
|
||||
then
|
||||
mentos
|
||||
centos_is_stupid
|
||||
will_it_blend 32
|
||||
will_it_blend 64
|
||||
yo_dj
|
||||
fi
|
||||
|
||||
# or do we want to just chroot in?
|
||||
if [[ ${1} == "chroot" ]];
|
||||
then
|
||||
chroot_wrapper 64
|
||||
chroot_wrapper 32
|
||||
rm -f ${LOCKFILE}
|
||||
exit 0
|
||||
fi
|
||||
|
||||
# or are we just building?
|
||||
if [[ ${1} == "build" ]] || [ -z ${1} ] || [[ ${1} == "all" ]];
|
||||
then
|
||||
if [[ "${MULTIARCH}" == "y" ]];
|
||||
then
|
||||
centos_is_stupid
|
||||
will_it_blend 64
|
||||
will_it_blend 32
|
||||
yo_dj any
|
||||
else
|
||||
centos_is_stupid
|
||||
will_it_blend 64
|
||||
yo_dj 64
|
||||
centos_is_stupid
|
||||
will_it_blend 32
|
||||
yo_dj 32
|
||||
fi
|
||||
fi
|
||||
|
||||
# clean up, clean up, everybody, everywhere
|
||||
echo "Cleaning up some stuff leftover from the build..."
|
||||
#rm -rf ${TEMPDIR}/*
|
||||
#rm -rf ${SRCDIR}/*
|
||||
cd ${BASEDIR}
|
||||
|
||||
if [[ "${GIT}" == "yes" ]];
|
||||
then
|
||||
echo "Committing changes to git..."
|
||||
git add --all .
|
||||
git commit -m "post-build at $(date)"
|
||||
fi
|
||||
|
||||
# yay! we're done!
|
||||
rm -f ${LOCKFILE}
|
||||
echo "Finished successfully!"
|
||||
84
bin/clean.sh
84
bin/clean.sh
@@ -1,84 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
## Import settings
|
||||
if [ -f "build.conf" ];
|
||||
then
|
||||
echo "Now importing settings/variables."
|
||||
set -e
|
||||
source extra/build.conf.sample
|
||||
source build.conf
|
||||
set +e
|
||||
else
|
||||
echo "You have not configured a build.conf OR you are not running from the project's root directory (the git repository's working directory).
|
||||
echo "If you are indeed in the correct directory, you may copy the sample at ../extra/build.conf.sample,
|
||||
echo "edit it for appropriate values, and copy to <PROJECT ROOT>/build.conf"
|
||||
echo
|
||||
echo 'This error is fatal. Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ${EUID} -ne 0 ]];
|
||||
then
|
||||
#echo "This script must be run as root" 1>&2
|
||||
echo "This script must be run as root."
|
||||
echo
|
||||
exit 1
|
||||
elif [ -f ${LOCKFILE} ];
|
||||
then
|
||||
echo "Script already running, stale lockfile present, or an error occurred during last run."
|
||||
echo "Please clear ${LOCKFILE} by hand before attempting another build."
|
||||
echo -n "Timestamp of lockfile is: "
|
||||
ls -l ${LOCKFILE} | awk '{print $6" "$7" "$8}'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Creating lockfile at ${LOCKFILE}..."
|
||||
touch ${LOCKFILE}
|
||||
|
||||
if [[ "${1}" == "all" ]];
|
||||
then
|
||||
DIRS="${CHROOTDIR}root.i686 ${CHROOTDIR}root.x86_64 ${BUILDDIR}32 ${BUILDDIR}64 ${ISODIR} ${TEMPDIR} ${ARCHBOOT} ${SRCDIR} ${TFTPDIR} ${HTTPDIR} ${BASEDIR}/logs"
|
||||
FILES="latest.32.tar.gz latest.64.tar.gz"
|
||||
elif [[ "${1}" == "chroot" ]];
|
||||
then
|
||||
DIRS="${CHROOTDIR}root.i686 ${CHROOTDIR}root.x86_64 ${BUILDDIR}32 ${BUILDDIR}64 ${ISODIR} ${TEMPDIR} ${ARCHBOOT} ${SRCDIR} ${TFTPDIR} ${HTTPDIR}"
|
||||
FILES=""
|
||||
elif [[ "${1}" == "squash" ]];
|
||||
then
|
||||
DIRS="${BUILDDIR}32 ${BUILDDIR}64 ${ISODIR} ${TEMPDIR} ${ARCHBOOT} ${SRCDIR} ${TFTPDIR} ${HTTPDIR}"
|
||||
FILES=""
|
||||
else
|
||||
DIRS="${ISODIR} ${TEMPDIR} ${ARCHBOOT} ${SRCDIR} ${TFTPDIR} ${HTTPDIR}"
|
||||
FILES=""
|
||||
fi
|
||||
|
||||
echo "I will be deleting the contents of: ${DIRS}"
|
||||
echo "I will be deleting the files: ${FILES}"
|
||||
read -p 'Do you wish to continue? [Y/n] ' CONFIRM
|
||||
|
||||
if [ -z "${CONFIRM}" ];
|
||||
then
|
||||
CONFIRM="y"
|
||||
fi
|
||||
|
||||
CONFIRM=${CONFIRM:0:1}
|
||||
CONFIRM=$(echo ${CONFIRM} | tr [[:upper:]] [[:lower:]])
|
||||
|
||||
if [[ "${CONFIRM}" != "y" ]];
|
||||
then
|
||||
echo 'Exiting.'
|
||||
exit 0
|
||||
fi
|
||||
|
||||
|
||||
for i in "${DIRS}";
|
||||
do
|
||||
rm -rf ${i}/*
|
||||
done
|
||||
|
||||
for i in "${FILES}";
|
||||
do
|
||||
rm -f ${i}
|
||||
done
|
||||
|
||||
rm -f ${LOCKFILE}
|
||||
@@ -1,6 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
curl -s -o /tmp/mirrorlist.tmp "https://www.archlinux.org/mirrorlist/?country=US&protocol=http&protocol=https&ip_version=4&use_mirror_status=on"
|
||||
sed -i -e 's/^#Server/Server/' /tmp/mirrorlist.tmp
|
||||
rankmirrors -n 6 /tmp/mirrorlist.tmp > extra/mirrorlist
|
||||
sed -i -e '/^##/d' extra/mirrorlist
|
||||
0
default.cfg
Normal file
0
default.cfg
Normal file
33
docs/FAQ
Normal file
33
docs/FAQ
Normal file
@@ -0,0 +1,33 @@
|
||||
BDisk Frequently Asked(/Unasked) Questions
|
||||
|
||||
|
||||
|
||||
0.) Why does it take so long to build?
|
||||
1.) Why is the generated ISO file so big?
|
||||
2.) How do I find the version/release/etc. number of an ISO?
|
||||
|
||||
|
||||
=========================================================
|
||||
|
||||
|
||||
|
||||
0.) WHY DOES IT TAKE SO LONG TO BUILD?
|
||||
A: This typically occurs when you're building from within a LiveCD/LiveUSB situation, in a VM/container/etc., or on a headless server.
|
||||
If this is the case, you may run into what appears to be "stalling", especially while keys are generating for the chroots.
|
||||
Thankfully, there is an easy fix. You can install the "haveged"(http://www.issihosts.com/haveged/) software and run it. This will
|
||||
show an immediate and non-negligible improvement for the above contexts. If you have extra power to throw at it (or are using a dedicated build box)
|
||||
as well, I recommend enabling I_AM_A_RACECAR in your build.conf. BDisk will then be more aggressive with its resource consumption.
|
||||
|
||||
|
||||
1.) WHY IS THE GENERATED ISO FILE SO BIG?
|
||||
A: You may have enabled a LOT of packages in extra/packages.(32|64|both). Or you're using the default set of packages, which tries to include a LOT
|
||||
of different (and in some cases, redundant) packages for widespread utilization and usage. In addition, keep in mind that BDisk builds a single ISO
|
||||
that can be used on both i686 architectures AND full x86_64 architectures ("AMD64" as you may sometimes see it referenced). Because it doesn't cheat
|
||||
and just use a 64-bit kernel with a 32-bit userland, it needs two different squash images on each ISO- one for 32-bit userland and one for 64-bit
|
||||
userland.
|
||||
|
||||
2.) HOW DO I FIND THE VERSION/RELEASE/ETC. NUMBER OF AN ISO?
|
||||
A: This can be found in a multitude of places. The full-size ISO file (iso/<distname>-<git tag>-<git rev number>-(32|64|any).iso) should have the
|
||||
version right in the file name. If you want more detailed information (or perhaps you renamed the file), you can mount the ISO as loopback in GNU/Linux,
|
||||
*BSD, or Mac OS X and check /path/to/mounted/iso/VERSION_INTO.txt. Lastly, within the runtime itself (especially handy if booting via iPXE), you can
|
||||
check /root/VERSION_INFO.txt within the running live environment.
|
||||
1
docs/LICENSE
Symbolic link
1
docs/LICENSE
Symbolic link
@@ -0,0 +1 @@
|
||||
COPYING
|
||||
68
docs/TODO
Normal file
68
docs/TODO
Normal file
@@ -0,0 +1,68 @@
|
||||
## General ##
|
||||
|
||||
-include benchmarking
|
||||
-- http://sourceforge.net/projects/unixbench/
|
||||
-- https://code.google.com/p/byte-unixbench/
|
||||
-- https://github.com/akopytov/sysbench
|
||||
-- (http://blog.due.io/2014/linode-digitalocean-and-vultr-comparison/ etc.)
|
||||
-package in AUR
|
||||
-base rewrite in python. pyalpm may come in handy here.
|
||||
|
||||
|
||||
## NETWORKING ##
|
||||
|
||||
-shorewall/some other firewall?
|
||||
-WISH: locked-down VPN?
|
||||
-autodetection/configuration of network. DHCP is currently running by default, but does it need to support IPv6? if so, how would the user configure their network?
|
||||
-SECURE SSH: https://stribika.github.io/2015/01/04/secure-secure-shell.html
|
||||
-DISABLE NETWORKMANAGER AND "fi.w1.wpa_supplicant1"??? keeps spawning wpa_supplicant (and thusly killing networking proper)
|
||||
-for netboot, custom user agent (should be defined by build.conf)
|
||||
--iPXE's curl
|
||||
--initrd's curl
|
||||
|
||||
|
||||
## Building ##
|
||||
|
||||
-GUMMIBOOT IS GONE FROM THE REPOS. I could repackage it, but better to just see what the hell archiso's doing.
|
||||
-WISH: Better logging[0]
|
||||
-WISH: signing for secureboot releases (PreLoader and gummiboot handle this okay, but require manual intervention
|
||||
-use manual chrooting functions ONLY if distro not detected as arch. if /usr/bin/systemd-nspawn exists, use that instead
|
||||
--does arch-chroot work across all distros? see https://wiki.archlinux.org/index.php/Install_bundled_32-bit_system_in_Arch64 and https://wiki.archlinux.org/index.php/Chroot
|
||||
--i think this might be unnecessary. testing across other major distros is necessary, but i think i can just use the chroot'd arch-chroot
|
||||
-tweak build.conf (and build.conf.sample) to source the pwd and set as BASEDIR ***if*** the project resources are present in pwd, otherwise throw warning
|
||||
--this is half-done;PWD is currently used by default.
|
||||
-does gummiboot? loader? wtfever it's called support splash backgrounds? can i implement that differently somehow?
|
||||
--yes, see e.g. https://www.reddit.com/r/archlinux/comments/3bwgf0/where_put_the_splasharchbmp_to_splash_screen_boot/
|
||||
-strip out/remove unnecessary and orphan packages (e.g. gcc, make, automake, etc.)
|
||||
-incorporate iPXE tweaks:
|
||||
--http://ipxe.org/crypto
|
||||
--http://ipxe.org/cmd/imgtrust
|
||||
--http://ipxe.org/cmd/imgverify
|
||||
--enable use of custom CA/self-signed certs for HTTPS etc. DONE, partially. need to incorporate codesign certs/keys. routines, conf variables
|
||||
-enable mirror= kernel commandline.
|
||||
--if mirror_(NAME) is present, use that as repo name.
|
||||
--if it starts with /, treat as mirrorlist (Include); otherwise use Server =
|
||||
--if it has mirror_SIG-X, set signature options e.g. _SIG-N would be "SigLevel = Never"
|
||||
-iPXE background support. sed -rf "${BASEDIR}/src/ipxe_local/script.sed" ${SRCDIR}/ipxe/src/config/general.h ; sed -rf "${BASEDIR}/src/ipxe_local/script2.sed" ${SRCDIR}/ipxe/src/config/console.h
|
||||
--note that iPXE VESAFB console is not (yet) supported in EFI, so this is on hold.
|
||||
|
||||
## Split into Separate Tools CD ##
|
||||
|
||||
-include WinMTR, build Mac OS X MTR for dist/tools on CD
|
||||
-include pre-compiled LibreCrypt for opening LUKS parts on Windows (https://github.com/t-d-k/LibreCrypt)
|
||||
--curl -s https://raw.githubusercontent.com/t-d-k/LibreCrypt/master/README.md | egrep 'InstallLibreCrypt_v[A-Za-z0-9\.]*.exe' | cut -f2 -d'"'
|
||||
|
||||
|
||||
__________________________________________________________
|
||||
FOOTNOTES:
|
||||
|
||||
|
||||
[0] I'd really like to implement the following in build.conf; like:
|
||||
http://forums.fedoraforum.org/showthread.php?t=275743
|
||||
# The following is the setting for "verbosity". A more accurate way of saying it is how output should be handled.
|
||||
# Note that for it to be properly parsed, it MUST be in the form of a linear array (e.g. VAR=(1 2 3) ).
|
||||
# '| tee -a ${BASEDIR}/logs/${FUNCNAME}.$(date +%s)' means "display output for STDOUT and STDERR, and also log STDOUT to logs/<function name>.EPOCH_TIME"
|
||||
# '2>&1 /dev/null' means "hide STDOUT and STDERR, no logging"
|
||||
# '>> ${BASEDIR}/logs/${FUNCNAME}.$(date +%s) 2>&1' means "log both STDOUT and STDERR to logs/<function name>.EPOCH_TIME, no output"
|
||||
# '>> ${BASEDIR}/logs/${FUNCNAME}.$(date +%s)' means "log STDOUT to logs/<function name>.EPOCH_TIME, display (but don't log) STDERR)"
|
||||
# '' means "no logging; display both STDOUT and STDERR"
|
||||
Binary file not shown.
BIN
extra/bootstrap/apacman-1.9-1-any.pkg.tar.xz
Normal file
BIN
extra/bootstrap/apacman-1.9-1-any.pkg.tar.xz
Normal file
Binary file not shown.
@@ -3,7 +3,7 @@
|
||||
#####################################################
|
||||
#
|
||||
# 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
|
||||
@@ -71,6 +71,35 @@ BUILDMINI="no"
|
||||
# This currently does not work for HTTPS with self-signed certificates.
|
||||
IPXE_URI="https://bdisk.square-r00t.net"
|
||||
|
||||
# Path to the (root) CA certificate file (in PEM/X509 format) iPXE should use.
|
||||
# If one is not specified, one will be generated.
|
||||
# Only used if BUILDMINI is set to yes.
|
||||
# Please properly escape any spaces or other funky characters.
|
||||
# Note that you can use your own CA to sign existing certs. See http://ipxe.org/crypto for
|
||||
# more info. This is handy if you run a third-party/"Trusted" root-CA-signed certificate
|
||||
# for the HTTPS target.
|
||||
# Requires IPXE_SSL_CAKEY if specified.
|
||||
IPXE_SSL_CA=""
|
||||
|
||||
# Path to the (root) CA key file (in PEM/X509 format) iPXE should use.
|
||||
# If one is not specified, one will be generated.
|
||||
# Only used if BUILDMINI is set to yes.
|
||||
# Please properly escape any spaces or other funky characters.
|
||||
# Requires IPXE_SSL_CA if specified.
|
||||
IPXE_SSL_CAKEY=""
|
||||
|
||||
# Path to the CLIENT certificate (in PEM/X509). If one is not specified, one will be generated.
|
||||
# Only used if BUILDMINI is set to yes.
|
||||
# Please properly escape any spaces or other funky characters.
|
||||
# Requires IPXE_SSL_KEY if specified.
|
||||
IPXE_SSL_CRT=""
|
||||
|
||||
# Path to the CLIENT key (in PEM/X509). If one is not specified, one will be generated.
|
||||
# Only used if BUILDMINI is set to yes.
|
||||
# Please properly escape any spaces or other funky characters.
|
||||
# Requires IPXE_SSL_CRT if specified.
|
||||
IPXE_SSL_KEY=""
|
||||
|
||||
# Set to "yes" to enable pushing new changes to a git repo/committing to a local repo
|
||||
GIT="no"
|
||||
|
||||
@@ -132,6 +161,11 @@ I_AM_A_RACECAR="no"
|
||||
# The following should not be changed unless you are ABSOLUTELY, 100% SURE and COMPLETELY POSITIVE
|
||||
# about what you are doing!!!
|
||||
|
||||
# This can be used to override automatic distro-detection.
|
||||
# If you DO set this, be sure that you have a matching profile in
|
||||
# ${BASEDIR}/lib/prereqs/<Distro>/meta !!
|
||||
HOST_DIST=""
|
||||
|
||||
# This used to be defined statically, but is now dynamically appended. Please don't alter this
|
||||
# unless you renamed the chroot directory paths.
|
||||
CHROOTDIR="${BASEDIR}/"
|
||||
|
||||
@@ -3,27 +3,29 @@
|
||||
abs
|
||||
acpi
|
||||
#acpidump
|
||||
afflib
|
||||
#afflib
|
||||
aircrack-ng
|
||||
apr
|
||||
apr-util
|
||||
arch-install-scripts
|
||||
archiso
|
||||
arj
|
||||
asciidoc
|
||||
atop
|
||||
autopsy
|
||||
autossh
|
||||
backuppc
|
||||
#bacula ## TODO: grab all the bacula packages in here
|
||||
beep
|
||||
bin86
|
||||
bind-tools
|
||||
binutils
|
||||
bluez-utils
|
||||
bonnie++
|
||||
boxbackup-client
|
||||
boxbackup-server
|
||||
bozocrack-git
|
||||
bridge-utils
|
||||
burp-backup-git
|
||||
btrfs-progs
|
||||
bzip2
|
||||
cabextract
|
||||
cdrtools
|
||||
cdw
|
||||
@@ -33,17 +35,17 @@ chntpw
|
||||
cifs-utils
|
||||
ckermit
|
||||
clamav
|
||||
clonezilla
|
||||
cmospwd
|
||||
colordiff
|
||||
coreutils
|
||||
cowpatty
|
||||
cpio
|
||||
cpuburn
|
||||
cpupower
|
||||
crackpkcs12
|
||||
cronie
|
||||
#cryptcat
|
||||
cryptsetup
|
||||
csync2
|
||||
customizepkg-scripting
|
||||
dar
|
||||
dcfldd
|
||||
@@ -52,9 +54,6 @@ dd_rescue
|
||||
dd_rhelp
|
||||
debianutils
|
||||
debootstrap
|
||||
dhclient
|
||||
dhcp
|
||||
dhcpcd
|
||||
dialog
|
||||
diffutils
|
||||
djohn
|
||||
@@ -63,7 +62,6 @@ dnssec-anchors
|
||||
dnstracer
|
||||
#dnsutils #replaced by bind-tools, https://www.archlinux.org/packages/extra/x86_64/bind-tools/
|
||||
dos2unix
|
||||
dosfstools
|
||||
dropbear
|
||||
dstat
|
||||
dump
|
||||
@@ -73,8 +71,6 @@ dvd+rw-tools
|
||||
e2fsprogs
|
||||
ecryptfs-utils
|
||||
ed
|
||||
efibootmgr
|
||||
efivar
|
||||
elfutils
|
||||
#elilo-efi
|
||||
elinks
|
||||
@@ -110,7 +106,6 @@ gpm
|
||||
gptfdisk
|
||||
gst-libav
|
||||
gst-plugins-ugly
|
||||
gummiboot
|
||||
hashcat
|
||||
hddtemp
|
||||
hdparm
|
||||
@@ -132,10 +127,8 @@ iozone
|
||||
ipcalc
|
||||
iperf
|
||||
iperf3
|
||||
iproute2
|
||||
ipsec-tools
|
||||
iptraf-ng
|
||||
iputils
|
||||
irssi
|
||||
iso-codes
|
||||
isomaster
|
||||
@@ -145,10 +138,8 @@ jfsutils
|
||||
john
|
||||
keyutils
|
||||
kismet-allplugins
|
||||
libisoburn
|
||||
lftp
|
||||
links
|
||||
localepurge
|
||||
#logkeys
|
||||
logkeys-keymaps
|
||||
lm_sensors
|
||||
@@ -159,10 +150,7 @@ lsof
|
||||
lsscsi
|
||||
lxde
|
||||
lynx
|
||||
lz4
|
||||
#lzip
|
||||
lzo
|
||||
lzop
|
||||
macchanger
|
||||
magicrescue
|
||||
mbr
|
||||
@@ -171,14 +159,13 @@ mcelog
|
||||
md5deep
|
||||
mdadm
|
||||
mdcrack
|
||||
megaraid-cli
|
||||
# superseded by storcli
|
||||
#megaraid-cli
|
||||
memtester
|
||||
mfoc
|
||||
minicom
|
||||
mkinitcpio-nfs-utils
|
||||
ms-sys
|
||||
mondo
|
||||
mtd-utils
|
||||
mtools
|
||||
mtr
|
||||
mtree
|
||||
#mtx
|
||||
@@ -189,11 +176,8 @@ ncftp
|
||||
ncompress
|
||||
ncrack
|
||||
net-snmp
|
||||
net-tools
|
||||
netctl
|
||||
netselect
|
||||
nettle
|
||||
networkmanager
|
||||
networkmanager-pptp
|
||||
nginx-devel
|
||||
ngrep
|
||||
@@ -201,16 +185,18 @@ nmap
|
||||
nmon
|
||||
ntfs-3g
|
||||
ntfsfixboot
|
||||
nwipe
|
||||
#nwipe #broken since they moved to github(?)
|
||||
nwipe-git
|
||||
obnam
|
||||
open-iscsi
|
||||
openipmi
|
||||
openssh
|
||||
openvpn
|
||||
ophcrack
|
||||
os-prober
|
||||
p7zip
|
||||
pack
|
||||
par2cmdline
|
||||
partclone
|
||||
partclone-utils
|
||||
parted
|
||||
partimage
|
||||
pax-utils
|
||||
@@ -233,9 +219,8 @@ procinfo-ng
|
||||
procps-ng
|
||||
progsreiserfs
|
||||
psmisc
|
||||
pv
|
||||
pwgen
|
||||
pxz
|
||||
pixz
|
||||
pyrit-svn
|
||||
python2-gnuplot
|
||||
python2-pyx
|
||||
@@ -251,7 +236,6 @@ rpcbind
|
||||
rpmextract
|
||||
rp-pppoe
|
||||
rsnapshot
|
||||
rsync
|
||||
rygel
|
||||
safecopy
|
||||
samba
|
||||
@@ -261,27 +245,21 @@ scrounge-ntfs
|
||||
scrub
|
||||
scsiadd
|
||||
sdparm
|
||||
sed
|
||||
setserial
|
||||
sg3_utils
|
||||
sharutils
|
||||
shorewall
|
||||
sipcalc
|
||||
sipcrack
|
||||
smartmontools
|
||||
smbclient
|
||||
s-nail
|
||||
socat
|
||||
squashfs3-tools
|
||||
squashfs-tools
|
||||
#star
|
||||
#star ## do people even USE tape packups anymore?
|
||||
storcli
|
||||
strace
|
||||
stress
|
||||
sucrack
|
||||
sudo
|
||||
symlinks
|
||||
sysfsutils
|
||||
syslinux
|
||||
sysstat
|
||||
tcpdump
|
||||
tcpslice
|
||||
@@ -292,7 +270,6 @@ thin-provisioning-tools
|
||||
thttpd
|
||||
tmon
|
||||
tmux
|
||||
traceroute
|
||||
tre
|
||||
truecrack-svn
|
||||
truecrypt
|
||||
@@ -300,6 +277,7 @@ tor
|
||||
udftools
|
||||
#udpcast
|
||||
unace
|
||||
unison
|
||||
unrar
|
||||
unshield
|
||||
unzip
|
||||
@@ -332,6 +310,8 @@ xfsprogs
|
||||
xmlto
|
||||
xorg
|
||||
xorg-drivers
|
||||
xorg-xinit
|
||||
xterm
|
||||
zerofree
|
||||
zip
|
||||
zsh
|
||||
|
||||
@@ -37,7 +37,8 @@ VerbosePkgLists
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
#SigLevel = Required DatabaseOptional #RE-ENABLE ME WHEN A NEW SNAPSHOT IS RELEASED WITH FIXED GPG
|
||||
SigLevel = Never
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
|
||||
@@ -37,7 +37,8 @@ VerbosePkgLists
|
||||
|
||||
# By default, pacman accepts packages signed by keys that its local keyring
|
||||
# trusts (see pacman-key and its man page), as well as unsigned packages.
|
||||
SigLevel = Required DatabaseOptional
|
||||
#SigLevel = Required DatabaseOptional #RE-ENABLE ME WHEN A NEW SNAPSHOT IS RELEASED WITH FIXED GPG
|
||||
SigLevel = Never
|
||||
LocalFileSigLevel = Optional
|
||||
#RemoteFileSigLevel = Required
|
||||
|
||||
|
||||
@@ -25,8 +25,8 @@ noedit=1
|
||||
skipinteg=1
|
||||
#skiptest=1
|
||||
#warn=1
|
||||
tmpdir=/var/tmp/apacman
|
||||
TMPDIR=/var/tmp/apacman
|
||||
#tmpdir=/var/tmp/apacman
|
||||
#TMPDIR=/var/tmp/apacman
|
||||
|
||||
#
|
||||
# CONFIGURATION
|
||||
|
||||
3
extra/pre-build.d/etc/customizepkg.d/dd_rhelp
Executable file
3
extra/pre-build.d/etc/customizepkg.d/dd_rhelp
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
sed -i -e 's/build(/package(/g' ${1}
|
||||
3
extra/pre-build.d/etc/customizepkg.d/lsiutil
Executable file
3
extra/pre-build.d/etc/customizepkg.d/lsiutil
Executable file
@@ -0,0 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
sed -re 's@^(source=\(").*$@\1https://github.com/kwilczynski/lsi/blob/master/lsiutil/LSIUtil_1.62.zip?raw=true")@g' ${1}
|
||||
7
extra/pre-build.d/etc/customizepkg.d/whdd
Executable file
7
extra/pre-build.d/etc/customizepkg.d/whdd
Executable file
@@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
|
||||
if [[ ! -f "/usr/lib/libdialog.so" ]];
|
||||
then
|
||||
echo "Please run the following: sudo ln -s /usr/lib/libdialog.so.1.2 /usr/lib/libdialog.so"
|
||||
echo "This package will fail to build otherwise."
|
||||
fi
|
||||
@@ -1,3 +1,3 @@
|
||||
#!/bin/bash
|
||||
|
||||
sed -i -e 's/any/x86_64/g' ${1}
|
||||
sed -i -re "s/'any'/'i686' 'x86_64'/g" ${1}
|
||||
|
||||
@@ -3,6 +3,6 @@
|
||||
set -e
|
||||
|
||||
apacman --noconfirm --noedit -S --needed customizepkg-scripting
|
||||
|
||||
ln -s /usr/lib/libdialog.so.1.2 /usr/lib/libdialog.so
|
||||
|
||||
echo "Done."
|
||||
|
||||
@@ -4,6 +4,9 @@ build() {
|
||||
add_runscript
|
||||
|
||||
add_binary curl
|
||||
|
||||
add_full_dir /etc/ssl
|
||||
add_full_dir /etc/ca-certificates
|
||||
}
|
||||
|
||||
help() {
|
||||
|
||||
@@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
# placeholder...
|
||||
@@ -1,335 +0,0 @@
|
||||
#!/bin/bash
|
||||
|
||||
function mkchroot {
|
||||
|
||||
# just in case we don't inherit.
|
||||
if [[ -z "${FUNCNAME}" ]];
|
||||
then
|
||||
FUNCNAME='mkchroot-standalone'
|
||||
fi
|
||||
|
||||
## Import settings
|
||||
if [ -f "build.conf" ];
|
||||
then
|
||||
echo "Now importing settings/variables."
|
||||
set -e
|
||||
source build.conf
|
||||
set +e
|
||||
else
|
||||
echo "You have not configured a build.conf OR you are not running from the project's root directory (the git repository's working directory)."
|
||||
echo "If you are indeed in the correct directory, you may copy the sample at ../extra/build.conf.sample,"
|
||||
echo "edit it for appropriate values, and copy to <PROJECT ROOT>/build.conf"
|
||||
echo 'This error is fatal. Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ ${EUID} -ne 0 ]];
|
||||
then
|
||||
#echo "This script must be run as root" 1>&2
|
||||
echo "This script must be run as root."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -z "${BASEDIR}" ];
|
||||
then
|
||||
echo 'You need to export the directory ("$BASEDIR") which will hold the chroots and the git project directory.'
|
||||
echo "(don't worry, there's a .gitignore for the chroots)"
|
||||
echo "e.g. export BASEDIR=\"/opt/dev/work/client-diag-disc/\""
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ ! -d "${BASEDIR}" ];
|
||||
then
|
||||
echo "You need to make sure ${BASEDIR} is a valid, existing directory. This script does not automatically create it as a sanity measure."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ "${EUID}" != "0" ]];
|
||||
then
|
||||
echo "This script must be run as root."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f ${LOCKFILE} ];
|
||||
then
|
||||
echo "Script already running, stale lockfile present, or an error occurred during last run."
|
||||
echo "Please clear ${LOCKFILE} by hand before attempting another build."
|
||||
echo -n "Timestamp of lockfile is: "
|
||||
ls -l ${LOCKFILE} | awk '{print $6" "$7" "$8}'
|
||||
exit 1
|
||||
else
|
||||
touch ${LOCKFILE}
|
||||
fi
|
||||
|
||||
if [ -f "/usr/bin/systemd-nspawn" ];
|
||||
then
|
||||
CHROOTCMD="systemd-nspawn -D"
|
||||
else
|
||||
CHROOTCMD="${CHROOTDIR64}/bin/arch-chroot"
|
||||
fi
|
||||
|
||||
cd "${BASEDIR}"
|
||||
|
||||
## Set some vars.
|
||||
#MIRROR='http://mirrors.kernel.org/archlinux'
|
||||
MIRROR='http://mirror.us.leaseweb.net/archlinux'
|
||||
RLSDIR="${MIRROR}/iso/latest"
|
||||
|
||||
CURRLS64=$(curl -s ${RLSDIR}/sha1sums.txt | grep bootstrap | awk '{print $2}' | grep 'x86_64')
|
||||
CKSUM64=$(curl -s ${RLSDIR}/sha1sums.txt | grep bootstrap | grep x86_64 | awk '{print $1}')
|
||||
CURRLS32=$(curl -s ${RLSDIR}/sha1sums.txt | grep bootstrap | awk '{print $2}' | grep 'i686')
|
||||
CKSUM32=$(curl -s ${RLSDIR}/sha1sums.txt | grep bootstrap | grep i686 | awk '{print $1}')
|
||||
|
||||
## Fetch latest tarball release
|
||||
echo "Checking/fetching snapshots..."
|
||||
if [ -f "latest.64.tar.gz" ];
|
||||
then
|
||||
LOCSUM64=$(sha1sum latest.64.tar.gz | awk '{print $1}')
|
||||
if [[ "${CKSUM64}" != "${LOCSUM64}" ]];
|
||||
then
|
||||
echo "WARNING: CHECKSUMS DON'T MATCH."
|
||||
echo "Local: ${LOCSUM64}"
|
||||
echo "Remote: ${CKSUM64}"
|
||||
echo "Fetching fresh copy."
|
||||
curl -o latest.64.tar.gz "${RLSDIR}/${CURRLS64}"
|
||||
fi
|
||||
else
|
||||
curl -o latest.64.tar.gz "${RLSDIR}/${CURRLS64}"
|
||||
fi
|
||||
|
||||
if [ -f "latest.32.tar.gz" ];
|
||||
then
|
||||
LOCSUM32=$(sha1sum latest.32.tar.gz | awk '{print $1}')
|
||||
if [[ "${CKSUM32}" != "${LOCSUM32}" ]];
|
||||
then
|
||||
echo "WARNING: CHECKSUMS DON'T MATCH."
|
||||
echo "Local: ${LOCSUM32}"
|
||||
echo "Remote: ${CKSUM32}"
|
||||
echo "Fetching fresh copy."
|
||||
curl -o latest.32.tar.gz "${RLSDIR}/${CURRLS32}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
else
|
||||
curl -o latest.32.tar.gz "${RLSDIR}/${CURRLS32}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
|
||||
if [ ! -f "${CHROOTDIR32}/etc/pacman.d/gnupg/trustdb.gpg" ] || [ ! -f "${CHROOTDIR64}/etc/pacman.d/gnupg/trustdb.gpg" ];
|
||||
then
|
||||
# Now let's ${BASEDIR}/extract that shit
|
||||
echo "Extracting snapshots. This will take a while..."
|
||||
## 64-bit
|
||||
tar -xpzf latest.64.tar.gz
|
||||
## 32-bit
|
||||
tar -xpzf latest.32.tar.gz
|
||||
|
||||
# And configure the package manager
|
||||
echo "Configuring snapshots..."
|
||||
touch ${LOCKFILE}
|
||||
sleep 2
|
||||
find ${BASEDIR}/extra/pre-build.d/ -exec touch '{}' \;
|
||||
rsync -a --exclude '/32' --exclude '/64' ${BASEDIR}/extra/pre-build.d/. ${BASEDIR}/root.x86_64/.
|
||||
rsync -a --exclude '/32' --exclude '/64' ${BASEDIR}/extra/pre-build.d/. ${BASEDIR}/root.i686/.
|
||||
rsync -a ${BASEDIR}/extra/pre-build.d/64/. ${BASEDIR}/root.x86_64/.
|
||||
rsync -a ${BASEDIR}/extra/pre-build.d/32/. ${BASEDIR}/root.i686/.
|
||||
chmod -f 755 ${BASEDIR}/extra/pre-build.d/{32/,64/,}etc/customizepkg.d/*
|
||||
find ${BASEDIR}/root.x86_64/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
find ${BASEDIR}/root.i686/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
for i in i686 x86_64;
|
||||
do
|
||||
cat > ${BASEDIR}/root.${i}/etc/os-release << EOF
|
||||
NAME="Arch Linux"
|
||||
ID=arch
|
||||
PRETTY_NAME="Arch Linux"
|
||||
ANSI_COLOR="0;36"
|
||||
HOME_URL="https://www.archlinux.org/"
|
||||
SUPPORT_URL="https://bbs.archlinux.org/"
|
||||
BUG_REPORT_URL="https://bugs.archlinux.org/"
|
||||
EOF
|
||||
done
|
||||
|
||||
# And make it usable.
|
||||
echo "Initializing chroots..."
|
||||
|
||||
for i in ${CHROOTDIR32} ${CHROOTDIR64};
|
||||
do
|
||||
# Disable NetworkManager. Fuck that shit.
|
||||
ln -s /dev/null ${i}/etc/systemd/system/NetworkManager.service
|
||||
ln -s /dev/null ${i}/etc/systemd/system/NetworkManager-dispatcher.service
|
||||
# Remove the machine-id file so it's automatically generated.
|
||||
# NOTE: this kind of fucks things up presently.
|
||||
#rm -f ${i}/etc/machine-id
|
||||
# Prep pacman
|
||||
echo "Prepping ${i}. This will take a while..."
|
||||
echo -n "...Key initializing..."
|
||||
${CHROOTCMD} ${i}/ pacman-key --init >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
echo "Done."
|
||||
echo -n "...Importing keys..."
|
||||
${CHROOTCMD} ${i}/ pacman-key --populate archlinux >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
echo "Done."
|
||||
# Prep base building system
|
||||
echo -n "...Installing base packages..."
|
||||
#${CHROOTCMD} ${i}/ pacstrap -dGcM base
|
||||
# if that doesn't work,
|
||||
${CHROOTCMD} ${i}/ pacman -Syy >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
${CHROOTCMD} ${i}/ pacman -S --noconfirm --needed base syslinux wget rsync unzip jshon sed sudo abs xmlto bc docbook-xsl git >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
echo "Done."
|
||||
echo -n "...Upgrading any outdated packages..."
|
||||
${CHROOTCMD} ${i}/ pacman -Syyu --noconfirm >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
echo "Done. Finishing/cleaning up..."
|
||||
${CHROOTCMD} ${i}/ pacman -S --noconfirm --needed base-devel >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
# Yaourt is busted because Arch Pacman devs are fucking neasighted closed-minded jackasses.
|
||||
# If they ever fix their crap, checkout extra/pre-build.d/etc/yaourtrc from git (commit 583a5df84af415990b8c49d7e4ac11dd7b23e0e0)
|
||||
## https://github.com/archlinuxfr/yaourt/issues/67
|
||||
## https://projects.archlinux.org/pacman.git/tree/NEWS#n54
|
||||
## https://bugs.archlinux.org/task/43302
|
||||
#${CHROOTCMD} ${i}/ pacman -S --noconfirm --needed yaourt >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
mkdir -p ${i}/var/tmp/pkg
|
||||
cp ${BASEDIR}/extra/bootstrap/apacman* ${i}/var/tmp/pkg/apacman.tar.xz
|
||||
#${CHROOTCMD} ${i} "pacman --noconfirm -U /var/tmp/pkg/apacman.tar.xz" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
${CHROOTCMD} ${i} bash -c "pacman --noconfirm -U /var/tmp/pkg/apacman.tar.xz && mkdir /var/tmp/apacman && chmod 0750 /var/tmp/apacman && chown root:aurbuild /var/tmp/apacman " >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
${CHROOTCMD} ${i} bash -c "apacman -S --noconfirm --noedit --skipinteg -S apacman-deps expac" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
#rm -rf ${i}/var/tmp/pkg
|
||||
#${CHROOTCMD} ${i}/ pacman -S --noconfirm --needed yaourt >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
done
|
||||
${CHROOTCMD} ${CHROOTDIR64}/ 'pacman --noconfirm -R gcc-libs libtool' >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
${CHROOTCMD} ${CHROOTDIR64}/ 'pacman --noconfirm -S multilib-devel' >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
|
||||
# And let's do some more optimization.
|
||||
if [[ "${I_AM_A_RACECAR}" == "y" ]];
|
||||
then
|
||||
CPUCNT=$(grep processor /proc/cpuinfo | wc -l)
|
||||
((CPUCNT++))
|
||||
sed -i -e "/^[[:space:]]*#*MAKEFLAGS=.*$/aMAKEFLAGS=\"-j${CPUCNT}\"" ${CHROOTDIR64}/etc/makepkg.conf
|
||||
sed -i -e "/^[[:space:]]*#*MAKEFLAGS=.*$/aMAKEFLAGS=\"-j${CPUCNT}\"" ${CHROOTDIR32}/etc/makepkg.conf
|
||||
fi
|
||||
|
||||
# preprocessing
|
||||
sed -i -e '/base-devel/d ; /multilib-devel/d' ${BASEDIR}/extra/packages.*
|
||||
# both
|
||||
echo "Installing common packages..."
|
||||
PKGLIST=$(sed -e '/^[[:space:]]*#/d ; /^[[:space:]]*$/d' ${BASEDIR}/extra/packages.both | tr '\n' ' ')
|
||||
for i in ${CHROOTDIR32} ${CHROOTDIR64};
|
||||
do
|
||||
echo "Running post-build tasks in ${i}..."
|
||||
${CHROOTCMD} ${i}/ "/root/post-build.sh" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
set +e
|
||||
${CHROOTCMD} ${i}/ /usr/bin/bash -c "apacman --noconfirm --noedit --skipinteg -S --needed linux" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
cp -a ${i}/boot/vmlinuz-linux ${i}/boot/vmlinuz-linux-${PNAME}
|
||||
cp -a ${i}/boot/initramfs-linux.img ${i}/boot/initramfs-linux-${PNAME}.img
|
||||
set -e
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
# Uncomment if you wish to use the mkpasswd binary from within the chroot...
|
||||
#${CHROOTCMD} ${i}/ bash -c "apacman --noconfirm --noedit --skipinteg -S --needed debian-whois-mkpasswd" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
#for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
echo -n "Regular packages..."
|
||||
set +e
|
||||
${CHROOTCMD} ${i}/ bash -c "yes '' | apacman --noconfirm --noedit --skipinteg -S --needed ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%%.pacorig} ; done
|
||||
# User creation
|
||||
set -e
|
||||
echo -n "...Creating ${REGUSR} user..."
|
||||
${CHROOTCMD} ${i}/ useradd -m -s /bin/bash -c "Default user" ${REGUSR} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
${CHROOTCMD} ${i}/ usermod -aG users,games,video,audio ${REGUSR} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
${CHROOTCMD} ${i}/ passwd -d ${REGUSR} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
mkdir -p ${i}/etc/sudoers.d ; chmod 750 ${i}/etc/sudoers.d
|
||||
echo "${REGUSR} ALL=(ALL) ALL" >> ${i}/etc/sudoers.d/${REGUSR}
|
||||
if [ -n "${REGUSR_PASS}" ];
|
||||
then
|
||||
#${CHROOTCMD} ${i}/ "/usr/bin/echo ${REGUSR}:${REGUSR_PASS} | chpasswd -e" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
sed -i -e "s|^${REGUSR}::|${REGUSR}:${REGUSR_PASS}:|g" ${i}/etc/shadow
|
||||
elif [[ "${REGUSR_PASS}" == '{[BLANK]}' ]];
|
||||
then
|
||||
${CHROOTCMD} ${i}/ passwd -d ${REGUSR} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
else
|
||||
${CHROOTCMD} ${i}/ usermod -L ${REGUSR} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
if [ -n "${ROOT_PASS}" ];
|
||||
then
|
||||
#${CHROOTCMD} ${i}/ "/usr/bin/echo root:${ROOT_PASS} | chpasswd -e" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
sed -i -e "s|^root::|root:${ROOT_PASS}:|g" ${i}/etc/shadow
|
||||
elif [[ "${ROOT_PASS}" == '{[BLANK]}' ]];
|
||||
then
|
||||
${CHROOTCMD} ${i}/ passwd -d root >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
else
|
||||
${CHROOTCMD} ${i}/ usermod -L root >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
# The following is supposed to do the same as the above, but "cleaner". However, it currently fails with "execv() failed: No such file or directory"
|
||||
##${CHROOTCMD} ${i}/ usermod -L root >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
echo "Done."
|
||||
done
|
||||
|
||||
for i in ${CHROOTDIR32} ${CHROOTDIR64};
|
||||
do
|
||||
set +e
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
${CHROOTCMD} ${i}/ /usr/bin/bash -c "mkinitcpio -p linux" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
cp -a ${i}/boot/initramfs-linux.img ${i}/boot/initramfs-linux-${PNAME}.img
|
||||
set -e
|
||||
done
|
||||
|
||||
# 32-bit
|
||||
echo "Installing packages for 32-bit..."
|
||||
PKGLIST=$(sed -e '/^[[:space:]]*#/d ; /^[[:space:]]*$/d' ${BASEDIR}/extra/packages.32 | tr '\n' ' ')
|
||||
if [ -n "${PKGLIST}" ];
|
||||
then
|
||||
${CHROOTCMD} ${CHROOTDIR32}/ /usr/bin/bash -c "apacman --noconfirm --noedit --skipinteg -S --needed ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
set +e
|
||||
for x in $(find ${CHROOTDIR32}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
set -e
|
||||
echo "Done."
|
||||
|
||||
# 64-bit
|
||||
echo "Installing packages for 64-bit..."
|
||||
PKGLIST=$(sed -e '/^[[:space:]]*#/d ; /^[[:space:]]*$/d' ${BASEDIR}/extra/packages.64 | tr '\n' ' ')
|
||||
if [ -n "${PKGLIST}" ];
|
||||
then
|
||||
${CHROOTCMD} ${CHROOTDIR64}/ /usr/bin/bash -c "apacman --noconfirm --noedit --skipinteg -S --needed ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
set +e
|
||||
for x in $(find ${CHROOTDIR64}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
set -e
|
||||
echo "Done."
|
||||
|
||||
echo "Syncing overlay..."
|
||||
touch ${LOCKFILE}
|
||||
sleep 2
|
||||
find ${BASEDIR}/overlay -exec touch '{}' \;
|
||||
rsync -a --exclude '/32' --exclude '/64' ${BASEDIR}/overlay/. ${CHROOTDIR64}/.
|
||||
rsync -a --exclude '/32' --exclude '/64' ${BASEDIR}/overlay/. ${CHROOTDIR32}/.
|
||||
rsync -a ${BASEDIR}/overlay/32/. ${CHROOTDIR32}/.
|
||||
rsync -a ${BASEDIR}/overlay/64/. ${CHROOTDIR64}/.
|
||||
find ${CHROOTDIR64}/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
find ${CHROOTDIR32}/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
chown -R 1000:1000 ${CHROOTDIR32}/home/${REGUSR}
|
||||
chown -R 1000:1000 ${CHROOTDIR64}/home/${REGUSR}
|
||||
find ${CHROOTDIR64}/home/${REGUSR}/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR64}/home/${REGUSR}/ -type f -exec chmod 600 '{}' \;
|
||||
find ${CHROOTDIR32}/home/${REGUSR}/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR32}/home/${REGUSR}/ -type f -exec chmod 600 '{}' \;
|
||||
find ${CHROOTDIR64}/root/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR64}/root/ -type f -exec chmod 600 '{}' \;
|
||||
find ${CHROOTDIR32}/root/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR32}/root/ -type f -exec chmod 600 '{}' \;
|
||||
chmod 600 ${CHROOTDIR64}/etc/ssh/*
|
||||
chmod 600 ${CHROOTDIR32}/etc/ssh/*
|
||||
echo "Done."
|
||||
|
||||
|
||||
rm -f ${LOCKFILE}
|
||||
|
||||
echo "Chroot setup complete."
|
||||
|
||||
}
|
||||
|
||||
mkchroot
|
||||
@@ -1,30 +0,0 @@
|
||||
function im_batman {
|
||||
set +e # false errors are bad mmk
|
||||
# Detect the distro and set some vars
|
||||
if [ -f "/usr/bin/yum" ]; # CentOS/Redhat, etc.
|
||||
then
|
||||
OS_STRING='RHEL-like'
|
||||
DISTRO='RHEL'
|
||||
INST_CMD='yum -y install '
|
||||
elif [ -f "/usr/bin/pacman" ]; # Arch, Manjaro, etc.
|
||||
then
|
||||
OS_STRING='Arch-like'
|
||||
DISTRO='Arch'
|
||||
INST_CMD='pacman -S '
|
||||
elif [ -f "/usr/bin/emerge" ]; # Gentoo
|
||||
then
|
||||
OS_STRING='Gentoo-like'
|
||||
DISTRO='Gentoo'
|
||||
INST_CMD='emerge '
|
||||
elif [ -f "/usr/bin/apt-get" ]; # Debian, Ubuntu (and derivatives), etc.
|
||||
then
|
||||
OS_STRING='Debian-like'
|
||||
DISTRO="Debian"
|
||||
INST_CMD='apt-get install '
|
||||
else
|
||||
echo 'Sorry, I cannot detect which distro you are running. Please report this along with what distro you are running. Dying now.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
set -e # and turn this back on lolz
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
function holla_atcha_boi {
|
||||
|
||||
if [[ "${I_AM_A_RACECAR}" == "y" ]];
|
||||
then
|
||||
RACECAR_CHK='nice -n -19 '
|
||||
else
|
||||
RACECAR_CHK=""
|
||||
fi
|
||||
|
||||
|
||||
# Do we have an existing chroot set up yet? If not, create.
|
||||
if [[ ! -d "root.x86_64/root" || ! -d "root.i686/root" ]];
|
||||
then
|
||||
echo "No existing chroot environment found. Creating..."
|
||||
rm -f ${LOCKFILE}
|
||||
${RACECAR_CHK} ${BASEDIR}/lib/01-mk.chroot.func.sh
|
||||
touch ${LOCKFILE}
|
||||
fi
|
||||
}
|
||||
|
||||
@@ -1,50 +0,0 @@
|
||||
function release_me () {
|
||||
## check for mountpoints from a manual chroot and umount them if they're still mounted.
|
||||
## NOTE: you can use findmnt(8) to view a tree of mountpoints, including bindmounts etc.
|
||||
# Is there an active chroot?
|
||||
set +e
|
||||
if [[ "${1}" == "64" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.x86_64"
|
||||
local BUILDDIR="${BUILDDIR}64"
|
||||
elif [[ "${1}" == "32" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.i686"
|
||||
local BUILDDIR="${BUILDDIR}32"
|
||||
else
|
||||
echo "WHOOPS. We hit an error that makes no logical sense."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Checking for and cleaning up mountpoints from the chroot environment..."
|
||||
for i in tmp run dev/shm dev/pts dev
|
||||
do
|
||||
umount -l ${CHROOTDIR}/${i}
|
||||
done
|
||||
# and is it using efivars?
|
||||
if [ -d ${CHROOTDIR}/sys/firmware/efi/efivars ];
|
||||
then
|
||||
umount -l ${CHROOTDIR}/sys/firmware/efi/efivars
|
||||
fi
|
||||
# and finish cleaning up normal chroots
|
||||
for i in sys proc
|
||||
do
|
||||
umount -l ${CHROOTDIR}/${i}
|
||||
done
|
||||
# and is it mounted via two mountpoints a la arch-chroot?
|
||||
mount | awk '{print $3}' | grep -q ${MOUNTPT}
|
||||
if [[ ${?} == "0" ]];
|
||||
then
|
||||
umount ${MOUNTPT}
|
||||
fi
|
||||
if [ -d ${SRCDIR}/efiboot ];
|
||||
then
|
||||
umount -l ${SRCDIR}/efiboot
|
||||
fi
|
||||
rm -rf ${SRCDIR}/efiboot
|
||||
#rm -rf ${TEMPDIR}/*
|
||||
set -e # and go back to failing on non-0 exit status.
|
||||
CHROOTDIR="${CHROOTDIR_GLOB}"
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
}
|
||||
@@ -1,39 +0,0 @@
|
||||
function facehugger () {
|
||||
local ARCHSUFFIX="${1}"
|
||||
if [[ "${1}" == "64" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.x86_64"
|
||||
local BUILDDIR="${BUILDDIR}64"
|
||||
elif [[ "${1}" == "32" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.i686"
|
||||
local BUILDDIR="${BUILDDIR}32"
|
||||
else
|
||||
echo "WHOOPS. We hit an error that makes no logical sense."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
echo "Creating manual chroot mountpoints."
|
||||
# Latch on and inject ourself into the environment. Get it?
|
||||
mount -t proc -o nosuid,noexec,nodev proc ${CHROOTDIR}/proc &&
|
||||
mount -t sysfs -o nosuid,noexec,nodev,ro sys ${CHROOTDIR}/sys &&
|
||||
if [ -d /sys/firmware/efi/efivars ];
|
||||
then
|
||||
mount -t efivarfs -o nosuid,noexec,nodev efivarfs ${CHROOTDIR}/sys/firmware/efi/efivars
|
||||
fi &&
|
||||
mount -t devtmpfs -o mode=0755,nosuid udev ${CHROOTDIR}/dev &&
|
||||
mount -t devpts -o mode=0620,gid=5,nosuid,noexec devpts ${CHROOTDIR}/dev/pts &&
|
||||
mount -t tmpfs -o mode=1777,nosuid,nodev shm ${CHROOTDIR}/dev/shm &&
|
||||
mount -t tmpfs -o nosuid,nodev,mode=0755 run ${CHROOTDIR}/run &&
|
||||
mount -t tmpfs -o mode=1777,strictatime,nodev,nosuid tmp ${CHROOTDIR}/tmp
|
||||
echo "======================"
|
||||
echo "NOW ENTERING CHROOT..."
|
||||
echo "======================"
|
||||
chroot ${CHROOTDIR} /bin/bash
|
||||
rm -f ${CHROOTDIR}/root/chroot
|
||||
CHROOTDIR="${CHROOTDIR_GLOB}"
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
release_me ${ARCHSUFFIX}
|
||||
}
|
||||
|
||||
@@ -1,29 +0,0 @@
|
||||
function chroot_wrapper () {
|
||||
local ARCHSUFFIX="${1}"
|
||||
if [[ "${1}" == "64" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.x86_64"
|
||||
local BUILDDIR="${BUILDDIR}64"
|
||||
elif [[ "${1}" == "32" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.i686"
|
||||
local BUILDDIR="${BUILDDIR}32"
|
||||
else
|
||||
echo "WHOOPS. We hit an error that makes no logical sense."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [ -f "/usr/bin/systemd-nspawn" ];
|
||||
then
|
||||
CHROOTCMD="systemd-nspawn -D ${CHROOTDIR}"
|
||||
else
|
||||
CHROOTCMD="facehugger ${ARCHSUFFIX}"
|
||||
fi
|
||||
|
||||
echo "NOW ENTERING ${CHROOTDIR}...."
|
||||
echo "_____________________________"
|
||||
${CHROOTCMD}
|
||||
CHROOTDIR="${CHROOTDIR_GLOB}"
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
}
|
||||
@@ -1,67 +0,0 @@
|
||||
function jenny_craig () {
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
if [[ "${1}" == "64" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.x86_64"
|
||||
local BUILDDIR="${BUILDDIR}64"
|
||||
elif [[ "${1}" == "32" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.i686"
|
||||
local BUILDDIR="${BUILDDIR}32"
|
||||
else
|
||||
echo "WHOOPS. We hit an error that makes no logical sense."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
local _CURDIR=$(pwd)
|
||||
echo "Syncing important files to ${BUILDDIR} for building the squashed filesystem (this may take some time)..."
|
||||
|
||||
# we have to do this or else the package management from LIVE doesn't really work too hot.
|
||||
cd ${CHROOTDIR}/var/lib/pacman
|
||||
echo "Compressing the package DB..."
|
||||
#rm -f ${CHROOTDIR}/usr/local/pacman.db.tar.xz
|
||||
tar -cf - local | xz -c9 > ../../../usr/local/pacman.db.tar.xz
|
||||
cd ${_CURDIR}
|
||||
|
||||
# sync over new changes and trim out the fat
|
||||
rsync -a --delete ${CHROOTDIR}/. ${BUILDDIR}/.
|
||||
set +e
|
||||
cp -af ${BUILDDIR}/usr/share/zoneinfo/EST5EDT ${BUILDDIR}/etc/localtime > /dev/null 2>&1
|
||||
cp -af ${CHROOTDIR}/usr/share/zoneinfo/EST5EDT ${CHROOTDIR}/etc/localtime > /dev/null 2>&1
|
||||
set -e
|
||||
cp -af ${BUILDDIR}/usr/share/locale/locale.alias ${BUILDDIR}/tmp/.
|
||||
echo "Cleaning up unnecessary cruft in ${BUILDDIR}..."
|
||||
|
||||
rm -f ${BUILDDIR}/root/.bash_history
|
||||
rm -f ${BUILDDIR}/root/.viminfo
|
||||
#rm -f ${BUILDDIR}/etc/localtime
|
||||
rm -f ${BUILDDIR}/root/.bashrc
|
||||
# DISABLE when no longer building custom kernel
|
||||
#find ${BUILDDIR}/usr/lib/modules/ -maxdepth 1 -iname "*-ARCH" -exec rm -rf '{}' \;
|
||||
for i in $(ls -1t ${BUILDDIR}/usr/lib/modules | tail -n "+2") ; do rm -rf ${BUILDDIR}/usr/lib/modules/${i} ; done
|
||||
find ${BUILDDIR}/ -type f -name "*.pacnew" -exec rm -rf '{}' \;
|
||||
sed -i -e '/^MAKEFLAGS=.*$/d' ${BUILDDIR}/etc/makepkg.conf
|
||||
rm -rf ${BUILDDIR}/usr/share/locale/*
|
||||
mv -f ${BUILDDIR}/tmp/locale.alias ${BUILDDIR}/usr/share/locale/.
|
||||
rm -rf ${BUILDDIR}/var/cache/pacman/*
|
||||
rm -rf ${BUILDDIR}/var/cache/pkgfile/*
|
||||
rm -rf ${BUILDDIR}/var/cache/apacman/pkg/*
|
||||
rm -rf ${BUILDDIR}/var/lib/pacman/*
|
||||
mkdir -p ${BUILDDIR}/var/lib/pacman/local
|
||||
rm -rf ${BUILDDIR}/var/abs/local/yaourtbuild/*
|
||||
rm -rf ${BUILDDIR}/usr/share/zoneinfo
|
||||
rm -rf ${BUILDDIR}/tmp/*
|
||||
rm -rf ${BUILDDIR}/var/tmp/*
|
||||
rm -rf ${BUILDDIR}/var/abs/*
|
||||
rm -rf ${BUILDDIR}/run/*
|
||||
rm -rf ${BUILDDIR}/boot/*
|
||||
#rm -rf ${BUILDDIR}/root/*
|
||||
rm -rf ${BUILDDIR}/root/post-build.sh
|
||||
rm -rf ${BUILDDIR}/usr/src/*
|
||||
rm -rf ${BUILDDIR}/var/log/*
|
||||
rm -rf ${BUILDDIR}/.git
|
||||
CHROOTDIR="${CHROOTDIR_GLOB}"
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
}
|
||||
|
||||
@@ -1,70 +0,0 @@
|
||||
function centos_is_stupid {
|
||||
echo "Checking for appropriate kernel version and mksquashfs version..."
|
||||
SQFS_VER=$(mksquashfs -version 2>&1 | head -n1 | awk '{print $3}' | sed -re 's/(^[0-9]*\.[0-9]*).*$/\1/g')
|
||||
KERN_VER=$(uname -r | cut -f1 -d"-")
|
||||
SQUASH_OPTS="-noappend -comp xz"
|
||||
|
||||
set +e
|
||||
ver_check() {
|
||||
[ "$1" == "$2" ] && return 10
|
||||
ver1front=`echo $1 | cut -d "." -f -1`
|
||||
ver1back=`echo $1 | cut -d "." -f 2-`
|
||||
ver2front=`echo $2 | cut -d "." -f -1`
|
||||
ver2back=`echo $2 | cut -d "." -f 2-`
|
||||
if [ "$ver1front" != "$1" ] || [ "$ver2front" != "$2" ]; then
|
||||
[ "$ver1front" -gt "$ver2front" ] && return 11
|
||||
[ "$ver1front" -lt "$ver2front" ] && return 9
|
||||
[ "$ver1front" == "$1" ] || [ -z "$ver1back" ] && ver1back=0
|
||||
[ "$ver2front" == "$2" ] || [ -z "$ver2back" ] && ver2back=0
|
||||
ver_check "$ver1back" "$ver2back"
|
||||
return $?
|
||||
else
|
||||
[ "$1" -gt "$2" ] && return 11 || return 9
|
||||
fi
|
||||
}
|
||||
ver_check ${KERN_VER} "2.6.38"
|
||||
KERNTEST=${?}
|
||||
ver_check ${SQFS_VER} "4.2"
|
||||
SQFSTEST=${?}
|
||||
if [ ${KERNTEST} -lt "10" ];
|
||||
then
|
||||
echo "You need a newer kernel to even think about doing this. (>= 2.6.38)"
|
||||
echo "If you're on CentOS, there are 3.x branches available via the elrepo repository."
|
||||
echo "I recommend the 'kernel-lt' package from there."
|
||||
echo "Bailing out."
|
||||
exit 1
|
||||
#elif [ ${SQFS_VER} -ge "4.2" ] && [ ${KERN_VER} -ge "2.6.38" ];
|
||||
elif [ ${SQFSTEST} -ge "10" ] && [ ${KERNTEST} -ge "10" ];
|
||||
then
|
||||
#echo "Awesome; your mksquashfs (if found) is not less than v4.2."
|
||||
SQUASH_CMD=$(which mksquashfs)
|
||||
if [ ${?} != "0" ];
|
||||
then
|
||||
echo "...Except you need to install whatever package you need to for mksquashfs."
|
||||
exit 1
|
||||
else
|
||||
SQUASH_CMD=$(which mksquashfs)
|
||||
fi
|
||||
elif [ ${SQFSTEST} -lt "10" ] && [ ${KERNTEST} -ge "10" ];
|
||||
then
|
||||
if [ ! -f ${SRCDIR}/squashfs4.2/squashfs-tools/mksquashfs ];
|
||||
then
|
||||
echo "Boy howdy. We need to compile a custom version of the squashfs-tools because you aren't running a version that supports XZ. Give me a second."
|
||||
set -e
|
||||
mkdir -p ${SRCDIR} ${BASEDIR}/bin
|
||||
cd ${SRCDIR}
|
||||
#wget --quiet -O squashfs4.2.tar.gz "http://downloads.sourceforge.net/project/squashfs/squashfs/squashfs4.2/squashfs4.2.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fsquashfs%2Ffiles%2F&ts=1387047818&use_mirror=hivelocity"
|
||||
curl -o squashfs4.2.tar.gz "http://downloads.sourceforge.net/project/squashfs/squashfs/squashfs4.2/squashfs4.2.tar.gz?r=http%3A%2F%2Fsourceforge.net%2Fprojects%2Fsquashfs%2Ffiles%2F&ts=1387047818&use_mirror=hivelocity" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
tar -zxf squashfs4.2.tar.gz
|
||||
cd squashfs4.2/squashfs-tools
|
||||
make clean
|
||||
sed -i -e 's/^#\(XZ_SUPPORT\)/\1/g' Makefile
|
||||
make
|
||||
SQUASH_CMD="${SRCDIR}/squashfs4.2/squashfs-tools/mksquashfs"
|
||||
else
|
||||
echo "Using custom-compiled mksquashfs from an earlier run."
|
||||
SQUASH_CMD="${SRCDIR}/squashfs4.2/squashfs-tools/mksquashfs"
|
||||
fi
|
||||
fi
|
||||
set -e
|
||||
}
|
||||
@@ -1,82 +0,0 @@
|
||||
function will_it_blend () {
|
||||
local ARCHSUFFIX="${1}"
|
||||
if [[ "${1}" == "64" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.x86_64"
|
||||
local BUILDDIR="${BUILDDIR}64"
|
||||
local AIROOT="x86_64"
|
||||
_CHROOT=${CHROOTDIR}
|
||||
_BUILD=${BUILDDIR}
|
||||
_AIROOT=${AIROOT}
|
||||
elif [[ "${1}" == "32" ]];
|
||||
then
|
||||
local CHROOTDIR="${CHROOTDIR}root.i686"
|
||||
local BUILDDIR="${BUILDDIR}32"
|
||||
local AIROOT="i686"
|
||||
_CHROOT=${CHROOTDIR}
|
||||
_BUILD=${BUILDDIR}
|
||||
_AIROOT=${AIROOT}
|
||||
else
|
||||
echo "WHOOPS. We hit an error that makes no logical sense."
|
||||
echo 'Dying.'
|
||||
exit 1
|
||||
fi
|
||||
|
||||
if [[ "${I_AM_A_RACECAR}" == "y" ]];
|
||||
then
|
||||
RACECAR_CHK='nice -n -19 '
|
||||
else
|
||||
RACECAR_CHK=""
|
||||
fi
|
||||
|
||||
if [ "${CHROOTDIR}/root/.bash_history" -nt "${ARCHBOOT}/${AIROOT}/airootfs.sfs" ] || [ ! -d "${BUILDDIR}/root/" ];
|
||||
then
|
||||
echo "Data is not sync'd to buildroot; syncing..."
|
||||
CHROOTDIR="${CHROOTDIR_GLOB}"
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
jenny_craig ${ARCHSUFFIX}
|
||||
CHROOTDIR="${_CHROOT}"
|
||||
BUILDDIR="${_BUILD}"
|
||||
fi
|
||||
echo "[${ARCHSUFFIX}-bit] Now generating the squashed image (if we need to) and hashes. This may take some time."
|
||||
BUILDDIR="${BUILDDIR_GLOB}"
|
||||
local BUILDDIR="${BUILDDIR}${ARCHSUFFIX}"
|
||||
|
||||
# now let's build the squashed image... and generate some checksums as well to verify download integrity.
|
||||
# are we building split-arch ISOs? do we need the below?
|
||||
#if [[ "${MULTIARCH}" == "n" ]];
|
||||
#then
|
||||
# rm -rf ${ARCHBOOT}
|
||||
#fi
|
||||
mkdir -p ${ARCHBOOT}/${AIROOT}
|
||||
|
||||
if [ ! -f "${ARCHBOOT}/${AIROOT}/airootfs.sfs" ] || [ "${CHROOTDIR}/root/.bash_history" -nt "${ARCHBOOT}/${AIROOT}/airootfs.sfs" ];
|
||||
then
|
||||
echo "[${ARCHSUFFIX}-bit] Squashing filesystem. This can take a while depending on the size of your chroot(s)."
|
||||
${RACECAR_CHK}${SQUASH_CMD} ${BUILDDIR} ${ARCHBOOT}/${AIROOT}/airootfs.sfs ${SQUASH_OPTS} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
cd ${ARCHBOOT}/${AIROOT}
|
||||
${RACECAR_CHK}sha256sum airootfs.sfs >> airootfs.sha256
|
||||
${RACECAR_CHK}md5sum airootfs.sfs >> airootfs.md5
|
||||
cd ${BASEDIR}
|
||||
else
|
||||
cd ${BASEDIR}
|
||||
fi
|
||||
|
||||
# Generate the mtree spec.
|
||||
# Not really necessary anymore.
|
||||
#mtree -c -p ${BASEDIR}/chroot -K flags,gid,mode,nlink,uid,link,time,type > ${BASEDIR}/extra/mtree.spec
|
||||
|
||||
# and now we copy stuff into the live directories
|
||||
echo "[${ARCHSUFFIX}-bit] Copying files for PXE, and ISO building, please be patient."
|
||||
#rm -rf ${TEMPDIR}/*
|
||||
cp -af ${BASEDIR}/extra/${UXNAME}.png ${TEMPDIR}/.
|
||||
cp -af ${BASEDIR}/extra/${UXNAME}.png ${TFTPDIR}/.
|
||||
mkdir -p ${TEMPDIR}/boot
|
||||
cp -af ${CHROOTDIR}/boot/initramfs-linux-${PNAME}.img ${TEMPDIR}/boot/${UXNAME}.${ARCHSUFFIX}.img
|
||||
cp -af ${CHROOTDIR}/boot/vmlinuz-linux-${PNAME} ${TEMPDIR}/boot/${UXNAME}.${ARCHSUFFIX}.kern
|
||||
cp -af ${CHROOTDIR}/boot/initramfs-linux-${PNAME}.img ${TFTPDIR}/${UXNAME}.${ARCHSUFFIX}.img
|
||||
cp -af ${CHROOTDIR}/boot/vmlinuz-linux-${PNAME} ${TFTPDIR}/${UXNAME}.${ARCHSUFFIX}.kern
|
||||
cp -af ${ARCHBOOT}/* ${HTTPDIR}/${DISTNAME}/.
|
||||
chown -R ${HTTPUSR}:${HTTPGRP} ${HTTPDIR}
|
||||
chown ${TFTPUSR}:${TFTPGRP} ${TFTPDIR}/${UXNAME}.*
|
||||
}
|
||||
@@ -1,119 +0,0 @@
|
||||
function stuffy {
|
||||
|
||||
cp -f ${BASEDIR}/VERSION_INFO.txt ${TEMPDIR}/.
|
||||
|
||||
if [[ "${I_AM_A_RACECAR}" == "y" ]];
|
||||
then
|
||||
RACECAR_CHK='nice -n -19 '
|
||||
else
|
||||
RACECAR_CHK=""
|
||||
fi
|
||||
|
||||
echo "Setting up EFI stuff..."
|
||||
|
||||
mkdir -p ${TEMPDIR}/{EFI/{${DISTNAME},boot},loader/entries}
|
||||
# this stuff comes from the prebootloader pkg and gummiboot pkg. lets us boot on UEFI machines with secureboot still enabled.
|
||||
cp ${BASEDIR}/root.x86_64/usr/lib/prebootloader/PreLoader.efi ${TEMPDIR}/EFI/boot/bootx64.efi
|
||||
cp ${BASEDIR}/root.x86_64/usr/lib/prebootloader/HashTool.efi ${TEMPDIR}/EFI/boot/.
|
||||
cp ${BASEDIR}/root.x86_64/usr/lib/gummiboot/gummibootx64.efi ${TEMPDIR}/EFI/boot/loader.efi # TODO: can i use syslinux.efi instead?
|
||||
|
||||
echo "Checking/fetching UEFI shells..."
|
||||
if [ ! -f "${TEMPDIR}/EFI/shellx64_v2.efi" ];
|
||||
then
|
||||
# EFI Shell 2.0 for UEFI 2.3+ ( http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=UEFI_Shell )
|
||||
curl -o ${TEMPDIR}/EFI/shellx64_v2.efi https://svn.code.sf.net/p/edk2/code/trunk/edk2/ShellBinPkg/UefiShell/X64/Shell.efi >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
if [ ! -f "${TEMPDIR}/EFI/shellx64_v1.efi" ];
|
||||
then
|
||||
# EFI Shell 1.0 for non UEFI 2.3+ ( http://sourceforge.net/apps/mediawiki/tianocore/index.php?title=Efi-shell )
|
||||
curl -o ${TEMPDIR}/EFI/shellx64_v1.efi https://svn.code.sf.net/p/edk2/code/trunk/edk2/EdkShellBinPkg/FullShell/X64/Shell_Full.efi >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
|
||||
# now for setting up loader config/entries. maybe add memtest or something in the future? i dunno.
|
||||
cat > ${TEMPDIR}/loader/loader.conf << EOF
|
||||
timeout 3
|
||||
default ${UXNAME}
|
||||
EOF
|
||||
cat > ${TEMPDIR}/loader/entries/${UXNAME}_ram.conf << EOF
|
||||
title ${PNAME} (RAM)
|
||||
linux /boot/${UXNAME}.kern
|
||||
initrd /boot/${UXNAME}.img
|
||||
options copytoram archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
EOF
|
||||
cat > ${TEMPDIR}/loader/entries/${UXNAME}.conf << EOF
|
||||
title ${PNAME} (Media)
|
||||
linux /boot/${UXNAME}.kern
|
||||
initrd /boot/${UXNAME}.img
|
||||
options archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
EOF
|
||||
cat > ${TEMPDIR}/loader/entries/uefi2.conf << EOF
|
||||
title UEFI Shell (v2)
|
||||
efi /EFI/shellx64_v2.efi
|
||||
EOF
|
||||
cat > ${TEMPDIR}/loader/entries/uefi1.conf << EOF
|
||||
title UEFI Shell (v1)
|
||||
efi /EFI/shellx64_v1.efi
|
||||
EOF
|
||||
|
||||
|
||||
# create the embedded efiboot FAT stuff
|
||||
# how big should we make the disk?
|
||||
echo "Generating the EFI embedded FAT filesystem..."
|
||||
# are we building split-arch ISOs?
|
||||
if [[ "${MULTIARCH}" == "n" ]];
|
||||
then
|
||||
rm -f ${TEMPDIR}/EFI/${DISTNAME}/efiboot.img
|
||||
fi
|
||||
# now we need to calculate the space for various files we're going to include...
|
||||
FATSIZE=$(stat --format="%s" ${TEMPDIR}/boot/${UXNAME}.64.kern) # EFI/BDISK/bdisk.efi
|
||||
FATSIZE=$((${FATSIZE} + $(stat --format="%s" ${TEMPDIR}/boot/${UXNAME}.64.img))) # EFI/BDISK/bdisk.img
|
||||
FATSIZE=$((${FATSIZE} + $(stat --format="%s" ${BASEDIR}/root.x86_64/usr/lib/prebootloader/PreLoader.efi))) # EFI/boot/bootx64.efi
|
||||
FATSIZE=$((${FATSIZE} + $(stat --format="%s" ${BASEDIR}/root.x86_64/usr/lib/prebootloader/HashTool.efi))) # EFI/boot/HashTool.efi
|
||||
FATSIZE=$((${FATSIZE} + $(stat --format="%s" ${BASEDIR}/root.x86_64/usr/lib/gummiboot/gummibootx64.efi))) # EFI/boot/loader.efi
|
||||
FATSIZE=$((${FATSIZE} + $(stat --format="%s" ${TEMPDIR}/EFI/shellx64_v1.efi)))
|
||||
FATSIZE=$((${FATSIZE} + $(stat --format="%s" ${TEMPDIR}/EFI/shellx64_v2.efi)))
|
||||
FATSIZE=$((${FATSIZE} + $(du -sb ${TEMPDIR}/loader | tail -n1 | awk '{print $1}'))) # loader/* (okay so i cheated a little here.)
|
||||
FATSIZE=$((${FATSIZE} + 786432)) # let's give a little wiggle room; 768k should do it. -_-
|
||||
${RACECAR_CHK}truncate -s "${FATSIZE}" ${TEMPDIR}/EFI/${DISTNAME}/efiboot.img
|
||||
${RACECAR_CHK}mkfs.vfat -F 32 -n ${DISTNAME}_EFI ${TEMPDIR}/EFI/${DISTNAME}/efiboot.img >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
mkdir -p ${SRCDIR}/efiboot
|
||||
mount ${TEMPDIR}/EFI/${DISTNAME}/efiboot.img ${SRCDIR}/efiboot
|
||||
mkdir -p ${SRCDIR}/efiboot/EFI/${DISTNAME}
|
||||
cp ${TEMPDIR}/boot/${UXNAME}.64.kern ${SRCDIR}/efiboot/EFI/${DISTNAME}/${UXNAME}.efi
|
||||
cp ${TEMPDIR}/boot/${UXNAME}.64.img ${SRCDIR}/efiboot/EFI/${DISTNAME}/${UXNAME}.img
|
||||
mkdir -p ${SRCDIR}/efiboot/{EFI/boot,loader/entries}
|
||||
# GETTING DEJA VU HERE.
|
||||
cat > ${SRCDIR}/efiboot/loader/loader.conf << EOF
|
||||
timeout 3
|
||||
default ${UXNAME}
|
||||
EOF
|
||||
cat > ${SRCDIR}/efiboot/loader/entries/${UXNAME}_ram.conf << EOF
|
||||
title ${PNAME} (RAM)
|
||||
linux /EFI/${DISTNAME}/${UXNAME}.efi
|
||||
initrd /EFI/${DISTNAME}/${UXNAME}.img
|
||||
options copytoram archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
EOF
|
||||
cat > ${SRCDIR}/efiboot/loader/entries/${UXNAME}.conf << EOF
|
||||
title ${PNAME} (Media)
|
||||
linux /EFI/${DISTNAME}/${UXNAME}.efi
|
||||
initrd /EFI/${DISTNAME}/${UXNAME}.img
|
||||
options archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
EOF
|
||||
cat > ${SRCDIR}/efiboot/loader/entries/uefi2.conf << EOF
|
||||
title UEFI Shell (v2)
|
||||
efi /EFI/shellx64_v2.efi
|
||||
EOF
|
||||
cat > ${SRCDIR}/efiboot/loader/entries/uefi1.conf << EOF
|
||||
title UEFI Shell (v1)
|
||||
efi /EFI/shellx64_v1.efi
|
||||
EOF
|
||||
|
||||
cp ${BASEDIR}/root.x86_64/usr/lib/prebootloader/PreLoader.efi ${SRCDIR}/efiboot/EFI/boot/bootx64.efi
|
||||
cp ${BASEDIR}/root.x86_64/usr/lib/prebootloader/HashTool.efi ${SRCDIR}/efiboot/EFI/boot/.
|
||||
cp ${BASEDIR}/root.x86_64/usr/lib/gummiboot/gummibootx64.efi ${SRCDIR}/efiboot/EFI/boot/loader.efi # TODO: can i use syslinux.efi instead?
|
||||
cp ${TEMPDIR}/EFI/shellx64_v{1,2}.efi ${SRCDIR}/efiboot/EFI/.
|
||||
umount ${SRCDIR}/efiboot
|
||||
echo "EFI configuration complete..."
|
||||
|
||||
}
|
||||
|
||||
@@ -1,356 +0,0 @@
|
||||
function yo_dj () {
|
||||
ARCH="${1}"
|
||||
echo "Building the actual .iso image. This may take a while."
|
||||
im_batman
|
||||
ISOFILENAME="${UXNAME}-${VERSION}.iso"
|
||||
#MINIFILENAME="${UXNAME}-${VERSION}-mini.iso"
|
||||
MINIFILENAME="${UXNAME}-mini.iso"
|
||||
USBFILENAME="${UXNAME}-mini.usb.img"
|
||||
if [[ "${MULTIARCH}" == "y" ]];
|
||||
then
|
||||
ISOFILENAME="${UXNAME}-${VERSION}-any.iso"
|
||||
else
|
||||
ISOFILENAME="${UXNAME}-${VERSION}-${ARCH}.iso"
|
||||
fi
|
||||
|
||||
if [[ "${I_AM_A_RACECAR}" == "y" ]];
|
||||
then
|
||||
RACECAR_CHK='nice -n -19 '
|
||||
else
|
||||
RACECAR_CHK=""
|
||||
fi
|
||||
|
||||
# and why not? generate the ISO.
|
||||
## we need to generate the isolinux.cfg
|
||||
mkdir -p ${TEMPDIR}/isolinux
|
||||
if [[ "${MULTIARCH}" == "y" ]];
|
||||
then
|
||||
## MULTIARCH ISO
|
||||
cat > ${TEMPDIR}/isolinux/isolinux.cfg << EOF
|
||||
UI vesamenu.c32
|
||||
DEFAULT check
|
||||
PROMPT 0
|
||||
TIMEOUT 50
|
||||
MENU HIDDEN
|
||||
#ONTIMEOUT ${UXNAME}_ram
|
||||
ONTIMEOUT check
|
||||
MENU TABMSG Press [TAB] to edit options
|
||||
#MENU TITLE ${PNAME} (ISO edition)
|
||||
MENU ROWS 16
|
||||
MENU TIMEOUTROW 22
|
||||
MENU TABMSGROW 24
|
||||
MENU CMDLINEROW 24
|
||||
MENU HELPMSGROW 26
|
||||
MENU WIDTH 78
|
||||
MENU MARGIN 6
|
||||
MENU IMMEDIATE
|
||||
# http://www.colorpicker.com/
|
||||
MENU color border 0 #00000000 #00000000 none
|
||||
MENU color title 0 #FFF5B800 #00000000 std
|
||||
MENU color sel 7;37;40 #FF000000 #FFFFFFFF all
|
||||
MENU color hotsel 1;7;37;40 #FFFF0000 #FFC0C0C0 all
|
||||
MENU color hotkey 1;7;37;40 #FF0000CC #FFC0C0C0 all
|
||||
MENU color tabmsg 1;31;40 #FF808080 #00000000 std
|
||||
MENU color help 1;31;40 #FFFFFFFF #FF000000 none
|
||||
MENU color timeout_msg 0 #FFFFB300 #00000000 none
|
||||
MENU color timeout 0 #FFFF0000 #FF000000 none
|
||||
MENU color cmdline 0 #FFFFFFFF #FF000000 none
|
||||
MENU color cmdmark 1;36;40 #C000FFFF #FF000000 std
|
||||
MENU color scrollbar 30;44 #FF00FF00 #FF000000 std
|
||||
MENU color msg07 0 #FF000000 #00FFFFFF none
|
||||
MENU BACKGROUND /${UXNAME}.png
|
||||
|
||||
LABEL check
|
||||
MENU LABEL Your best supported kernel should be detected automatically.
|
||||
COM32 ifcpu64.c32
|
||||
APPEND ${UXNAME}_64 -- ${UXNAME}_32
|
||||
MENU DEFAULT
|
||||
|
||||
|
||||
|
||||
LABEL local_override
|
||||
MENU LABEL Local ^Boot
|
||||
localboot 0
|
||||
TEXT HELP
|
||||
Boot from the local system instead.
|
||||
ENDTEXT
|
||||
|
||||
LABEL reboot
|
||||
MENU LABEL ^Reboot
|
||||
COM32 reboot.c32
|
||||
TEXT HELP
|
||||
Reboot the machine
|
||||
ENDTEXT
|
||||
|
||||
MENU SEPARATOR
|
||||
|
||||
## 64 BIT
|
||||
MENU BEGIN 64BIT
|
||||
MENU LABEL ^1) 64-Bit ...
|
||||
ONTIMEOUT ${UXNAME}_64
|
||||
|
||||
LABEL ${UXNAME}_ram_64
|
||||
MENU LABEL ^1) ${PNAME} (run from RAM)
|
||||
LINUX /boot/${UXNAME}.64.kern
|
||||
INITRD /boot/${UXNAME}.64.img
|
||||
APPEND copytoram archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
TEXT HELP
|
||||
64-bit, run from RAM
|
||||
ENDTEXT
|
||||
MENU DEFAULT
|
||||
|
||||
LABEL ${UXNAME}_64
|
||||
MENU LABEL ^1) ${PNAME} (Default)
|
||||
LINUX /boot/${UXNAME}.64.kern
|
||||
INITRD /boot/${UXNAME}.64.img
|
||||
APPEND archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
TEXT HELP
|
||||
Same as the above, except run directly from the CD-
|
||||
don't copy the image to RAM. (Best for lower-memory boxes)
|
||||
ENDTEXT
|
||||
|
||||
MENU END
|
||||
|
||||
MENU BEGIN 32BIT
|
||||
MENU LABEL ^2) 32-Bit ...
|
||||
ONTIMEOUT ${UXNAME}_32
|
||||
|
||||
## 32 BIT
|
||||
LABEL ${UXNAME}_ram_32
|
||||
MENU LABEL ^1) ${PNAME} (run from RAM)
|
||||
LINUX /boot/${UXNAME}.32.kern
|
||||
INITRD /boot/${UXNAME}.32.img
|
||||
APPEND copytoram archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
TEXT HELP
|
||||
32-bit, run from RAM
|
||||
ENDTEXT
|
||||
MENU DEFAULT
|
||||
|
||||
LABEL ${UXNAME}_32
|
||||
MENU LABEL ^2) ${PNAME} (Default)
|
||||
LINUX /boot/${UXNAME}.32.kern
|
||||
INITRD /boot/${UXNAME}.32.img
|
||||
APPEND archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
TEXT HELP
|
||||
Same as the above, except run directly from the CD-
|
||||
don't copy the image to RAM. (Best for lower-memory boxes)
|
||||
ENDTEXT
|
||||
|
||||
MENU END
|
||||
EOF
|
||||
else
|
||||
## ARCH-SPECIFIC ISO
|
||||
cat > ${TEMPDIR}/isolinux/isolinux.cfg << EOF
|
||||
UI vesamenu.c32
|
||||
DEFAULT check
|
||||
PROMPT 0
|
||||
TIMEOUT 50
|
||||
MENU HIDDEN
|
||||
ONTIMEOUT ${UXNAME}_ram_${ARCH}
|
||||
MENU TABMSG Press [TAB] to edit options
|
||||
#MENU TITLE ${PNAME} (ISO edition)
|
||||
MENU ROWS 16
|
||||
MENU TIMEOUTROW 22
|
||||
MENU TABMSGROW 24
|
||||
MENU CMDLINEROW 24
|
||||
MENU HELPMSGROW 26
|
||||
MENU WIDTH 78
|
||||
MENU MARGIN 6
|
||||
MENU IMMEDIATE
|
||||
# http://www.colorpicker.com/
|
||||
MENU color border 0 #00000000 #00000000 none
|
||||
MENU color title 0 #FFF5B800 #00000000 std
|
||||
MENU color sel 7;37;40 #FF000000 #FFFFFFFF all
|
||||
MENU color hotsel 1;7;37;40 #FFFF0000 #FFC0C0C0 all
|
||||
MENU color hotkey 1;7;37;40 #FF0000CC #FFC0C0C0 all
|
||||
MENU color tabmsg 1;31;40 #FF808080 #00000000 std
|
||||
MENU color help 1;31;40 #FFFFFFFF #FF000000 none
|
||||
MENU color timeout_msg 0 #FFFFB300 #00000000 none
|
||||
MENU color timeout 0 #FFFF0000 #FF000000 none
|
||||
MENU color cmdline 0 #FFFFFFFF #FF000000 none
|
||||
MENU color cmdmark 1;36;40 #C000FFFF #FF000000 std
|
||||
MENU color scrollbar 30;44 #FF00FF00 #FF000000 std
|
||||
MENU color msg07 0 #FF000000 #00FFFFFF none
|
||||
MENU BACKGROUND /${UXNAME}.png
|
||||
|
||||
LABEL local_override
|
||||
MENU LABEL Local ^Boot
|
||||
localboot 0
|
||||
TEXT HELP
|
||||
Boot from the local system instead.
|
||||
ENDTEXT
|
||||
|
||||
LABEL reboot
|
||||
MENU LABEL ^Reboot
|
||||
COM32 reboot.c32
|
||||
TEXT HELP
|
||||
Reboot the machine
|
||||
ENDTEXT
|
||||
|
||||
MENU SEPARATOR
|
||||
|
||||
MENU BEGIN ${ARCH}BIT
|
||||
MENU LABEL ^1) ${ARCH}-Bit ...
|
||||
ONTIMEOUT ${UXNAME}_${ARCH}
|
||||
|
||||
LABEL ${UXNAME}_ram_${ARCH}
|
||||
MENU LABEL ^1) ${PNAME} (run from RAM)
|
||||
LINUX /boot/${UXNAME}.${ARCH}.kern
|
||||
INITRD /boot/${UXNAME}.${ARCH}.img
|
||||
APPEND copytoram archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
TEXT HELP
|
||||
${ARCH}-bit, run from RAM
|
||||
ENDTEXT
|
||||
MENU DEFAULT
|
||||
|
||||
LABEL ${UXNAME}_${ARCH}
|
||||
MENU LABEL ^1) ${PNAME} (Default)
|
||||
LINUX /boot/${UXNAME}.${ARCH}.kern
|
||||
INITRD /boot/${UXNAME}.${ARCH}.img
|
||||
APPEND archisobasedir=${DISTNAME} archisolabel=${DISTNAME}
|
||||
TEXT HELP
|
||||
Same as the above, except run directly from the CD-
|
||||
don't copy the image to RAM. (Best for lower-memory boxes)
|
||||
ENDTEXT
|
||||
|
||||
MENU END
|
||||
EOF
|
||||
fi
|
||||
|
||||
stuffy
|
||||
|
||||
rm -f ${ISOFILENAME}
|
||||
if [ "${ARCHBOOT}" != "${TEMPDIR}/${DISTNAME}" ];
|
||||
then
|
||||
mkdir -p ${TEMPDIR}/${DISTNAME}
|
||||
rsync -a --delete ${ARCHBOOT}/. ${TEMPDIR}/${DISTNAME}/.
|
||||
fi
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/isolinux.bin ${TEMPDIR}/isolinux
|
||||
#cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/isolinux-debug.bin ${TEMPDIR}/isolinux/isolinux.bin #debugging
|
||||
#cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/* ${TEMPDIR}/isolinux/. #debugging
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/vesamenu.c32 ${TEMPDIR}/isolinux
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/linux.c32 ${TEMPDIR}/isolinux
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/reboot.c32 ${TEMPDIR}/isolinux
|
||||
if [ -f ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/ldlinux.c32 ];
|
||||
then
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/ldlinux.c32 ${TEMPDIR}/isolinux
|
||||
fi
|
||||
if [ -f ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/libcom32.c32 ];
|
||||
then
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/libcom32.c32 ${TEMPDIR}/isolinux
|
||||
fi
|
||||
if [ -f ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/libutil.c32 ];
|
||||
then
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/libutil.c32 ${TEMPDIR}/isolinux
|
||||
fi
|
||||
if [ -f ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/ifcpu64.c32 ];
|
||||
then
|
||||
cp -af ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/ifcpu64.c32 ${TEMPDIR}/isolinux
|
||||
fi
|
||||
cd ${TEMPDIR}
|
||||
|
||||
cd ..
|
||||
${RACECAR_CHK}xorriso -as mkisofs \
|
||||
`#-quiet` \
|
||||
`#-joliet` \
|
||||
`#-rock` \
|
||||
`#-omit-version-number` \
|
||||
`#-disable-deep-relocation` \
|
||||
-iso-level 3 \
|
||||
-full-iso9660-filenames \
|
||||
-volid "${DISTNAME}" \
|
||||
-appid "${DISTDESC}" \
|
||||
-publisher "${DISTPUB}" \
|
||||
`#-preparer "prepared by ${0}"` \
|
||||
-preparer "prepared by ${DISTPUB}" \
|
||||
-eltorito-boot isolinux/isolinux.bin \
|
||||
-eltorito-catalog isolinux/boot.cat \
|
||||
`#-isohybrid-mbr ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/isohdpfx.bin` \
|
||||
-no-emul-boot \
|
||||
-boot-load-size 4 \
|
||||
-boot-info-table \
|
||||
-isohybrid-mbr ${BASEDIR}/root.x86_64/usr/lib/syslinux/bios/isohdpfx.bin \
|
||||
-eltorito-alt-boot \
|
||||
-e EFI/${DISTNAME}/efiboot.img \
|
||||
-no-emul-boot \
|
||||
`#--efi-boot EFI/${DISTNAME}/efiboot.img` \
|
||||
-isohybrid-gpt-basdat \
|
||||
-output "${ISODIR}/${ISOFILENAME}" "${TEMPDIR}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
|
||||
## Build the mini-ISO ##
|
||||
if [[ "${BUILDMINI}" == "y" ]];
|
||||
then
|
||||
echo "Now generating the iPXE images; please wait..."
|
||||
git submodule init >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
git submodule update >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
cd ${BASEDIR}/src/ipxe/src
|
||||
git clean -xdf > /dev/null 2>&1
|
||||
git reset --hard HEAD >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
git checkout master >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
git pull >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
git checkout master >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for i in $(find ${BASEDIR}/src/ipxe_local/patches/ -type f -iname "*.patch" -printf '%P\n' | sort);
|
||||
do
|
||||
patch -Np2 < ${BASEDIR}/src/ipxe_local/patches/${i} >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
done
|
||||
# Generate the iPXE EMBED script...
|
||||
sed -re "s,^(chain\ ).*$,\1${IPXE_URI},g" \
|
||||
-e 's/%%COMMA%%/,/g' ${BASEDIR}/src/ipxe_local/EMBED > ${SRCDIR}/EMBED
|
||||
#make everything EMBED="${SRCDIR}/EMBED" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
make bin-i386-efi/ipxe.efi bin-x86_64-efi/ipxe.efi EMBED="${SRCDIR}/EMBED" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
make bin/ipxe.eiso bin/ipxe.usb EMBED="${SRCDIR}/EMBED" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
# Change this to USB-only...
|
||||
#make all EMBED="${BASEDIR}/src/ipxe_local/EMBED" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
mv -f ${BASEDIR}/src/ipxe/src/bin/ipxe.usb ${ISODIR}/${USBFILENAME}
|
||||
mv -f ${BASEDIR}/src/ipxe/src/bin/ipxe.eiso ${ISODIR}/${MINIFILENAME}
|
||||
make clean >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
git reset --hard >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
git clean -xdf > /dev/null 2>&1
|
||||
git checkout master > /dev/null 2>&1
|
||||
#git reset --hard HEAD > /dev/null 2>&1
|
||||
echo
|
||||
fi
|
||||
|
||||
#isohybrid ${ISOFILENAME}
|
||||
cd ${ISODIR}
|
||||
${RACECAR_CHK}sha256sum ${ISOFILENAME} > ${ISOFILENAME}.sha256
|
||||
if [[ "${BUILDMINI}" == "y" ]];
|
||||
then
|
||||
${RACECAR_CHK}sha256sum ${MINIFILENAME} > ${MINIFILENAME}.sha256
|
||||
${RACECAR_CHK}sha256sum ${USBFILENAME} > ${USBFILENAME}.sha256
|
||||
fi
|
||||
cd ..
|
||||
echo "=ISO="
|
||||
echo "Size: $(ls -lh ${ISODIR}/${ISOFILENAME} | awk '{print $5}')"
|
||||
echo "SHA256: $(awk '{print $1}' ${ISODIR}/${ISOFILENAME}.sha256)"
|
||||
echo "Location: ${ISODIR}/${ISOFILENAME}"
|
||||
if [[ "${BUILDMINI}" == "y" ]];
|
||||
then
|
||||
echo "=Mini="
|
||||
echo "Size: $(ls -lh ${ISODIR}/${MINIFILENAME} | awk '{print $5}')"
|
||||
echo "SHA256: $(awk '{print $1}' ${ISODIR}/${MINIFILENAME}.sha256)"
|
||||
echo "Location: ${ISODIR}/${MINIFILENAME}"
|
||||
echo "=Mini USB="
|
||||
echo "Size: $(ls -lh ${ISODIR}/${USBFILENAME} | awk '{print $5}')"
|
||||
echo "SHA256: $(awk '{print $1}' ${ISODIR}/${USBFILENAME}.sha256)"
|
||||
echo "Location: ${ISODIR}/${USBFILENAME}"
|
||||
fi
|
||||
#rm -rf ${TEMPDIR}/*
|
||||
|
||||
# are we rsyncing?
|
||||
if [ -n "${RSYNC_HOST}" ];
|
||||
then
|
||||
echo
|
||||
echo "Now sending to ${RSYNC_HOST} via rsync. This may take a while..."
|
||||
echo "Sending TFTP files..."
|
||||
rsync -az --info=progress2 ${TFTPDIR} ${RSYNC_HOST}:${RSYNC_DEST}/.
|
||||
echo "Sending HTTP files..."
|
||||
rsync -az --info=progress2 ${HTTPDIR} ${RSYNC_HOST}:${RSYNC_DEST}/.
|
||||
# rsync -a ${TEMPDIR}/boot/${UXNAME}.* ${RSYNC_HOST}:${RSYNC_DEST}/http/.
|
||||
echo "Sending the image files..."
|
||||
rsync -az --info=progress2 ${ISODIR} ${RSYNC_HOST}:${RSYNC_DEST}/.
|
||||
echo "Sending extra files..."
|
||||
rsync -az --info=progress2 ${BASEDIR}/extra/packages.* ${RSYNC_HOST}:${RSYNC_DEST}/.
|
||||
rsync -az --info=progress2 ${BASEDIR}/VERSION_INFO.txt ${RSYNC_HOST}:${RSYNC_DEST}/.
|
||||
fi
|
||||
}
|
||||
@@ -1,99 +0,0 @@
|
||||
function mentos {
|
||||
# Freshen up the chroots to git's HEAD. Package lists, overlay, etc.
|
||||
sed -i -e '/base-devel/d ; /multilib-devel/d' ${BASEDIR}/extra/packages.*
|
||||
# both
|
||||
echo "Installing common packages..."
|
||||
PKGLIST=$(sed -e '/^[[:space:]]*#/d ; /^[[:space:]]*$/d' ${BASEDIR}/extra/packages.both | tr '\n' ' ')
|
||||
|
||||
if [ -f "/usr/bin/systemd-nspawn" ];
|
||||
then
|
||||
CHROOTCMD="systemd-nspawn -D"
|
||||
else
|
||||
CHROOTCMD="${CHROOTDIR64}/bin/arch-chroot"
|
||||
fi
|
||||
|
||||
if [[ "${I_AM_A_RACECAR}" == "y" ]];
|
||||
then
|
||||
RACECAR_CHK='nice -n -19 '
|
||||
else
|
||||
RACECAR_CHK=""
|
||||
fi
|
||||
|
||||
if [[ -n $(find ${BASEDIR}/extra/pre-build.d/ -type f -newer ${BASEDIR}/root.x86_64/boot/vmlinuz-linux-${PNAME}) ]];
|
||||
then
|
||||
touch ${LOCKFILE}
|
||||
sleep 2
|
||||
find ${BASEDIR}/extra/pre-build.d/ -exec touch '{}' \;
|
||||
rsync -a ${BASEDIR}/extra/pre-build.d/64/. ${BASEDIR}/root.x86_64/.
|
||||
rsync -a ${BASEDIR}/extra/pre-build.d/32/. ${BASEDIR}/root.i686/.
|
||||
find ${BASEDIR}/root.x86_64/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
find ${BASEDIR}/root.i686/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
fi
|
||||
|
||||
for i in ${CHROOTDIR32} ${CHROOTDIR64};
|
||||
do
|
||||
echo -n "...Packages installing/upgrading to ${i}..."
|
||||
local INSTKERN=$(file ${i}/boot/vmlinuz-linux-${PNAME} | awk '{print $9}' | cut -f1 -d"-")
|
||||
local MIRROR=$(egrep '^Server' ${i}/etc/pacman.d/mirrorlist | head -n1 | sed -e 's/^Server\ =\ //g ; s#$repo.*#core/os/x86_64/#g')
|
||||
local NEWKERN=$(curl -s "${MIRROR}" | grep linux | awk '{print $3}' | cut -f2 -d\" | egrep '^linux-[0-9].*pkg.tar.xz$' | cut -f2 -d"-")
|
||||
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
${CHROOTCMD} ${i}/ bash -c "${RACECAR_CHK}apacman --noconfirm --noedit --skipinteg -S --needed --purgebuild --ignore linux ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
for x in $(find ${i}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
${CHROOTCMD} ${i}/ /usr/bin/bash -c "mkinitcpio -p linux" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
#${CHROOTCMD} ${i}/ bash -c "apacman --noconfirm --noedit --skipinteg -S --needed ${PKGLIST}"
|
||||
cp -a ${i}/boot/vmlinuz-linux ${i}/boot/vmlinuz-linux-${PNAME}
|
||||
cp -a ${i}/boot/initramfs-linux.img ${i}/boot/initramfs-linux-${PNAME}.img
|
||||
echo "Done."
|
||||
done
|
||||
|
||||
# we need to set -e for the following as they may fail.
|
||||
# 32-bit
|
||||
echo "Installing packages for 32-bit..."
|
||||
PKGLIST=$(sed -e '/^[[:space:]]*#/d ; /^[[:space:]]*$/d' ${BASEDIR}/extra/packages.32 | tr '\n' ' ')
|
||||
if [ -n "${PKGLIST}" ];
|
||||
then
|
||||
${CHROOTCMD} ${CHROOTDIR32}/ bash -c "yes '' | ${RACECAR_CHK}apacman --noconfirm --noedit --skipinteg -S --needed --purgebuild ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
for x in $(find ${CHROOTDIR32}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
|
||||
# 64-bit
|
||||
echo "Installing packages for 64-bit..."
|
||||
PKGLIST=$(sed -e '/^[[:space:]]*#/d ; /^[[:space:]]*$/d' ${BASEDIR}/extra/packages.64 | tr '\n' ' ')
|
||||
if [ -n "${PKGLIST}" ];
|
||||
then
|
||||
${CHROOTCMD} ${CHROOTDIR64}/ bash -c "yes '' | ${RACECAR_CHK}apacman --noconfirm --noedit --skipinteg -S --needed --purgebuild ${PKGLIST}" >> "${LOGFILE}.${FUNCNAME}" 2>&1
|
||||
fi
|
||||
for x in $(find ${CHROOTDIR64}/etc/ -type f -iname "*.pacorig");do mv -f ${x} ${x%.pacorig} ; done
|
||||
#${CHROOTCMD} ${CHROOTDIR64}/ bash -c "apacman --noconfirm --noedit --skipinteg -S --needed ${PKGLIST}"
|
||||
echo "Syncing overlay..."
|
||||
rsync -a ${BASEDIR}/overlay/64/. ${CHROOTDIR64}/.
|
||||
echo "Done."
|
||||
|
||||
echo "Syncing overlay..."
|
||||
touch ${LOCKFILE}
|
||||
sleep 2
|
||||
find ${BASEDIR}/overlay -exec touch '{}' \;
|
||||
rsync -a --exclude '/32' --exclude '/64' ${BASEDIR}/overlay/. ${CHROOTDIR64}/.
|
||||
rsync -a --exclude '/32' --exclude '/64' ${BASEDIR}/overlay/. ${CHROOTDIR32}/.
|
||||
rsync -a ${BASEDIR}/overlay/32/. ${CHROOTDIR32}/.
|
||||
rsync -a ${BASEDIR}/overlay/64/. ${CHROOTDIR64}/.
|
||||
find ${CHROOTDIR64}/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
find ${CHROOTDIR32}/ -newer ${LOCKFILE} -exec chown -R root:root '{}' \;
|
||||
chown -R 1000:1000 ${CHROOTDIR32}/home/${REGUSR}
|
||||
chown -R 1000:1000 ${CHROOTDIR64}/home/${REGUSR}
|
||||
find ${CHROOTDIR64}/home/${REGUSR}/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR64}/home/${REGUSR}/ -type f -exec chmod 600 '{}' \;
|
||||
find ${CHROOTDIR32}/home/${REGUSR}/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR32}/home/${REGUSR}/ -type f -exec chmod 600 '{}' \;
|
||||
chown -R 0:0 ${CHROOTDIR32}/root
|
||||
chown -R 0:0 ${CHROOTDIR64}/root
|
||||
find ${CHROOTDIR64}/root/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR64}/root/ -type f -exec chmod 600 '{}' \;
|
||||
find ${CHROOTDIR32}/root/ -type d -exec chmod 700 '{}' \;
|
||||
find ${CHROOTDIR32}/root/ -type f -exec chmod 600 '{}' \;
|
||||
chmod 600 ${CHROOTDIR64}/etc/ssh/*
|
||||
chmod 600 ${CHROOTDIR32}/etc/ssh/*
|
||||
echo "Done."
|
||||
|
||||
}
|
||||
@@ -50,9 +50,10 @@ echo "==================================="
|
||||
date
|
||||
if [ -n "${DEFROUTEIF}" ];
|
||||
then
|
||||
IPADDR=$(ip a s dev ${DEFROUTEIF} | egrep '^[[:space:]]*inet\ ' | awk '{print $2}' | cut -f1 -d"/")
|
||||
HWADDR=$(ip l show dev ${DEFROUTEIF} | egrep '^[[:space:]]*link' | awk '{print $2}')
|
||||
echo
|
||||
echo -n "${DEFROUTEIF} is: "
|
||||
ifconfig "${DEFROUTEIF}" | egrep 'inet|ether' | grep -v "inet6" | awk '{print $2}'
|
||||
echo -n "${DEFROUTEIF} (${HWADDR}) is: ${IPADDR}"
|
||||
fi
|
||||
echo
|
||||
echo -n "tun0 is:"
|
||||
|
||||
@@ -1,11 +1,6 @@
|
||||
#/bin/sh -
|
||||
|
||||
#chmod 4755 /opt/google/chrome-beta/chrome-sandbox
|
||||
mkdir -p /var/db/sudo/lectured
|
||||
touch /var/db/sudo/lectured/bdisk
|
||||
chmod 700 /var/db/sudo/lectured
|
||||
chgrp bdisk /var/db/sudo/lectured/bdisk
|
||||
chmod 600 /var/db/sudo/lectured/bdisk
|
||||
chmod 4755 /usr/bin/sudo
|
||||
|
||||
function fuck_you_gimme_net() {
|
||||
|
||||
2
src/ipxe
2
src/ipxe
Submodule src/ipxe updated: 24112d91a0...0a4805bf94
10
src/ipxe_local/00-general.sed
Normal file
10
src/ipxe_local/00-general.sed
Normal file
@@ -0,0 +1,10 @@
|
||||
## Enable IPv6 support
|
||||
s/^#undef([[:space:]]*NET_PROTO_IPV6)/#define\1/g
|
||||
## Enable HTTPS
|
||||
s/^#undef([[:space:]]*DOWNLOAD_PROTO_HTTPS)/#define\1/g
|
||||
s@^//(#define[[:space:]]*IMAGE_TRUST_CMD@\1@g
|
||||
## Enable FTP
|
||||
s/^#undef([[:space:]]*DOWNLOAD_PROTO_FTP)/#define\1/g
|
||||
## Currently broken for EFI building
|
||||
#s@^//(#define[[:space:]]*CONSOLE_CMD)@\1@g
|
||||
#s@^//(#define[[:space:]]*IMAGE_PNG@\1@g
|
||||
2
src/ipxe_local/01-console.sed
Normal file
2
src/ipxe_local/01-console.sed
Normal file
@@ -0,0 +1,2 @@
|
||||
## Currently broken on EFI systems
|
||||
#s@^//(#define[[:space:]]*CONSOLE_VESAFB)@\1@g
|
||||
@@ -1,4 +1,8 @@
|
||||
#!ipxe
|
||||
|
||||
dhcp
|
||||
## TODO: signed kernel and initrd
|
||||
#imgtrust --permanent
|
||||
#imgverify vmlinuz path/to/vmlinuz.sig
|
||||
#imgverify initrd path/to/initrd.sig
|
||||
chain https://bdisk.square-r00t.net
|
||||
|
||||
@@ -1,14 +1,13 @@
|
||||
From ddf6f6ac945654b00121ab899fb0bbb63293e51e Mon Sep 17 00:00:00 2001
|
||||
From d2092664b3cf866b2ab338fe056149d3266d0acc Mon Sep 17 00:00:00 2001
|
||||
From: Christian Hesse <mail@eworm.de>
|
||||
Date: Tue, 7 Apr 2015 16:04:31 +0200
|
||||
Subject: [PATCH 1/2] [build] allow to build ISO image with EFI support
|
||||
(ipxe.eiso)
|
||||
Date: Sun, 19 Apr 2015 13:16:09 +0200
|
||||
Subject: [PATCH 1/1] allow to build ISO image with EFI support (ipxe.eiso)
|
||||
|
||||
Signed-off-by: Christian Hesse <mail@eworm.de>
|
||||
---
|
||||
src/arch/i386/Makefile.pcbios | 6 ++++++
|
||||
src/util/geniso | 39 ++++++++++++++++++++++++++++++---------
|
||||
2 files changed, 36 insertions(+), 9 deletions(-)
|
||||
src/arch/i386/Makefile.pcbios | 6 +++++
|
||||
src/util/geniso | 52 +++++++++++++++++++++++++++++++++----------
|
||||
2 files changed, 46 insertions(+), 12 deletions(-)
|
||||
|
||||
diff --git a/src/arch/i386/Makefile.pcbios b/src/arch/i386/Makefile.pcbios
|
||||
index ff82373..c7a58eb 100644
|
||||
@@ -28,14 +27,14 @@ index ff82373..c7a58eb 100644
|
||||
NON_AUTO_MEDIA += liso
|
||||
%liso: %lkrn util/geniso
|
||||
diff --git a/src/util/geniso b/src/util/geniso
|
||||
index 521c929..998370d 100755
|
||||
index 521c929..9e8588c 100755
|
||||
--- a/src/util/geniso
|
||||
+++ b/src/util/geniso
|
||||
@@ -6,16 +6,21 @@ function help() {
|
||||
echo "usage: ${0} [OPTIONS] foo.lkrn [bar.lkrn,...]"
|
||||
echo
|
||||
echo "where OPTIONS are:"
|
||||
+ echo " -e build image with EFI support"
|
||||
+ echo " -e build image with EFI support"
|
||||
echo " -h show this help"
|
||||
echo " -l build legacy image with floppy emulation"
|
||||
echo " -o FILE save iso image to file"
|
||||
@@ -54,49 +53,47 @@ index 521c929..998370d 100755
|
||||
h)
|
||||
help
|
||||
exit 0
|
||||
@@ -37,23 +42,24 @@ if [ -z "${OUT}" ]; then
|
||||
@@ -37,17 +42,25 @@ if [ -z "${OUT}" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
-# There should either be mkisofs or the compatible genisoimage program
|
||||
-for command in genisoimage mkisofs; do
|
||||
+# We require xorriso (from libisoburn) for EFI support
|
||||
+# genisoimage and mkisofs are missing some features
|
||||
+for command in xorriso; do
|
||||
if ${command} --version >/dev/null 2>/dev/null; then
|
||||
- if ${command} --version >/dev/null 2>/dev/null; then
|
||||
- mkisofs=(${command})
|
||||
+ xorriso=(${command})
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
- break
|
||||
- fi
|
||||
-done
|
||||
-
|
||||
-if [ -z "${mkisofs}" ]; then
|
||||
- echo "${0}: mkisofs or genisoimage not found, please install or set PATH" >&2
|
||||
+if [ -z "${xorriso}" ]; then
|
||||
+ echo "${0}: xorriso not found, please install or set PATH" >&2
|
||||
+# We need xorriso (from libisoburn) for EFI support, so try that first.
|
||||
+if xorriso --version >/dev/null 2>/dev/null; then
|
||||
+ mkisofs=(xorriso -as mkisofs)
|
||||
+elif [ ${EFI} -eq 1 ]; then
|
||||
+ echo "${0}: xorriso not found, but required for EFI support. Please install." >&2
|
||||
exit 1
|
||||
+else
|
||||
+ # fall back to mkisofs or the compatible genisoimage program
|
||||
+ for command in genisoimage mkisofs; do
|
||||
+ if ${command} --version >/dev/null 2>/dev/null; then
|
||||
+ mkisofs=(${command})
|
||||
+ break
|
||||
+ fi
|
||||
+ done
|
||||
+
|
||||
+ if [ -z "${mkisofs}" ]; then
|
||||
+ echo "${0}: mkisofs or genisoimage not found, please install or set PATH" >&2
|
||||
+ exit 1
|
||||
+ fi
|
||||
fi
|
||||
|
||||
dir=$(mktemp -d bin/iso.dir.XXXXXX)
|
||||
cfg=${dir}/isolinux.cfg
|
||||
|
||||
-mkisofs+=(-quiet -l -volid "iPXE" -preparer "iPXE build system"
|
||||
+xorriso+=(-as mkisofs -quiet -l -volid "iPXE" -preparer "iPXE build system"
|
||||
-appid "iPXE ${VERSION} - Open Source Network Boot Firmware"
|
||||
-publisher "http://ipxe.org/" -c boot.cat)
|
||||
|
||||
@@ -116,12 +122,27 @@ case "${LEGACY}" in
|
||||
fi
|
||||
|
||||
# generate the iso image
|
||||
- "${mkisofs[@]}" -b boot.img -output ${OUT} ${dir}
|
||||
+ "${xorriso[@]}" -b boot.img -output ${OUT} ${dir}
|
||||
;;
|
||||
0)
|
||||
@@ -122,6 +135,21 @@ case "${LEGACY}" in
|
||||
# copy isolinux bootloader
|
||||
cp ${ISOLINUX_BIN} ${dir}
|
||||
|
||||
+ xorriso+=(-b isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table)
|
||||
+ mkisofs+=(-b isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table)
|
||||
+
|
||||
+ if [ "${EFI}" -eq 1 ]; then
|
||||
+ # generate EFI image
|
||||
@@ -108,18 +105,18 @@ index 521c929..998370d 100755
|
||||
+ mcopy -m -i ${img} bin-x86_64-efi/ipxe.efi "::EFI/BOOT/BOOTX64.EFI"
|
||||
+ mcopy -m -i ${img} bin-i386-efi/ipxe.efi "::EFI/BOOT/BOOTIA32.EFI"
|
||||
+
|
||||
+ xorriso+=(-eltorito-alt-boot -e efiboot.img -isohybrid-gpt-basdat -no-emul-boot)
|
||||
+ mkisofs+=(-eltorito-alt-boot -e efiboot.img -isohybrid-gpt-basdat -no-emul-boot)
|
||||
+ fi
|
||||
+
|
||||
# syslinux 6.x needs a file called ldlinux.c32
|
||||
LDLINUX_C32=$(dirname ${ISOLINUX_BIN})/ldlinux.c32
|
||||
if [ -s ${LDLINUX_C32} ]; then
|
||||
@@ -129,7 +150,7 @@ case "${LEGACY}" in
|
||||
@@ -129,7 +157,7 @@ case "${LEGACY}" in
|
||||
fi
|
||||
|
||||
# generate the iso image
|
||||
- "${mkisofs[@]}" -b isolinux.bin -no-emul-boot -boot-load-size 4 -boot-info-table -output ${OUT} ${dir}
|
||||
+ "${xorriso[@]}" -output ${OUT} ${dir}
|
||||
+ "${mkisofs[@]}" -output ${OUT} ${dir}
|
||||
|
||||
# isohybrid will be used if available
|
||||
if isohybrid --version >/dev/null 2>/dev/null; then
|
||||
|
||||
33
src/ipxe_local/ssl/openssl.cnf
Normal file
33
src/ipxe_local/ssl/openssl.cnf
Normal file
@@ -0,0 +1,33 @@
|
||||
[ ca ]
|
||||
default_ca = ca_default
|
||||
|
||||
[ ca_default ]
|
||||
certificate = crts/ca.crt
|
||||
private_key = keys/ca.key
|
||||
serial = txt/ca.srl
|
||||
database = txt/ca.idx
|
||||
#new_certs_dir = signed
|
||||
new_certs_dir = crts
|
||||
#default_md = default
|
||||
default_md = sha512
|
||||
policy = policy_anything
|
||||
preserve = yes
|
||||
default_days = 90
|
||||
unique_subject = no
|
||||
|
||||
[ policy_anything ]
|
||||
countryName = optional
|
||||
stateOrProvinceName = optional
|
||||
localityName = optional
|
||||
organizationName = optional
|
||||
organizationalUnitName = optional
|
||||
commonName = optional
|
||||
emailAddress = optional
|
||||
|
||||
[ cross ]
|
||||
basicConstraints = critical,CA:true
|
||||
keyUsage = critical,cRLSign,keyCertSign
|
||||
|
||||
[ codesigning ]
|
||||
keyUsage = digitalSignature
|
||||
extendedKeyUsage = codeSigning
|
||||
Reference in New Issue
Block a user