nanopc3: New script
This commit is contained in:
453
nanopi3.sh
453
nanopi3.sh
@@ -4,54 +4,75 @@ set -e
|
|||||||
# This is the FriendlyARM NanoPi3 Kali ARM build script - http://nanopi.io/
|
# This is the FriendlyARM NanoPi3 Kali ARM build script - http://nanopi.io/
|
||||||
# A trusted Kali Linux image created by Offensive Security - http://www.offensive-security.com
|
# A trusted Kali Linux image created by Offensive Security - http://www.offensive-security.com
|
||||||
|
|
||||||
if [[ $EUID -ne 0 ]]; then
|
# Uncomment to activate debug
|
||||||
echo "This script must be run as root"
|
# debug=true
|
||||||
exit 1
|
|
||||||
|
if [ "$debug" = true ]; then
|
||||||
|
exec > >(tee -a -i "${0%.*}.log") 2>&1
|
||||||
|
set -x
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ $# -eq 0 ]] ; then
|
# Architecture
|
||||||
echo "Please pass version number, e.g. $0 2.0"
|
architecture=${architecture:-"arm64"}
|
||||||
exit 0
|
# Generate a random machine name to be used.
|
||||||
fi
|
machine=$(tr -cd 'A-Za-z0-9' < /dev/urandom | head -c16 ; echo)
|
||||||
|
|
||||||
basedir=`pwd`/nanopi3-$1
|
|
||||||
|
|
||||||
# Custom hostname variable
|
# Custom hostname variable
|
||||||
hostname=${2:-kali}
|
hostname=${2:-kali}
|
||||||
# Custom image file name variable - MUST NOT include .img at the end.
|
# Custom image file name variable - MUST NOT include .img at the end.
|
||||||
imagename=${3:-kali-linux-$1-nanopi3}
|
imagename=${3:-kali-linux-$1-nanopi3}
|
||||||
# Size of image in megabytes (Default is 14000=14GB)
|
# Suite to use, valid options are:
|
||||||
size=14000
|
|
||||||
# Suite to use.
|
|
||||||
# Valid options are:
|
|
||||||
# kali-rolling, kali-dev, kali-bleeding-edge, kali-dev-only, kali-experimental, kali-last-snapshot
|
# kali-rolling, kali-dev, kali-bleeding-edge, kali-dev-only, kali-experimental, kali-last-snapshot
|
||||||
# A release is done against kali-last-snapshot, but if you're building your own, you'll probably want to build
|
suite=${suite:-"kali-rolling"}
|
||||||
# kali-rolling.
|
# Free space rootfs in MiB
|
||||||
suite=kali-rolling
|
free_space="300"
|
||||||
|
# /boot partition in MiB
|
||||||
|
bootsize="128"
|
||||||
|
# If you have your own preferred mirrors, set them here.
|
||||||
|
mirror="http://http.kali.org/kali"
|
||||||
|
# Gitlab url Kali repository
|
||||||
|
kaligit="https://gitlab.com/kalilinux"
|
||||||
|
# Github raw url
|
||||||
|
githubraw="https://raw.githubusercontent.com"
|
||||||
|
|
||||||
# Generate a random machine name to be used.
|
# Check EUID=0 you can run any binary as root.
|
||||||
machine=$(cat /dev/urandom | tr -dc 'a-zA-Z0-9' | fold -w 16 | head -n 1)
|
if [[ $EUID -ne 0 ]]; then
|
||||||
|
echo "This script must be run as root"
|
||||||
# Make sure that the cross compiler can be found in the path before we do
|
exit 1
|
||||||
# anything else, that way the builds don't fail half way through.
|
|
||||||
export CROSS_COMPILE=arm-linux-gnueabihf-
|
|
||||||
if [ $(compgen -c $CROSS_COMPILE | wc -l) -eq 0 ] ; then
|
|
||||||
echo "Missing cross compiler. Set up PATH according to the README"
|
|
||||||
exit 1
|
|
||||||
fi
|
fi
|
||||||
# Unset CROSS_COMPILE so that if there is any native compiling needed it doesn't
|
|
||||||
# get cross compiled.
|
|
||||||
unset CROSS_COMPILE
|
|
||||||
|
|
||||||
# Package installations for various sections.
|
# Pass version number
|
||||||
# This will build a minimal XFCE Kali system with the top 10 tools.
|
if [[ $# -eq 0 ]] ; then
|
||||||
# This is the section to edit if you would like to add more packages.
|
echo "Please pass version number, e.g. $0 2.0, and (if you want) a hostname, default is kali"
|
||||||
# See http://www.kali.org/new/kali-linux-metapackages/ for meta packages you can
|
exit 0
|
||||||
# use. You can also install packages, using just the package name, but keep in
|
fi
|
||||||
# mind that not all packages work on ARM! If you specify one of those, the
|
|
||||||
# script will throw an error, but will still continue on, and create an unusable
|
|
||||||
# image, keep that in mind.
|
|
||||||
|
|
||||||
|
# Check exist bsp directory.
|
||||||
|
if [ ! -e "bsp" ]; then
|
||||||
|
echo "Error: missing bsp directory structure"
|
||||||
|
echo "Please clone the full repository ${kaligit}/build-scripts/kali-arm"
|
||||||
|
exit 255
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Current directory
|
||||||
|
current_dir="$(pwd)"
|
||||||
|
# Base directory
|
||||||
|
basedir=${current_dir}/nanopi3-"$1"
|
||||||
|
# Working directory
|
||||||
|
work_dir="${basedir}/kali-${architecture}"
|
||||||
|
|
||||||
|
# Check directory build
|
||||||
|
if [ -e "${basedir}" ]; then
|
||||||
|
echo "${basedir} directory exists, will not continue"
|
||||||
|
exit 1
|
||||||
|
elif [[ ${current_dir} =~ [[:space:]] ]]; then
|
||||||
|
echo "The directory "\"${current_dir}"\" contains whitespace. Not supported."
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
echo "The basedir thinks it is: ${basedir}"
|
||||||
|
mkdir -p ${basedir}
|
||||||
|
fi
|
||||||
|
|
||||||
|
components="main,contrib,non-free"
|
||||||
arm="kali-linux-arm ntpdate"
|
arm="kali-linux-arm ntpdate"
|
||||||
base="apt-transport-https apt-utils bash-completion console-setup dialog e2fsprogs ifupdown initramfs-tools inxi iw man-db mlocate netcat-traditional net-tools parted pciutils psmisc rfkill screen tmux unrar usbutils vim wget whiptail zerofree"
|
base="apt-transport-https apt-utils bash-completion console-setup dialog e2fsprogs ifupdown initramfs-tools inxi iw man-db mlocate netcat-traditional net-tools parted pciutils psmisc rfkill screen tmux unrar usbutils vim wget whiptail zerofree"
|
||||||
desktop="kali-desktop-xfce kali-root-login xserver-xorg-video-fbdev xfonts-terminus xinput"
|
desktop="kali-desktop-xfce kali-root-login xserver-xorg-video-fbdev xfonts-terminus xinput"
|
||||||
@@ -60,43 +81,41 @@ services="apache2 atftpd"
|
|||||||
extras="alsa-utils bc bison bluez bluez-firmware i2c-tools kali-linux-core libnss-systemd libssl-dev python3-smbus triggerhappy"
|
extras="alsa-utils bc bison bluez bluez-firmware i2c-tools kali-linux-core libnss-systemd libssl-dev python3-smbus triggerhappy"
|
||||||
|
|
||||||
packages="${arm} ${base} ${services}"
|
packages="${arm} ${base} ${services}"
|
||||||
architecture="arm64"
|
|
||||||
# If you have your own preferred mirrors, set them here.
|
|
||||||
# After generating the rootfs, we set the sources.list to the default settings.
|
|
||||||
mirror=http.kali.org
|
|
||||||
|
|
||||||
# Set this to use an http proxy, like apt-cacher-ng, and uncomment further down
|
# Automatic configuration to use an http proxy, such as apt-cacher-ng.
|
||||||
# to unset it.
|
# You can turn off automatic settings by uncommenting apt_cacher=off.
|
||||||
#export http_proxy="http://localhost:3142/"
|
# apt_cacher=off
|
||||||
|
# By default the proxy settings are local, but you can define an external proxy.
|
||||||
mkdir -p "${basedir}"
|
# proxy_url="http://external.intranet.local"
|
||||||
cd "${basedir}"
|
apt_cacher=${apt_cacher:-"$(lsof -i :3142|cut -d ' ' -f3 | uniq | sed '/^\s*$/d')"}
|
||||||
|
if [ -n "$proxy_url" ]; then
|
||||||
|
export http_proxy=$proxy_url
|
||||||
|
elif [ "$apt_cacher" = "apt-cacher-ng" ] ; then
|
||||||
|
if [ -z "$proxy_url" ]; then
|
||||||
|
proxy_url=${proxy_url:-"http://127.0.0.1:3142/"}
|
||||||
|
export http_proxy=$proxy_url
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
|
||||||
# create the rootfs - not much to modify here, except maybe throw in some more packages if you want.
|
# create the rootfs - not much to modify here, except maybe throw in some more packages if you want.
|
||||||
debootstrap --foreign --keyring=/usr/share/keyrings/kali-archive-keyring.gpg --include=kali-archive-keyring --arch ${architecture} ${suite} kali-${architecture} http://${mirror}/kali
|
debootstrap --foreign --keyring=/usr/share/keyrings/kali-archive-keyring.gpg --include=kali-archive-keyring \
|
||||||
|
--components=${components} --arch ${architecture} ${suite} ${work_dir} http://http.kali.org/kali
|
||||||
|
|
||||||
cp /usr/bin/qemu-aarch64-static kali-${architecture}/usr/bin/
|
# systemd-nspawn enviroment
|
||||||
|
systemd-nspawn_exec(){
|
||||||
|
qemu_bin=/usr/bin/qemu-aarch64-static
|
||||||
|
LANG=C systemd-nspawn -q --bind-ro ${qemu_bin} -M ${machine} -D ${work_dir} "$@"
|
||||||
|
}
|
||||||
|
|
||||||
LANG=C systemd-nspawn -M ${machine} -D kali-${architecture} /debootstrap/debootstrap --second-stage
|
# debootstrap second stage
|
||||||
|
systemd-nspawn_exec /debootstrap/debootstrap --second-stage
|
||||||
|
|
||||||
mkdir -p kali-${architecture}/etc/apt/
|
cat << EOF > ${work_dir}/etc/apt/sources.list
|
||||||
cat << EOF > kali-${architecture}/etc/apt/sources.list
|
deb ${mirror} ${suite} ${components//,/ }
|
||||||
deb http://${mirror}/kali ${suite} main contrib non-free
|
#deb-src ${mirror} ${suite} ${components//,/ }
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
echo "${hostname}" > kali-${architecture}/etc/hostname
|
cat << EOF > ${work_dir}/etc/network/interfaces
|
||||||
|
|
||||||
cat << EOF > kali-${architecture}/etc/hosts
|
|
||||||
127.0.0.1 ${hostname} localhost
|
|
||||||
::1 localhost ip6-localhost ip6-loopback
|
|
||||||
fe00::0 ip6-localnet
|
|
||||||
ff00::0 ip6-mcastprefix
|
|
||||||
ff02::1 ip6-allnodes
|
|
||||||
ff02::2 ip6-allrouters
|
|
||||||
EOF
|
|
||||||
|
|
||||||
mkdir -p kali-${architecture}/etc/network/
|
|
||||||
cat << EOF > kali-${architecture}/etc/network/interfaces
|
|
||||||
auto lo
|
auto lo
|
||||||
iface lo inet loopback
|
iface lo inet loopback
|
||||||
|
|
||||||
@@ -111,41 +130,59 @@ hwaddress 76:92:d4:85:f3:0f
|
|||||||
iface p2p0 inet manual
|
iface p2p0 inet manual
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
cat << EOF > kali-${architecture}/etc/resolv.conf
|
# Set hostname
|
||||||
nameserver 8.8.8.8
|
echo "${hostname}" > ${work_dir}/etc/hostname
|
||||||
|
|
||||||
|
# So X doesn't complain, we add kali to hosts
|
||||||
|
cat << EOF > ${work_dir}/etc/hosts
|
||||||
|
127.0.0.1 ${hostname} localhost
|
||||||
|
::1 localhost ip6-localhost ip6-loopback
|
||||||
|
fe00::0 ip6-localnet
|
||||||
|
ff00::0 ip6-mcastprefix
|
||||||
|
ff02::1 ip6-allnodes
|
||||||
|
ff02::2 ip6-allrouters
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
|
# Disable IPv6
|
||||||
|
cat << EOF > ${work_dir}/etc/modprobe.d/ipv6.conf
|
||||||
|
# Don't load ipv6 by default
|
||||||
|
alias net-pf-10 off
|
||||||
|
EOF
|
||||||
|
|
||||||
|
cat << EOF > ${work_dir}/etc/network/interfaces
|
||||||
|
auto lo
|
||||||
|
iface lo inet loopback
|
||||||
|
|
||||||
|
auto eth0
|
||||||
|
allow-hotplug eth0
|
||||||
|
iface eth0 inet dhcp
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# DNS server
|
||||||
|
echo "nameserver 8.8.8.8" > ${work_dir}/etc/resolv.conf
|
||||||
|
|
||||||
|
# Copy directory bsp into build dir.
|
||||||
|
cp -rp bsp ${work_dir}
|
||||||
|
|
||||||
export MALLOC_CHECK_=0 # workaround for LP: #520465
|
export MALLOC_CHECK_=0 # workaround for LP: #520465
|
||||||
export LC_ALL=C
|
|
||||||
|
# Enable the use of http proxy in third-stage in case it is enabled.
|
||||||
|
if [ -n "$proxy_url" ]; then
|
||||||
|
echo "Acquire::http { Proxy \"$proxy_url\" };" > ${work_dir}/etc/apt/apt.conf.d/66proxy
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Third stage
|
||||||
|
cat << EOF > ${work_dir}/third-stage
|
||||||
|
#!/bin/bash -e
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
export DEBIAN_FRONTEND=noninteractive
|
||||||
|
export RUNLEVEL=1
|
||||||
#mount -t proc proc kali-${architecture}/proc
|
ln -sf /bin/true /usr/sbin/invoke-rc.d
|
||||||
#mount -o bind /dev/ kali-${architecture}/dev/
|
|
||||||
#mount -o bind /dev/pts kali-${architecture}/dev/pts
|
|
||||||
|
|
||||||
cat << EOF > kali-${architecture}/debconf.set
|
|
||||||
console-common console-data/keymap/policy select Select keymap from full list
|
|
||||||
console-common console-data/keymap/full select en-latin1-nodeadkeys
|
|
||||||
EOF
|
|
||||||
|
|
||||||
mkdir -p kali-${architecture}/usr/lib/systemd/system/
|
|
||||||
cp "${basedir}"/../bsp/services/all/*.service kali-${architecture}/usr/lib/systemd/system/
|
|
||||||
|
|
||||||
cat << EOF > kali-${architecture}/third-stage
|
|
||||||
#!/bin/bash
|
|
||||||
set -e
|
|
||||||
dpkg-divert --add --local --divert /usr/sbin/invoke-rc.d.chroot --rename /usr/sbin/invoke-rc.d
|
|
||||||
cp /bin/true /usr/sbin/invoke-rc.d
|
|
||||||
echo -e "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d
|
echo -e "#!/bin/sh\nexit 101" > /usr/sbin/policy-rc.d
|
||||||
chmod 755 /usr/sbin/policy-rc.d
|
chmod 755 /usr/sbin/policy-rc.d
|
||||||
|
|
||||||
apt-get update
|
apt-get update
|
||||||
|
|
||||||
debconf-set-selections /debconf.set
|
apt-get -y install binutils ca-certificates console-common git initramfs-tools less locales nano u-boot-tools
|
||||||
rm -f /debconf.set
|
|
||||||
apt-get update
|
|
||||||
apt-get -y install git-core binutils ca-certificates initramfs-tools u-boot-tools
|
|
||||||
apt-get -y install locales console-common less nano git
|
|
||||||
|
|
||||||
# Create kali user with kali password... but first, we need to manually make some groups because they don't yet exist...
|
# Create kali user with kali password... but first, we need to manually make some groups because they don't yet exist...
|
||||||
# This mirrors what we have on a pre-installed VM, until the script works properly to allow end users to set up their own... user.
|
# This mirrors what we have on a pre-installed VM, until the script works properly to allow end users to set up their own... user.
|
||||||
@@ -161,147 +198,166 @@ groupadd -g 1000 kali
|
|||||||
useradd -m -u 1000 -g 1000 -G sudo,audio,bluetooth,cdrom,dialout,dip,lpadmin,netdev,plugdev,scanner,video,kali -s /bin/bash kali
|
useradd -m -u 1000 -g 1000 -G sudo,audio,bluetooth,cdrom,dialout,dip,lpadmin,netdev,plugdev,scanner,video,kali -s /bin/bash kali
|
||||||
echo "kali:kali" | chpasswd
|
echo "kali:kali" | chpasswd
|
||||||
|
|
||||||
export DEBIAN_FRONTEND=noninteractive
|
aptops="--allow-change-held-packages -o dpkg::options::=--force-confnew"
|
||||||
|
|
||||||
# This looks weird, but we do it twice because every so often, there's a failure to download from the mirror
|
# This looks weird, but we do it twice because every so often, there's a failure to download from the mirror
|
||||||
# So to workaround it, we attempt to install them twice.
|
# So to workaround it, we attempt to install them twice.
|
||||||
apt-get --yes --allow-change-held-packages -o dpkg::options::=--force-confnew install ${packages} || apt-get --yes --fix-broken install
|
apt-get install -y \$aptops ${packages} || apt-get --yes --fix-broken install
|
||||||
apt-get --yes --allow-change-held-packages -o dpkg::options::=--force-confnew install ${packages} || apt-get --yes --fix-broken install
|
apt-get install -y \$aptops ${packages} || apt-get --yes --fix-broken install
|
||||||
apt-get --yes --allow-change-held-packages -o dpkg::options::=--force-confnew install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install
|
apt-get install -y \$aptops ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install
|
||||||
apt-get --yes --allow-change-held-packages -o dpkg::options::=--force-confnew install ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install
|
apt-get install -y \$aptops ${desktop} ${extras} ${tools} || apt-get --yes --fix-broken install
|
||||||
apt-get --yes --allow-change-held-packages --autoremove install systemd-timesyncd || apt-get --yes --fix-broken install
|
apt-get install -y \%aptops --autoremove systemd-timesyncd || apt-get --yes --fix-broken install
|
||||||
apt-get --yes --allow-change-held-packages -o dpkg::options::=--force-confnew dist-upgrade
|
apt-get dist-upgrade
|
||||||
apt-get --yes --allow-change-held-packages -o dpkg::options::=--force-confnew autoremove
|
|
||||||
|
|
||||||
# Because copying in authorized_keys is hard for people to do, let's make the
|
apt-get -y --allow-change-held-packages --purge autoremove
|
||||||
# image insecure and enable root login with a password.
|
|
||||||
|
|
||||||
sed -i -e 's/PermitRootLogin prohibit-password/PermitRootLogin yes/' /etc/ssh/sshd_config
|
# Linux console/Keyboard configuration
|
||||||
|
echo 'console-common console-data/keymap/policy select Select keymap from full list' | debconf-set-selections
|
||||||
|
echo 'console-common console-data/keymap/full select en-latin1-nodeadkeys' | debconf-set-selections
|
||||||
|
|
||||||
# Regenerated the shared-mime-info database on the first boot
|
# Copy all services
|
||||||
|
install -m644 /bsp/services/all/*.service /etc/systemd/system/
|
||||||
|
|
||||||
|
# Regenerate the shared-mime-info database on the first boot
|
||||||
# since it fails to do so properly in a chroot.
|
# since it fails to do so properly in a chroot.
|
||||||
systemctl enable smi-hack
|
systemctl enable smi-hack
|
||||||
|
|
||||||
# Generate SSH host keys on first run
|
# Generate SSH host keys on first run
|
||||||
systemctl enable regenerate_ssh_host_keys
|
systemctl enable regenerate_ssh_host_keys
|
||||||
|
# Enable sshd
|
||||||
systemctl enable ssh
|
systemctl enable ssh
|
||||||
|
|
||||||
# Resize FS on first run (hopefully)
|
# Resize FS on first run (hopefully)
|
||||||
systemctl enable rpiwiggle
|
systemctl enable rpiwiggle
|
||||||
|
|
||||||
|
cd /root
|
||||||
|
apt download -o APT::Sandbox::User=root ca-certificates 2>/dev/null
|
||||||
|
|
||||||
# Copy bashrc
|
# Copy bashrc
|
||||||
cp /etc/skel/.bashrc /root/.bashrc
|
cp /etc/skel/.bashrc /root/.bashrc
|
||||||
|
|
||||||
cd /root
|
# Set a REGDOMAIN. This needs to be done or wireless doesn't work correctly on the RPi 3B+
|
||||||
apt download ca-certificates
|
sed -i -e 's/REGDOM.*/REGDOMAIN=00/g' /etc/default/crda
|
||||||
apt download libgdk-pixbuf2.0-0
|
|
||||||
apt download fontconfig
|
|
||||||
|
|
||||||
rm -f /usr/sbin/policy-rc.d
|
|
||||||
rm -f /usr/sbin/invoke-rc.d
|
|
||||||
dpkg-divert --remove --rename /usr/sbin/invoke-rc.d
|
|
||||||
|
|
||||||
rm -f /third-stage
|
|
||||||
EOF
|
|
||||||
|
|
||||||
chmod 755 kali-${architecture}/third-stage
|
|
||||||
LANG=C systemd-nspawn -M ${machine} -D kali-${architecture} /third-stage
|
|
||||||
|
|
||||||
cat << EOF > kali-${architecture}/cleanup
|
|
||||||
#!/bin/bash
|
|
||||||
rm -rf /root/.bash_history
|
|
||||||
apt-get update
|
|
||||||
rm -f /0
|
|
||||||
rm -f /hs_err*
|
|
||||||
rm -f cleanup
|
|
||||||
rm -f /usr/bin/qemu*
|
|
||||||
EOF
|
|
||||||
|
|
||||||
chmod 755 kali-${architecture}/cleanup
|
|
||||||
LANG=C systemd-nspawn -M ${machine} -D kali-${architecture} /cleanup
|
|
||||||
|
|
||||||
#umount kali-${architecture}/proc/sys/fs/binfmt_misc
|
|
||||||
#umount kali-${architecture}/dev/pts
|
|
||||||
#umount kali-${architecture}/dev/
|
|
||||||
#umount kali-${architecture}/proc
|
|
||||||
|
|
||||||
cat << EOF > kali-${architecture}/etc/resolv.conf
|
|
||||||
nameserver 8.8.8.8
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Serial console settings.
|
# Serial console settings.
|
||||||
# (No auto login)
|
# (No auto login)
|
||||||
echo 'T1:12345:respawn:/sbin/agetty 115200 ttyAMA0 vt100' >> "${basedir}"/kali-${architecture}/etc/inittab
|
echo 'T1:12345:respawn:/sbin/agetty 115200 ttyAMA0 vt100' >> /etc/inittab
|
||||||
|
|
||||||
cat << EOF > "${basedir}"/kali-${architecture}/etc/apt/sources.list
|
# Try and make the console a bit nicer
|
||||||
|
# Set the terminus font for a bit nicer display.
|
||||||
|
sed -i -e 's/FONTFACE=.*/FONTFACE="Terminus"/' /etc/default/console-setup
|
||||||
|
sed -i -e 's/FONTSIZE=.*/FONTSIZE="6x12"/' /etc/default/console-setup
|
||||||
|
|
||||||
|
# Fix startup time from 5 minutes to 15 secs on raise interface wlan0
|
||||||
|
sed -i 's/^TimeoutStartSec=5min/TimeoutStartSec=15/g' "/usr/lib/systemd/system/networking.service"
|
||||||
|
|
||||||
|
rm -f /usr/sbin/policy-rc.d
|
||||||
|
unlink /usr/sbin/invoke-rc.d
|
||||||
|
EOF
|
||||||
|
|
||||||
|
# Run third stage
|
||||||
|
chmod 755 ${work_dir}/third-stage
|
||||||
|
systemd-nspawn_exec /third-stage
|
||||||
|
|
||||||
|
# Clean system
|
||||||
|
systemd-nspawn_exec << EOF
|
||||||
|
rm -f /0
|
||||||
|
rm -rf /bsp
|
||||||
|
fc-cache -frs
|
||||||
|
rm -rf /tmp/*
|
||||||
|
rm -rf /etc/*-
|
||||||
|
rm -rf /hs_err*
|
||||||
|
rm -rf /userland
|
||||||
|
rm -rf /opt/vc/src
|
||||||
|
rm -f /etc/ssh/ssh_host_*
|
||||||
|
rm -rf /var/lib/apt/lists/*
|
||||||
|
rm -rf /var/cache/apt/*.bin
|
||||||
|
rm -rf /var/cache/apt/archives/*
|
||||||
|
rm -rf /var/cache/debconf/*.data-old
|
||||||
|
history -c
|
||||||
|
EOF
|
||||||
|
#Clear all logs
|
||||||
|
for logs in `find $work_dir/var/log -type f`; do > $logs; done
|
||||||
|
|
||||||
|
# Disable the use of http proxy in case it is enabled.
|
||||||
|
if [ -n "$proxy_url" ]; then
|
||||||
|
unset http_proxy
|
||||||
|
rm -rf ${work_dir}/etc/apt/apt.conf.d/66proxy
|
||||||
|
fi
|
||||||
|
|
||||||
|
cat << EOF > ${work_dir}/etc/resolv.conf
|
||||||
|
nameserver 8.8.8.8
|
||||||
|
EOF
|
||||||
|
|
||||||
|
|
||||||
|
cat << EOF > ${work_dir}/etc/apt/sources.list
|
||||||
deb http://http.kali.org/kali kali-rolling main non-free contrib
|
deb http://http.kali.org/kali kali-rolling main non-free contrib
|
||||||
deb-src http://http.kali.org/kali kali-rolling main non-free contrib
|
deb-src http://http.kali.org/kali kali-rolling main non-free contrib
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
# Uncomment this if you use apt-cacher-ng otherwise git clones will fail.
|
|
||||||
#unset http_proxy
|
|
||||||
|
|
||||||
# Kernel section. If you want to use a custom kernel, or configuration, replace
|
# Kernel section. If you want to use a custom kernel, or configuration, replace
|
||||||
# them in this section.
|
# them in this section.
|
||||||
git clone --depth 1 https://github.com/friendlyarm/linux -b nanopi2-v4.4.y "${basedir}"/kali-${architecture}/usr/src/kernel
|
git clone --depth 1 https://github.com/friendlyarm/linux -b nanopi2-v4.4.y ${work_dir}/usr/src/kernel
|
||||||
cd "${basedir}"/kali-${architecture}/usr/src/kernel
|
cd ${work_dir}/usr/src/kernel
|
||||||
git rev-parse HEAD > "${basedir}"/kali-${architecture}/usr/src/kernel-at-commit
|
git rev-parse HEAD > ${work_dir}/usr/src/kernel-at-commit
|
||||||
touch .scmversion
|
touch .scmversion
|
||||||
export ARCH=arm64
|
export ARCH=arm64
|
||||||
#export CROSS_COMPILE="${basedir}"/gcc-arm-linux-gnueabihf-4.7/bin/arm-linux-gnueabihf-
|
#export CROSS_COMPILE="${basedir}"/gcc-arm-linux-gnueabihf-4.7/bin/arm-linux-gnueabihf-
|
||||||
export CROSS_COMPILE=aarch64-linux-gnu-
|
export CROSS_COMPILE=aarch64-linux-gnu-
|
||||||
patch -p1 --no-backup-if-mismatch < "${basedir}"/../patches/kali-wifi-injection-4.4.patch
|
patch -p1 --no-backup-if-mismatch < ${current_dir}/patches/kali-wifi-injection-4.4.patch
|
||||||
make nanopi3_linux_defconfig
|
make nanopi3_linux_defconfig
|
||||||
make -j $(grep -c processor /proc/cpuinfo)
|
make -j $(grep -c processor /proc/cpuinfo)
|
||||||
make modules_install INSTALL_MOD_PATH="${basedir}"/kali-${architecture}/
|
make modules_install INSTALL_MOD_PATH=${work_dir}
|
||||||
cp arch/arm64/boot/Image "${basedir}"/kali-${architecture}/boot
|
cp arch/arm64/boot/Image ${work_dir}/boot
|
||||||
cp arch/arm64/boot/dts/nexell/*.dtb "${basedir}"/kali-${architecture}/boot/
|
cp arch/arm64/boot/dts/nexell/*.dtb ${work_dir}/boot/
|
||||||
make mrproper
|
make mrproper
|
||||||
make nanopi3_linux_defconfig
|
make nanopi3_linux_defconfig
|
||||||
cd "${basedir}"
|
cd ${current_dir}
|
||||||
|
|
||||||
# Copy over the firmware for the nanopi3 wifi.
|
# Copy over the firmware for the nanopi3 wifi.
|
||||||
# At some point, nexmon could work for the device, but the support would need to
|
# At some point, nexmon could work for the device, but the support would need to
|
||||||
# be added to nexmon.
|
# be added to nexmon.
|
||||||
mkdir -p "${basedir}"/kali-${architecture}/lib/firmware/ap6212/
|
mkdir -p ${work_dir}/lib/firmware/ap6212/
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/nvram_ap6212.txt -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/nvram.txt
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/nvram_ap6212.txt -O ${work_dir}/lib/firmware/ap6212/nvram.txt
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/nvram_ap6212a.txt -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/nvram_ap6212.txt
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/nvram_ap6212a.txt -O ${work_dir}/lib/firmware/ap6212/nvram_ap6212.txt
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/fw_bcm43438a0.bin -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/fw_bcm43438a0.bin
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/fw_bcm43438a0.bin -O ${work_dir}/lib/firmware/ap6212/fw_bcm43438a0.bin
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/fw_bcm43438a1.bin -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/fw_bcm43438a1.bin
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/fw_bcm43438a1.bin -O ${work_dir}/lib/firmware/ap6212/fw_bcm43438a1.bin
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/fw_bcm43438a0_apsta.bin -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/fw_bcm43438a0_apsta.bin
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/fw_bcm43438a0_apsta.bin -O ${work_dir}/lib/firmware/ap6212/fw_bcm43438a0_apsta.bin
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/bcm43438a0.hcd -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/bcm43438a0.hcd
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/bcm43438a0.hcd -O ${work_dir}/lib/firmware/ap6212/bcm43438a0.hcd
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/bcm43438a1.hcd -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/bcm43438a1.hcd
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/bcm43438a1.hcd -O ${work_dir}/lib/firmware/ap6212/bcm43438a1.hcd
|
||||||
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/config_ap6212.txt -O ${basedir}/kali-${architecture}/lib/firmware/ap6212/config.txt
|
wget https://raw.githubusercontent.com/friendlyarm/android_vendor_broadcom_nanopi2/nanopi2-lollipop-mr1/proprietary/config_ap6212.txt -O ${work_dir}/lib/firmware/ap6212/config.txt
|
||||||
cd "${basedir}"
|
cd ${current_dir}
|
||||||
|
|
||||||
# Fix up the symlink for building external modules
|
# Fix up the symlink for building external modules
|
||||||
# kernver is used so we don't need to keep track of what the current compiled
|
# kernver is used so we don't need to keep track of what the current compiled
|
||||||
# version is
|
# version is
|
||||||
kernver=$(ls "${basedir}"/kali-${architecture}/lib/modules/)
|
kernver=$(ls ${work_dir}/lib/modules/)
|
||||||
cd "${basedir}"/kali-${architecture}/lib/modules/${kernver}
|
cd ${work_dir}/lib/modules/${kernver}
|
||||||
rm build
|
rm build
|
||||||
rm source
|
rm source
|
||||||
ln -s /usr/src/kernel build
|
ln -s /usr/src/kernel build
|
||||||
ln -s /usr/src/kernel source
|
ln -s /usr/src/kernel source
|
||||||
cd "${basedir}"
|
cd ${current_dir}
|
||||||
|
|
||||||
sed -i -e 's/^#PermitRootLogin.*/PermitRootLogin yes/' "${basedir}"/kali-${architecture}/etc/ssh/sshd_config
|
|
||||||
|
|
||||||
# rpi-wiggle
|
# rpi-wiggle
|
||||||
mkdir -p "${basedir}"/kali-${architecture}/root/scripts
|
mkdir -p ${work_dir}/root/scripts
|
||||||
wget https://raw.github.com/steev/rpiwiggle/master/rpi-wiggle -O "${basedir}"/kali-${architecture}/root/scripts/rpi-wiggle.sh
|
wget https://raw.github.com/steev/rpiwiggle/master/rpi-wiggle -O ${work_dir}/root/scripts/rpi-wiggle.sh
|
||||||
chmod 755 "${basedir}"/kali-${architecture}/root/scripts/rpi-wiggle.sh
|
chmod 755 ${work_dir}/root/scripts/rpi-wiggle.sh
|
||||||
|
|
||||||
# Some maths... here.
|
# Calculate the space to create the image.
|
||||||
RAW_SIZE_MB=${size}
|
free_space=$((${free_space}*1024))
|
||||||
BLOCK_SIZE=1024
|
bootstart=$((${bootsize}*1024/1000*2*1024/2))
|
||||||
let RAW_SIZE=(${RAW_SIZE_MB}*1000*1000)/${BLOCK_SIZE}
|
bootend=$((${bootstart}+1024))
|
||||||
|
rootsize=$(du -s --block-size KiB ${work_dir} --exclude boot | cut -f1)
|
||||||
|
rootsize=$((${free_space}+${rootsize//KiB/ }/1000*2*1024/2))
|
||||||
|
raw_size=$((${free_space}+${rootsize}+${bootstart}))
|
||||||
|
|
||||||
# Create the disk and partition it
|
# Create the disk and partition it
|
||||||
echo "Creating image file ${imagename}.img"
|
echo "Creating image file ${imagename}.img"
|
||||||
dd if=/dev/zero of="${basedir}"/${imagename}.img bs=${BLOCK_SIZE} count=0 seek=${RAW_SIZE}
|
dd if=/dev/zero of=${basedir}/${imagename}.img bs=1KiB count=0 seek=${raw_size} && sync
|
||||||
parted ${imagename}.img --script -- mklabel msdos
|
parted ${basedir}/${imagename}.img --script -- mklabel msdos
|
||||||
parted ${imagename}.img --script -- mkpart primary ext3 2048s 264191s
|
parted ${basedir}/${imagename}.img --script -- mkpart primary ext3 1MiB ${bootstart}KiB
|
||||||
parted ${imagename}.img --script -- mkpart primary ext3 264192s 100%
|
parted ${basedir}/${imagename}.img --script -- mkpart primary ext3 ${bootend}KiB 100%
|
||||||
|
|
||||||
# Set the partition variables
|
# Set the partition variables
|
||||||
loopdevice=`losetup -f --show "${basedir}"/${imagename}.img`
|
loopdevice=`losetup -f --show "${basedir}"/${imagename}.img`
|
||||||
@@ -312,26 +368,21 @@ bootp=${device}p1
|
|||||||
rootp=${device}p2
|
rootp=${device}p2
|
||||||
|
|
||||||
# Create file systems
|
# Create file systems
|
||||||
mkfs.ext3 ${bootp}
|
mkfs.ext3 -L BOOT ${bootp}
|
||||||
mkfs.ext3 -O ^64bit -O ^flex_bg -O ^metadata_csum ${rootp}
|
mkfs.ext3 -L ROOTFS -O ^64bit,^flex_bg,^metadata_csum ${rootp}
|
||||||
|
|
||||||
# Create the dirs for the partitions and mount them
|
# Create the dirs for the partitions and mount them
|
||||||
mkdir -p "${basedir}"/root
|
mkdir -p ${basedir}/root
|
||||||
mount ${rootp} "${basedir}"/root
|
mount ${rootp} ${basedir}/root
|
||||||
mkdir -p "${basedir}"/root/boot
|
mkdir -p ${basedir}/root/boot
|
||||||
mount ${bootp} "${basedir}"/root/boot
|
mount ${bootp} ${basedir}/root/boot
|
||||||
|
|
||||||
# We do this down here to get rid of the build system's resolv.conf after running through the build.
|
|
||||||
cat << EOF > kali-${architecture}/etc/resolv.conf
|
|
||||||
nameserver 8.8.8.8
|
|
||||||
EOF
|
|
||||||
|
|
||||||
# Create an fstab so that we don't mount / read-only.
|
# Create an fstab so that we don't mount / read-only.
|
||||||
UUID=$(blkid -s UUID -o value ${rootp})
|
UUID=$(blkid -s UUID -o value ${rootp})
|
||||||
echo "UUID=$UUID / ext3 errors=remount-ro 0 1" >> "${basedir}"/kali-${architecture}/etc/fstab
|
echo "UUID=$UUID / ext3 errors=remount-ro 0 1" >> ${work_dir}/etc/fstab
|
||||||
|
|
||||||
echo "Rsyncing rootfs into image file"
|
echo "Rsyncing rootfs into image file"
|
||||||
rsync -HPavz -q "${basedir}"/kali-${architecture}/ "${basedir}"/root/
|
rsync -HPavz -q ${work_dir}/ ${basedir}/root/
|
||||||
|
|
||||||
# Unmount partitions
|
# Unmount partitions
|
||||||
sync
|
sync
|
||||||
@@ -380,20 +431,22 @@ sync
|
|||||||
#make CROSS_COMPILE=aarch64-linux-gnu-
|
#make CROSS_COMPILE=aarch64-linux-gnu-
|
||||||
#dd if=fip-nonsecure.img of=$loopdevice bs=512 seek=3841
|
#dd if=fip-nonsecure.img of=$loopdevice bs=512 seek=3841
|
||||||
|
|
||||||
cd "${basedir}"
|
|
||||||
|
|
||||||
losetup -d ${loopdevice}
|
losetup -d ${loopdevice}
|
||||||
|
|
||||||
# Don't pixz on 32bit, there isn't enough memory to compress the images.
|
# Don't pixz on 32bit, there isn't enough memory to compress the images.
|
||||||
MACHINE_TYPE=`uname -m`
|
if [ $(arch) == 'x86_64' ]; then
|
||||||
if [ ${MACHINE_TYPE} == 'x86_64' ]; then
|
echo "Compressing ${imagename}.img"
|
||||||
echo "Compressing ${imagename}.img"
|
cd ${current_dir}
|
||||||
pixz "${basedir}"/${imagename}.img "${basedir}"/../${imagename}.img.xz
|
rand=$(tr -cd 'A-Za-z0-9' < /dev/urandom | head -c4 ; echo) # Randowm name group
|
||||||
rm "${basedir}"/${imagename}.img
|
cgcreate -g cpu:/cpulimit-${rand} # Name of group
|
||||||
|
cgset -r cpu.shares=800 cpulimit-${rand} # Max 1024
|
||||||
|
cgset -r cpu.cfs_quota_us=80000 cpulimit-${rand} # Max 100000
|
||||||
|
cgexec -g cpu:cpulimit-${rand} pixz -p 2 "${basedir}"/${imagename}.img ${imagename}.img.xz # -p Nº cpu cores use
|
||||||
|
cgdelete cpu:/cpulimit-${rand} # Delete group
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Clean up all the temporary build stuff and remove the directories.
|
# Clean up all the temporary build stuff and remove the directories.
|
||||||
# Comment this out to keep things around if you want to see what may have gone
|
# Comment this out to keep things around if you want to see what may have gone
|
||||||
# wrong.
|
# wrong.
|
||||||
echo "Clean up the build system"
|
echo "Clean up the build system"
|
||||||
rm -rf "${basedir}"
|
rm -rf "${basedir}"
|
||||||
Reference in New Issue
Block a user