This commit is contained in:
2026-03-19 23:41:14 +01:00
parent c78e2f884c
commit 069093bee7
4 changed files with 3 additions and 1 deletions

View File

@@ -35,6 +35,7 @@ COPY --from=kernel-builder /usr/src/*.deb .
COPY update-initramfs.sh . COPY update-initramfs.sh .
COPY zzz-config-live.sh . COPY zzz-config-live.sh .
COPY desktop . COPY desktop .
COPY wallpaper.jpg .
RUN apt-get update && \ RUN apt-get update && \
apt-get -y --force-yes install live-helper genisoimage syslinux squashfs-tools aptitude && \ apt-get -y --force-yes install live-helper genisoimage syslinux squashfs-tools aptitude && \
apt-get clean apt-get clean

2
Jenkinsfile vendored
View File

@@ -57,6 +57,8 @@ pipeline {
cp /root/linux-image-*.deb config/chroot_local-packages/ cp /root/linux-image-*.deb config/chroot_local-packages/
cp /root/squashfs-modules-*.deb config/chroot_local-packages/ cp /root/squashfs-modules-*.deb config/chroot_local-packages/
cp /root/desktop config/chroot_local-packageslists/ cp /root/desktop config/chroot_local-packageslists/
mkdir -p config/chroot_local-includes/usr/share/wallpapers
cp /root/wallpaper.png config/chroot_local-includes/usr/share/wallpapers/retrodebian.png
''' '''
sh 'lh_build' sh 'lh_build'
} }

BIN
wallpaper.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 148 KiB

View File

@@ -8,7 +8,6 @@ mkdir -p /etc/skel
cat > /etc/skel/.xinitrc <<'EOF' cat > /etc/skel/.xinitrc <<'EOF'
#!/bin/sh #!/bin/sh
pcmanfm --desktop &
exec startfluxbox exec startfluxbox
EOF EOF