Skip to content

Commit

Permalink
<\trixie
Browse files Browse the repository at this point in the history
  • Loading branch information
Raul Dipeas committed Feb 16, 2025
1 parent d221d38 commit b207d4f
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion scripts/hooks/apt/calamares.d/gpu-driver.bash
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -e
if [ "$(cut -d' ' -f9 <(grep NVIDIA <(lshw -C display)))" == NVIDIA ];then
apt install -y nvidia-detect
apt install -y -t trixie-backports firmware-misc-nonfree "$(nvidia-detect|grep nvidia-|cut -d ' ' -f5)"
apt install -y -t bookworm-backports firmware-misc-nonfree "$(nvidia-detect|grep nvidia-|cut -d ' ' -f5)"
echo 'options nvidia-drm modeset=1'|tee /etc/modprobe.d/nvidia-drm.conf>/dev/null
update-initramfs -u -k all
echo 'NVIDIA'|tee /home/"$(ls /home)"/.gpu-driver>/dev/null
Expand Down
2 changes: 1 addition & 1 deletion scripts/hooks/apt/iriun.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -e
apt install -y -t trixie-backports iriunwebcam
apt install -y -t bookworm-backports iriunwebcam
2 changes: 1 addition & 1 deletion scripts/hooks/apt/qdiskinfo.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash
set -e
apt install -y -t trixie-backports qdiskinfo
apt install -y -t bookworm-backports qdiskinfo
6 changes: 3 additions & 3 deletions scripts/lb-config.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -e
LATEST_LINUX_IMAGE="$(wget -qO- 'https://packages.debian.org/search?suite=trixie-backports&searchon=names&keywords=bpo-amd64'|grep linux-image|grep -v unsigned|grep -v dbg|grep -v 6.9|grep -v 6.10|grep -v 6.11|head -n1|cut -d' ' -f4|cut -d'<' -f1|sed 's|-amd64||')"
LATEST_LINUX_HEADERS="$(wget -qO- 'https://packages.debian.org/search?suite=trixie-backports&searchon=names&keywords=bpo-amd64'|grep linux-headers|grep -v unsigned|grep -v dbg|grep -v 6.9|grep -v 6.10|grep -v 6.11|head -n1|cut -d' ' -f4|cut -d'<' -f1|sed 's|-amd64||')"
LATEST_LINUX_IMAGE="$(wget -qO- 'https://packages.debian.org/search?suite=bookworm-backports&searchon=names&keywords=bpo-amd64'|grep linux-image|grep -v unsigned|grep -v dbg|grep -v 6.9|grep -v 6.10|grep -v 6.11|head -n1|cut -d' ' -f4|cut -d'<' -f1|sed 's|-amd64||')"
LATEST_LINUX_HEADERS="$(wget -qO- 'https://packages.debian.org/search?suite=bookworm-backports&searchon=names&keywords=bpo-amd64'|grep linux-headers|grep -v unsigned|grep -v dbg|grep -v 6.9|grep -v 6.10|grep -v 6.11|head -n1|cut -d' ' -f4|cut -d'<' -f1|sed 's|-amd64||')"
cd /tmp/respin-rdx
lb config\
--apt-source-archives false\
Expand All @@ -15,7 +15,7 @@ lb config\
--compression xz\
--debconf-frontend noninteractive\
--debian-installer none\
--distribution trixie\
--distribution bookworm\
--image-name "respin-rdx"\
--iso-application "Respin RDX"\
--iso-publisher "Respin RDX; https://respin-rdx.sourceforge.io; respin-rdx@rauldipeas.com.br"\
Expand Down
2 changes: 1 addition & 1 deletion scripts/packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -e
mkdir -p /tmp/respin-rdx/config/includes.chroot/etc/apt/preferences.d
cat <<EOF |tee /tmp/respin-rdx/config/includes.chroot/etc/apt/preferences.d/backports.pref>/dev/null
Package: *
Pin: release n=trixie-backports
Pin: release n=bookworm-backports
Pin-Priority: -1
EOF
cp scripts/desktop-packages.list /tmp/respin-rdx/config/package-lists/desktop.list.chroot
Expand Down

0 comments on commit b207d4f

Please sign in to comment.