Compare commits

..

No commits in common. "master" and "v1.11" have entirely different histories.

10 changed files with 34 additions and 53 deletions

BIN
calamares/branding/tileos-river/River.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 72 KiB

After

Width:  |  Height:  |  Size: 44 KiB

View file

@ -6,10 +6,10 @@ windowSize: "890px,600px"
strings:
productName: TileOS
shortProductName: TileOS
version: 1.2 (t-rex)
shortVersion: 1.2
versionedName: TileOS 1.2 (t-rex)
shortVersionedName: TileOS 1.2
version: 1.0 (t-rex)
shortVersion: 1.0
versionedName: TileOS 1.0 (t-rex)
shortVersionedName: TileOS 1.0
bootloaderEntryName: TileOS
supportUrl: https://gitlab.com/tile-os/tileos/-/issues

View file

@ -25,7 +25,6 @@ Presentation
Timer {
interval: 20000
running: true
repeat: true
onTriggered: presentation.goToNextSlide()
}

BIN
calamares/branding/tileos-river/welcome.png Executable file → Normal file

Binary file not shown.

Before

Width:  |  Height:  |  Size: 109 KiB

After

Width:  |  Height:  |  Size: 197 KiB

View file

@ -1,7 +1,7 @@
---
mountOptions:
default: defaults,noatime
btrfs: defaults,noatime,space_cache=v2,autodefrag
btrfs: defaults,noatime,space_cache,autodefrag
ssdExtraMountOptions:
ext4: discard
jfs: discard

View file

@ -34,7 +34,3 @@ extraMountsEfi:
- device: efivarfs
fs: efivarfs
mountPoint: /sys/firmware/efi/efivars
efi: true
- device: /dev/pts
mountPoint: /dev/pts
options: bind

View file

@ -2,5 +2,7 @@ efiSystemPartition: "/boot/efi"
enableLuksAutomatedPartitioning: true
userSwapChoices:
- none
- file
initialSwapChoice: file
drawNestedPartitions: true
defaultFileSystemType: "ext4"

36
debian/changelog vendored
View file

@ -1,39 +1,3 @@
calamares-settings-tileos-river (1.17~tileos) unstable; urgency=medium
* Update version
-- Aleksey Samoilov <samoilov.lex@gmail.com> Sun, 20 Oct 2024 16:32:31 +0400
calamares-settings-tileos-river (1.16~tileos) unstable; urgency=medium
* Update version
-- Aleksey Samoilov <samoilov.lex@gmail.com> Sat, 22 Jun 2024 18:04:03 +0400
calamares-settings-tileos-river (1.15~tileos) unstable; urgency=medium
* Fix slideshow
-- Aleksey Samoilov <samoilov.lex@gmail.com> Tue, 02 Apr 2024 16:00:46 +0400
calamares-settings-tileos-river (1.14~tileos) unstable; urgency=medium
* Fix mount
-- Aleksey Samoilov <samoilov.lex@gmail.com> Fri, 08 Mar 2024 21:37:21 +0400
calamares-settings-tileos-river (1.13~tileos) unstable; urgency=medium
* Fix installing on Btrfs
-- Aleksey Samoilov <samoilov.lex@gmail.com> Fri, 08 Mar 2024 00:44:39 +0400
calamares-settings-tileos-river (1.12~tileos) unstable; urgency=medium
* Backport some Debian stuff
-- Aleksey Samoilov <samoilov.lex@gmail.com> Thu, 07 Mar 2024 00:21:12 +0400
calamares-settings-tileos-river (1.11~tileos) unstable; urgency=medium
* Fix slideshow

View file

@ -8,19 +8,14 @@ CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc
# regenerating the initramfs right now:
if [ "$(mount | grep $CHROOT" " | cut -c -16)" = "/dev/mapper/luks" ]; then
echo "UMASK=0077" > $CHROOT/etc/initramfs-tools/conf.d/initramfs-permissions
chroot $CHROOT apt-get -y install cryptsetup-initramfs cryptsetup keyutils
fi
echo "Running bootloader-config..."
if [ -d /sys/firmware/efi/efivars ]; then
echo " * Installing grub-efi (uefi)..."
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-efi-amd64
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-efi-amd64 cryptsetup keyutils
else
echo " * install grub... (bios)"
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-pc
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-pc cryptsetup keyutils
fi
# Re-enable os-prober:
sed -i "s/#GRUB_DISABLE_OS_PROBER=false/# OS_PROBER re-enabled by TileOS Calamares installation:\nGRUB_DISABLE_OS_PROBER=false/g" $CHROOT/etc/default/grub
chroot $CHROOT /usr/sbin/update-grub

25
scripts/sources-media Executable file
View file

@ -0,0 +1,25 @@
#!/bin/sh
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
MEDIUM_PATH="/run/live/medium"
RELEASE="bookworm"
if [ "$1" = "-u" ]; then
umount $CHROOT/$MEDIUM_PATH
rm $CHROOT/etc/apt/sources.list.d/debian-live-media.list
chroot $CHROOT apt-get update
exit 0
fi
# Remove the base sources, we will configure sources in a later phase
rm -f $CHROOT/etc/apt/sources.list.d/base.list
mkdir -p $CHROOT/$MEDIUM_PATH
mount --bind $MEDIUM_PATH $CHROOT/$MEDIUM_PATH
echo "deb [trusted=yes] file:$MEDIUM_PATH $RELEASE main" > $CHROOT/etc/apt/sources.list.d/debian-live-media.list
chroot $CHROOT apt-get update
# Attempt safest way to remove cruft
rmdir $CHROOT/run/live/medium
rmdir $CHROOT/run/live
exit 0