This commit is contained in:
parent
10a4a15f56
commit
1cae8252ee
1
build.sh
1
build.sh
@ -73,6 +73,7 @@ DD_LIVE_IMAGE="./live.img"
|
|||||||
# Create Refind Image
|
# Create Refind Image
|
||||||
dd if=/dev/zero of="$DD_BOOT_IMAGE" bs=1M count=$REFIND_SIZE
|
dd if=/dev/zero of="$DD_BOOT_IMAGE" bs=1M count=$REFIND_SIZE
|
||||||
mkfs.vfat -F 32 "$DD_BOOT_IMAGE"
|
mkfs.vfat -F 32 "$DD_BOOT_IMAGE"
|
||||||
|
|
||||||
for directory in $(find ./data/refind/EFI/ -type d | cut -d'/' -f4-)
|
for directory in $(find ./data/refind/EFI/ -type d | cut -d'/' -f4-)
|
||||||
do
|
do
|
||||||
echo "creating directory $directory in $DD_BOOT_IMAGE"
|
echo "creating directory $directory in $DD_BOOT_IMAGE"
|
||||||
|
@ -12,18 +12,18 @@ apt-get update -y
|
|||||||
apt-get install pika-sources -y
|
apt-get install pika-sources -y
|
||||||
|
|
||||||
# Actions to do before package lists
|
# Actions to do before package lists
|
||||||
apt-get install initramfs-tools adwaita-icon-theme amdgpu-drm --yes --option Dpkg::Options::="--force-confnew"
|
apt-get install initramfs-tools adwaita-icon-theme amdgpu-drm --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
||||||
apt-get install desktop-file-utils --yes --option Dpkg::Options::="--force-confnew"
|
apt-get install desktop-file-utils --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
||||||
apt-get install kernel-pika --yes --option Dpkg::Options::="--force-confnew"
|
apt-get install kernel-pika --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
||||||
apt-get install booster-placeholder --yes --option Dpkg::Options::="--force-confnew"
|
apt-get install booster-placeholder --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
||||||
|
|
||||||
# Upgrade system with new cache
|
# Upgrade system with new cache
|
||||||
|
|
||||||
apt-get full-upgrade --yes --option Dpkg::Options::="--force-confnew"
|
apt-get full-upgrade --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite"
|
||||||
|
|
||||||
# Install Absolute Live Boot Basics
|
# Install Absolute Live Boot Basics
|
||||||
|
|
||||||
apt-get install --yes --option Dpkg::Options::="--force-confnew" --no-install-recommends \
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" --no-install-recommends \
|
||||||
live-boot \
|
live-boot \
|
||||||
systemd-sysv \
|
systemd-sysv \
|
||||||
iwd \
|
iwd \
|
||||||
|
@ -6,7 +6,7 @@ export DEBIAN_FRONTEND="noninteractive"
|
|||||||
|
|
||||||
# Install PikaOS Basics
|
# Install PikaOS Basics
|
||||||
|
|
||||||
apt-get install --yes --option Dpkg::Options::="--force-confnew" \
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" \
|
||||||
pika-baseos \
|
pika-baseos \
|
||||||
console-setup \
|
console-setup \
|
||||||
console-setup-linux \
|
console-setup-linux \
|
||||||
|
@ -17,6 +17,6 @@ do
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" $(cat /chroot_scripts/live_list | tr "\n" " ")
|
apt-get install --yes --no-install-recommends --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" $(cat /chroot_scripts/live_list | tr "\n" " ")
|
||||||
|
|
||||||
|
|
||||||
|
@ -17,6 +17,6 @@ do
|
|||||||
done
|
done
|
||||||
done
|
done
|
||||||
|
|
||||||
apt-get purge --yes --option Dpkg::Options::="--force-confnew" $(cat /chroot_scripts/rem_list | tr "\n" " ") || true
|
apt-get purge --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" $(cat /chroot_scripts/rem_list | tr "\n" " ") || true
|
||||||
|
|
||||||
|
|
||||||
|
@ -4,7 +4,7 @@ set -e
|
|||||||
|
|
||||||
export DEBIAN_FRONTEND="noninteractive"
|
export DEBIAN_FRONTEND="noninteractive"
|
||||||
|
|
||||||
apt-get install -y --no-install-recommends --option Dpkg::Options::="--force-confnew" \
|
apt-get install -y --no-install-recommends --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" \
|
||||||
debootstrap \
|
debootstrap \
|
||||||
squashfs-tools \
|
squashfs-tools \
|
||||||
xorriso \
|
xorriso \
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
apt-get install --yes --option Dpkg::Options::="--force-confnew" \
|
apt-get install --yes --option Dpkg::Options::="--force-confnew" --option Dpkg::Options::="--force-overwrite" \
|
||||||
nvidia-driver-555
|
nvidia-driver-555
|
Loading…
Reference in New Issue
Block a user