2021-09-16 06:42:05 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
#
|
|
|
|
|
# Kali Linux ARM build-script for ODROID-XU3 (32-bit)
|
|
|
|
|
# https://gitlab.com/kalilinux/build-scripts/kali-arm
|
|
|
|
|
#
|
|
|
|
|
# This is a supported device - which you can find pre-generated images for
|
|
|
|
|
# More information: https://www.kali.org/docs/arm/odroid-xu3/
|
|
|
|
|
#
|
|
|
|
|
|
|
|
|
|
# Stop on error
|
|
|
|
|
set -e
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
# shellcheck disable=SC2154
|
|
|
|
|
# Load general functions
|
|
|
|
|
# shellcheck source=/dev/null
|
|
|
|
|
source ./common.d/functions.sh
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
# Hardware model
|
|
|
|
|
hw_model=${hw_model:-"odroid-xu3"}
|
2020-07-21 15:16:41 -05:00
|
|
|
# Architecture
|
|
|
|
|
architecture=${architecture:-"armhf"}
|
2021-08-30 15:07:22 -05:00
|
|
|
# Variant name for image and dir build
|
|
|
|
|
variant=${variant:-"${architecture}"}
|
|
|
|
|
# Desktop manager (xfce, gnome, i3, kde, lxde, mate, e17 or none)
|
|
|
|
|
desktop=${desktop:-"xfce"}
|
|
|
|
|
|
|
|
|
|
# Load common variables
|
|
|
|
|
include variables
|
2021-09-16 06:58:38 +01:00
|
|
|
# Checks script environment
|
2021-08-30 15:07:22 -05:00
|
|
|
include check
|
|
|
|
|
# Packages build list
|
|
|
|
|
include packages
|
|
|
|
|
# Load automatic proxy configuration
|
|
|
|
|
include proxy_apt
|
|
|
|
|
# Execute initial debootstrap
|
|
|
|
|
debootstrap_exec http://http.kali.org/kali
|
|
|
|
|
# Enable eatmydata in compilation
|
|
|
|
|
include eatmydata
|
2020-07-21 15:16:41 -05:00
|
|
|
# debootstrap second stage
|
2020-08-02 00:14:21 -05:00
|
|
|
systemd-nspawn_exec eatmydata /debootstrap/debootstrap --second-stage
|
2021-08-30 15:07:22 -05:00
|
|
|
# Define sources.list
|
|
|
|
|
include sources.list
|
|
|
|
|
# APT options
|
|
|
|
|
include apt_options
|
2020-07-21 15:16:41 -05:00
|
|
|
# So X doesn't complain, we add kali to hosts
|
2021-08-30 15:07:22 -05:00
|
|
|
include hosts
|
|
|
|
|
# Set hostname
|
|
|
|
|
set_hostname "${hostname}"
|
|
|
|
|
# Network configs
|
|
|
|
|
include network
|
|
|
|
|
add_interface eth0
|
2021-09-17 16:02:12 +01:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# Copy directory bsp into build dir
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Copy directory bsp into build dir" green
|
2021-08-30 15:07:22 -05:00
|
|
|
cp -rp bsp "${work_dir}"
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# Disable RESUME (suspend/resume is currently broken anyway!) which speeds up boot massively
|
2021-08-30 15:07:22 -05:00
|
|
|
mkdir -p ${work_dir}/etc/initramfs-tools/conf.d/
|
|
|
|
|
cat << EOF > ${work_dir}/etc/initramfs-tools/conf.d/resume
|
|
|
|
|
RESUME=none
|
|
|
|
|
EOF
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2020-07-21 15:16:41 -05:00
|
|
|
# Third stage
|
2021-08-30 15:07:22 -05:00
|
|
|
cat <<EOF >"${work_dir}"/third-stage
|
2021-09-17 16:02:12 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
set -e
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
export DEBIAN_FRONTEND=noninteractive
|
2020-08-02 00:14:21 -05:00
|
|
|
eatmydata apt-get update
|
2021-08-30 15:07:22 -05:00
|
|
|
eatmydata apt-get -y install ${third_stage_pkgs}
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
eatmydata apt-get install -y ${packages} || eatmydata apt-get install -y --fix-broken
|
|
|
|
|
eatmydata apt-get install -y ${desktop_pkgs} ${extra} || eatmydata apt-get install -y --fix-broken
|
2020-07-21 15:16:41 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
eatmydata apt-get -y --purge autoremove
|
2020-07-21 15:16:41 -05:00
|
|
|
|
|
|
|
|
# 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
|
|
|
|
|
|
|
|
|
|
# Copy all services
|
|
|
|
|
cp -p /bsp/services/all/*.service /etc/systemd/system/
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
# Copy script rpi-resizerootfs
|
|
|
|
|
install -m755 /bsp/scripts/rpi-resizerootfs /usr/sbin/
|
|
|
|
|
|
|
|
|
|
# Enable rpi-resizerootfs first boot
|
|
|
|
|
systemctl enable rpi-resizerootfs
|
2019-02-12 17:56:53 -06:00
|
|
|
|
2018-06-19 23:56:17 -05:00
|
|
|
# Generate SSH host keys on first run
|
|
|
|
|
systemctl enable regenerate_ssh_host_keys
|
|
|
|
|
|
2020-08-08 20:38:29 -05:00
|
|
|
# Allow users to use NM over ssh
|
|
|
|
|
install -m644 /bsp/polkit/10-NetworkManager.pkla /var/lib/polkit-1/localauthority/50-local.d
|
|
|
|
|
|
2020-07-21 15:16:41 -05:00
|
|
|
cd /root
|
|
|
|
|
apt download -o APT::Sandbox::User=root ca-certificates 2>/dev/null
|
|
|
|
|
|
|
|
|
|
# Set a REGDOMAIN. This needs to be done or wireless doesn't work correctly on the RPi 3B+
|
|
|
|
|
sed -i -e 's/REGDOM.*/REGDOMAIN=00/g' /etc/default/crda
|
2020-05-07 16:57:01 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
# Enable login over serial
|
|
|
|
|
echo "T0:23:respawn:/sbin/agetty -L ttySAC2 115200 vt100" >> /etc/inittab
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2020-07-21 15:16:41 -05:00
|
|
|
# Try and make the console a bit nicer
|
2021-09-16 06:58:38 +01:00
|
|
|
# Set the terminus font for a bit nicer display
|
2020-07-21 15:16:41 -05:00
|
|
|
sed -i -e 's/FONTFACE=.*/FONTFACE="Terminus"/' /etc/default/console-setup
|
|
|
|
|
sed -i -e 's/FONTSIZE=.*/FONTSIZE="6x12"/' /etc/default/console-setup
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2020-07-21 15:16:41 -05:00
|
|
|
# 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"
|
2020-08-02 00:14:21 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
cat << __EOF__ >> /etc/udev/links.conf
|
|
|
|
|
M ttySAC2 c 5 1
|
|
|
|
|
__EOF__
|
|
|
|
|
|
|
|
|
|
cat << _EOF_ >> /etc/securetty
|
|
|
|
|
ttySAC0
|
|
|
|
|
ttySAC1
|
|
|
|
|
ttySAC2
|
|
|
|
|
_EOF_
|
|
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# Serial console settings
|
2021-08-30 15:07:22 -05:00
|
|
|
# (Auto login on serial console)
|
|
|
|
|
#T1:12345:respawn:/sbin/agetty 115200 ttySAC2 vt100 >> /etc/inittab
|
|
|
|
|
# (No auto login)
|
|
|
|
|
#T1:12345:respawn:/bin/login -f root ttySAC2 /dev/ttySAC2 2>&1' >> /etc/inittab
|
2021-09-16 06:58:38 +01:00
|
|
|
# Make sure ttySACX is in root/etc/securetty so root can login on serial console below
|
2021-08-30 15:07:22 -05:00
|
|
|
echo 'T1:12345:respawn:/bin/login -f root ttySAC2 /dev/ttySAC2 2>&1' >> /etc/inittab
|
|
|
|
|
|
|
|
|
|
# Enable runonce
|
|
|
|
|
install -m755 /bsp/scripts/runonce /usr/sbin/
|
|
|
|
|
cp -rf /bsp/runonce.d /etc
|
|
|
|
|
systemctl enable runonce
|
|
|
|
|
|
|
|
|
|
# Clean up dpkg.eatmydata
|
2020-08-02 00:14:21 -05:00
|
|
|
rm -f /usr/bin/dpkg
|
2021-08-30 15:07:22 -05:00
|
|
|
dpkg-divert --remove --rename /usr/bin/dpkg
|
2014-09-21 20:22:00 -05:00
|
|
|
EOF
|
|
|
|
|
|
2020-07-21 15:16:41 -05:00
|
|
|
# Run third stage
|
2021-09-17 10:42:05 +01:00
|
|
|
chmod 0755 "${work_dir}"/third-stage
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Run third stage" green
|
2020-07-21 15:16:41 -05:00
|
|
|
systemd-nspawn_exec /third-stage
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
# Choose a locale
|
|
|
|
|
set_locale "$locale"
|
2020-07-21 15:16:41 -05:00
|
|
|
# Clean system
|
2021-08-30 15:07:22 -05:00
|
|
|
include clean_system
|
2021-09-16 06:58:38 +01:00
|
|
|
# Define DNS server after last running systemd-nspawn
|
2021-08-30 15:07:22 -05:00
|
|
|
echo "nameserver 8.8.8.8" >"${work_dir}"/etc/resolv.conf
|
2021-09-16 06:58:38 +01:00
|
|
|
# Disable the use of http proxy in case it is enabled
|
2021-08-30 15:07:22 -05:00
|
|
|
disable_proxy
|
2020-08-10 16:55:26 +02:00
|
|
|
# Mirror & suite replacement
|
2021-08-30 15:07:22 -05:00
|
|
|
restore_mirror
|
|
|
|
|
# Reload sources.list
|
2021-09-07 13:43:29 -05:00
|
|
|
#include sources.list
|
2014-09-21 20:22:00 -05:00
|
|
|
|
|
|
|
|
# Kernel section. If you want to use a custom kernel, or configuration, replace
|
2021-09-16 06:58:38 +01:00
|
|
|
# them in this section
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Kernel stuff" green
|
|
|
|
|
git clone --depth 1 -b odroidxu4-4.14.y https://github.com/hardkernel/linux.git ${work_dir}/usr/src/kernel
|
2020-07-21 15:16:41 -05:00
|
|
|
cd ${work_dir}/usr/src/kernel
|
|
|
|
|
git rev-parse HEAD > ${work_dir}/usr/src/kernel-at-commit
|
|
|
|
|
patch -p1 --no-backup-if-mismatch < ${current_dir}/patches/kali-wifi-injection-4.14.patch
|
|
|
|
|
patch -p1 --no-backup-if-mismatch < ${current_dir}/patches/0001-wireless-carl9170-Enable-sniffer-mode-promisc-flag-t.patch
|
2014-09-21 20:22:00 -05:00
|
|
|
touch .scmversion
|
|
|
|
|
export ARCH=arm
|
|
|
|
|
export CROSS_COMPILE=arm-linux-gnueabihf-
|
2021-08-30 15:07:22 -05:00
|
|
|
cp ${current_dir}/kernel-configs/odroid-xu3.config .config
|
|
|
|
|
cp ${current_dir}/kernel-configs/odroid-xu3.config ../odroid-xu3.config
|
2014-09-21 20:22:00 -05:00
|
|
|
make -j $(grep -c processor /proc/cpuinfo)
|
2020-07-21 15:16:41 -05:00
|
|
|
make modules_install INSTALL_MOD_PATH=${work_dir}
|
|
|
|
|
cp arch/arm/boot/zImage ${work_dir}/boot
|
|
|
|
|
cp arch/arm/boot/dts/exynos5422-odroidxu3.dtb ${work_dir}/boot
|
|
|
|
|
cp arch/arm/boot/dts/exynos5422-odroidxu3-lite.dtb ${work_dir}/boot
|
|
|
|
|
cp arch/arm/boot/dts/exynos5422-odroidxu4.dtb ${work_dir}/boot
|
|
|
|
|
cp arch/arm/boot/dts/exynos5422-odroidxu4-kvm.dtb ${work_dir}/boot
|
2015-08-10 22:20:59 -05:00
|
|
|
make mrproper
|
2021-08-30 15:07:22 -05:00
|
|
|
cp ${current_dir}/kernel-configs/odroid-xu3.config .config
|
|
|
|
|
cp ${current_dir}/kernel-configs/odroid-xu3.config ../odroid-xu3.config
|
2018-07-12 02:51:33 -05:00
|
|
|
cd "${basedir}"
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2017-09-20 17:42:31 -05:00
|
|
|
# Fix up the symlink for building external modules
|
|
|
|
|
# kernver is used so we don't need to keep track of what the current compiled
|
|
|
|
|
# version is
|
2020-07-21 15:16:41 -05:00
|
|
|
kernver=$(ls ${work_dir}/lib/modules/)
|
|
|
|
|
cd ${work_dir}/lib/modules/${kernver}
|
2017-09-20 17:42:31 -05:00
|
|
|
rm build
|
|
|
|
|
rm source
|
|
|
|
|
ln -s /usr/src/kernel build
|
|
|
|
|
ln -s /usr/src/kernel source
|
|
|
|
|
|
2021-09-17 16:02:12 +01:00
|
|
|
log "/boot/boot.ini" green
|
2020-07-21 15:16:41 -05:00
|
|
|
cat << EOF > ${work_dir}/boot/boot.ini
|
2014-09-21 20:22:00 -05:00
|
|
|
ODROIDXU-UBOOT-CONFIG
|
|
|
|
|
|
|
|
|
|
# U-Boot Parameters
|
|
|
|
|
setenv initrd_high "0xffffffff"
|
|
|
|
|
setenv fdt_high "0xffffffff"
|
|
|
|
|
|
|
|
|
|
# Mac address configuration
|
|
|
|
|
setenv macaddr "00:1e:06:61:7a:39"
|
|
|
|
|
|
|
|
|
|
#------------------------------------------------------------------------------------------------------
|
2021-09-16 06:58:38 +01:00
|
|
|
# Basic Ubuntu Setup. Don't touch unless you know what you are doing
|
2014-09-21 20:22:00 -05:00
|
|
|
# --------------------------------
|
2020-07-26 17:40:50 -05:00
|
|
|
setenv bootrootfs "console=tty1 console=ttySAC2,115200n8 root=/dev/mmcblk0p2 rootwait rootfstype=$fstype net.ifnames=0 rw"
|
2014-09-21 20:22:00 -05:00
|
|
|
|
|
|
|
|
# boot commands
|
2018-06-16 23:07:36 -05:00
|
|
|
# Uncomment the following if you use an initrd
|
|
|
|
|
#setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x42000000 uInitrd; fatload mmc 0:1 0x44000000 exynos5422-odroidxu3.dtb; bootz 0x40008000 0x42000000 0x44000000"
|
|
|
|
|
# Uncomment the following if you do NOT use an initrd
|
|
|
|
|
setenv bootcmd "fatload mmc 0:1 0x40008000 zImage; fatload mmc 0:1 0x42000000 uInitrd; fatload mmc 0:1 0x44000000 exynos5422-odroidxu3.dtb; bootz 0x40008000 - 0x44000000"
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2018-12-29 19:20:05 -06:00
|
|
|
# --- Screen Configuration for HDMI --- #
|
2014-09-21 20:22:00 -05:00
|
|
|
# ---------------------------------------
|
2021-09-16 06:58:38 +01:00
|
|
|
# Uncomment only ONE line! Leave all commented for automatic selection
|
2014-09-21 20:22:00 -05:00
|
|
|
# Uncomment only the setenv line!
|
|
|
|
|
# ---------------------------------------
|
|
|
|
|
# ODROID-VU forced resolution
|
|
|
|
|
# setenv videoconfig "video=HDMI-A-1:1280x800@60"
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
# 1920x1080 (1080P) with monitor provided EDID information. (1080p-edid)
|
|
|
|
|
# setenv videoconfig "video=HDMI-A-1:1920x1080@60"
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
# 1920x1080 (1080P) without monitor data using generic information (1080p-noedid)
|
|
|
|
|
# setenv videoconfig "drm_kms_helper.edid_firmware=edid/1920x1080.bin"
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
# 1280x720 (720P) with monitor provided EDID information. (720p-edid)
|
|
|
|
|
# setenv videoconfig "video=HDMI-A-1:1280x720@60"
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
# 1280x720 (720P) without monitor data using generic information (720p-noedid)
|
|
|
|
|
# setenv videoconfig "drm_kms_helper.edid_firmware=edid/1280x720.bin"
|
|
|
|
|
# -----------------------------------------------
|
|
|
|
|
# 1024x768 without monitor data using generic information
|
|
|
|
|
# setenv videoconfig "drm_kms_helper.edid_firmware=edid/1024x768.bin"
|
|
|
|
|
|
|
|
|
|
# final boot args
|
|
|
|
|
setenv bootargs "\${bootrootfs} \${videoconfig} smsc95xx.macaddr=\${macaddr}"
|
|
|
|
|
# drm.debug=0xff
|
|
|
|
|
# Boot the board
|
|
|
|
|
boot
|
|
|
|
|
EOF
|
|
|
|
|
|
|
|
|
|
|
2021-09-17 16:02:12 +01:00
|
|
|
cd "${current_dir}/"
|
2021-08-30 15:07:22 -05:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# Calculate the space to create the image and create
|
2021-08-30 15:07:22 -05:00
|
|
|
make_image
|
2018-07-06 18:03:37 -05:00
|
|
|
|
|
|
|
|
# Create the disk and partition it
|
|
|
|
|
echo "Creating image file ${imagename}.img"
|
2020-07-27 03:09:02 -05:00
|
|
|
parted -s ${current_dir}/${imagename}.img mklabel msdos
|
2021-08-30 15:07:22 -05:00
|
|
|
parted -s ${current_dir}/${imagename}.img mkpart primary fat32 4MiB ${bootsize}MiB
|
2020-07-27 03:09:02 -05:00
|
|
|
parted -s -a minimal ${current_dir}/${imagename}.img mkpart primary $fstype ${bootsize}MiB 100%
|
2015-08-10 22:20:59 -05:00
|
|
|
|
2018-07-06 18:03:37 -05:00
|
|
|
# Set the partition variables
|
2021-08-30 15:07:22 -05:00
|
|
|
loopdevice=$(losetup --show -fP "${current_dir}/${imagename}.img")
|
|
|
|
|
bootp="${loopdevice}p1"
|
|
|
|
|
rootp="${loopdevice}p2"
|
2018-07-06 18:03:37 -05:00
|
|
|
|
|
|
|
|
# Create file systems
|
2021-09-16 20:48:07 +01:00
|
|
|
log "Formatting partitions" green
|
2021-08-30 15:07:22 -05:00
|
|
|
if [[ "$fstype" == "ext4" ]]; then
|
|
|
|
|
features="^64bit,^metadata_csum"
|
|
|
|
|
elif [[ "$fstype" == "ext3" ]]; then
|
|
|
|
|
features="^64bit"
|
2020-07-26 14:38:21 -05:00
|
|
|
fi
|
2021-08-30 15:07:22 -05:00
|
|
|
mkfs -O "$features" -t "$fstype" -L BOOT "${bootp}"
|
|
|
|
|
mkfs -O "$features" -t "$fstype" -L ROOTFS "${rootp}"
|
2018-07-06 18:03:37 -05:00
|
|
|
|
|
|
|
|
# Create the dirs for the partitions and mount them
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Create the dirs for the partitions and mount them" green
|
2021-08-30 15:07:22 -05:00
|
|
|
mkdir -p "${basedir}"/root/
|
|
|
|
|
mount "${rootp}" "${basedir}"/root
|
2018-07-12 02:51:33 -05:00
|
|
|
mkdir -p "${basedir}"/root/boot
|
2021-08-30 15:07:22 -05:00
|
|
|
mount "${bootp}" "${basedir}"/root/boot
|
2018-07-06 18:03:37 -05:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# We do this down here to get rid of the build system's resolv.conf after running through the build
|
2021-09-17 16:02:12 +01:00
|
|
|
echo "nameserver 8.8.8.8" > ${work_dir}/etc/resolv.conf
|
2018-07-06 18:03:37 -05:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# Create an fstab so that we don't mount / read-only
|
2021-09-17 16:02:12 +01:00
|
|
|
log "/etc/fstab" green
|
2020-06-25 17:42:35 -05:00
|
|
|
UUID=$(blkid -s UUID -o value ${rootp})
|
2020-07-26 17:40:50 -05:00
|
|
|
echo "UUID=$UUID / $fstype errors=remount-ro 0 1" >> ${work_dir}/etc/fstab
|
2020-06-25 17:42:35 -05:00
|
|
|
|
2021-08-30 15:07:22 -05:00
|
|
|
log "Rsyncing rootfs into image file" green
|
|
|
|
|
rsync -HPavz -q "${work_dir}"/ "${basedir}"/root/
|
|
|
|
|
sync
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# Write the signed u-boot binary to the image so that it will boot
|
2021-09-17 16:02:12 +01:00
|
|
|
log "u-Boot" green
|
2018-08-03 15:04:07 -05:00
|
|
|
cd "${basedir}"
|
2021-09-17 16:02:12 +01:00
|
|
|
git clone --depth 1 -b odroidxu4-v2017.05 https://github.com/hardkernel/u-boot.git
|
2018-08-03 15:04:07 -05:00
|
|
|
cd "${basedir}"/u-boot
|
|
|
|
|
make odroid-xu4_defconfig
|
|
|
|
|
make
|
|
|
|
|
cd sd_fuse
|
2018-07-06 18:03:37 -05:00
|
|
|
sh sd_fusing.sh ${loopdevice}
|
2014-09-21 20:22:00 -05:00
|
|
|
|
2021-09-17 16:02:12 +01:00
|
|
|
cd "${current_dir}/"
|
2021-08-30 15:07:22 -05:00
|
|
|
|
|
|
|
|
# Umount filesystem
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Umount filesystem" green
|
2021-08-30 15:07:22 -05:00
|
|
|
umount -l "${rootp}"
|
|
|
|
|
|
|
|
|
|
# Check filesystem
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Check filesystem" green
|
2021-08-30 15:07:22 -05:00
|
|
|
e2fsck -y -f "$rootp"
|
|
|
|
|
|
|
|
|
|
# Remove loop devices
|
2021-09-17 16:02:12 +01:00
|
|
|
log "Remove loop devices" green
|
2021-08-30 15:07:22 -05:00
|
|
|
kpartx -dv "${loopdevice}"
|
|
|
|
|
losetup -d "${loopdevice}"
|
|
|
|
|
|
|
|
|
|
# Compress image compilation
|
|
|
|
|
include compress_img
|
2018-06-30 17:03:58 -05:00
|
|
|
|
2021-09-16 06:58:38 +01:00
|
|
|
# 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 wrong
|
|
|
|
|
clean_build
|