2023-03-23 11:29:15 -01:00
|
|
|
#!/bin/bash
|
2023-04-03 18:59:20 +00:00
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#
|
|
|
|
# SPDX-FileCopyrightText: 2023 PeppemrintOS Team (peppermintosteam@proton.me)
|
|
|
|
|
2023-03-23 11:29:15 -01:00
|
|
|
PATH="/sbin:/usr/sbin:/usr/local/sbin:$PATH"
|
|
|
|
|
|
|
|
# Set the working folder variable
|
|
|
|
uchinanchu="$(pwd)"
|
|
|
|
|
2023-03-25 16:51:09 -01:00
|
|
|
# This cleanup might be better served in the BldHelper*.sh script.
|
2023-03-23 11:29:15 -01:00
|
|
|
# Create the build folder, move into it removing stale mountpoints and files there.
|
|
|
|
[ -e fusato ] && [ ! -d fusato ] && rm -f fusato || [ ! -e fusato ] && mkdir fusato
|
|
|
|
cd fusato
|
|
|
|
umount $(mount | grep "${PWD}/chroot" | tac | cut -f3 -d" ") 2>/dev/null
|
|
|
|
for i in ./* ./.build ; do [ $i = ./cache ] && continue || rm -rf $i ; done
|
|
|
|
|
|
|
|
|
2023-03-25 17:12:04 -01:00
|
|
|
# Defines Live Build settings
|
2023-03-23 11:29:15 -01:00
|
|
|
lb config noauto \
|
|
|
|
--binary-images iso-hybrid \
|
2023-03-24 02:17:54 -01:00
|
|
|
--architectures i386 \
|
2023-04-03 18:59:20 +00:00
|
|
|
--distribution daedalus \
|
2023-03-25 16:51:09 -01:00
|
|
|
--initsystem sysvinit \
|
2023-04-03 18:59:20 +00:00
|
|
|
--archive-areas "main contrib non-free non-free-firmware" \
|
|
|
|
--mirror-bootstrap http://deb.devuan.org/merged \
|
|
|
|
--parent-mirror-bootstrap http://deb.devuan.org/merged \
|
|
|
|
--parent-mirror-chroot http://deb.devuan.org/merged \
|
|
|
|
--parent-mirror-chroot-security http://deb.devuan.org/merged \
|
|
|
|
--parent-mirror-binary http://deb.devuan.org/merged \
|
|
|
|
--parent-mirror-binary-security http://deb.devuan.org/merged \
|
|
|
|
--mirror-chroot http://deb.devuan.org/merged \
|
|
|
|
--mirror-chroot-security http://deb.devuan.org/merged \
|
|
|
|
--security false \
|
|
|
|
--updates false \
|
|
|
|
--backports false \
|
2023-03-25 16:51:09 -01:00
|
|
|
--uefi-secure-boot enable \
|
2023-04-03 18:59:20 +00:00
|
|
|
--firmware-chroot false \
|
2023-03-23 11:29:15 -01:00
|
|
|
--debian-installer netinst \
|
2023-04-03 18:59:20 +00:00
|
|
|
--debian-installer-distribution daedalus \
|
2023-03-23 11:29:15 -01:00
|
|
|
--debian-installer-gui true \
|
2023-04-03 18:59:20 +00:00
|
|
|
--parent-mirror-debian-installer http://repo.peppermintos.com/packages \
|
2023-03-23 11:29:15 -01:00
|
|
|
--iso-preparer "PeppermintOS-https://peppermintos.com/" \
|
|
|
|
--iso-publisher "Peppermint OS Team" \
|
2023-04-03 18:59:20 +00:00
|
|
|
--iso-volume "PeppermintOS" \
|
2023-03-23 11:29:15 -01:00
|
|
|
--image-name "PepOS-mini-iso" \
|
|
|
|
--checksums sha512 \
|
|
|
|
--zsync false \
|
|
|
|
--win32-loader false \
|
2023-03-25 16:51:09 -01:00
|
|
|
--debian-installer-preseedfile preseed.cfg \
|
2023-03-23 11:29:15 -01:00
|
|
|
|
|
|
|
"${@}"
|
|
|
|
|
|
|
|
# Setup the installer structure
|
|
|
|
mkdir -p $uchinanchu/fusato/config/includes.installer
|
|
|
|
mkdir -p $uchinanchu/fusato/config/includes.binary
|
|
|
|
mkdir -p $uchinanchu/fusato/config/includes.binary/install
|
|
|
|
mkdir -p $uchinanchu/fusato/config/includes.installer/usr/share
|
2023-04-03 18:59:20 +00:00
|
|
|
mkdir -p $uchinanchu/fusato/config/hooks/normal
|
2023-03-23 11:29:15 -01:00
|
|
|
|
2023-03-25 16:51:09 -01:00
|
|
|
#cp $uchinanchu/peprepo/* $uchinanchu/fusato/config/archives
|
2023-03-23 11:29:15 -01:00
|
|
|
cp $uchinanchu/pepinstaller/preseed/preseed.cfg $uchinanchu/fusato/config/includes.installer
|
2023-04-03 18:59:20 +00:00
|
|
|
cp $uchinanchu/pephooks/normal/* $uchinanchu/fusato/config/hooks/normal
|
2023-03-23 11:29:15 -01:00
|
|
|
|
|
|
|
# Copy recursive files and sub-directories, containing symlinks.
|
|
|
|
cp -r $uchinanchu/peploadersplash/boot $uchinanchu/fusato/config/includes.binary
|
|
|
|
cp -r $uchinanchu/peploadersplash/isolinux $uchinanchu/fusato/config/includes.binary
|
|
|
|
cp -r $uchinanchu/pepinstaller/graphics $uchinanchu/fusato/config/includes.installer/usr/share
|
|
|
|
cp -r $uchinanchu/pepinstaller/themes $uchinanchu/fusato/config/includes.installer/usr/share
|
|
|
|
|
|
|
|
lb build
|