Compare commits
8 commits
Author | SHA1 | Date | |
---|---|---|---|
dbd23aa2c7 | |||
93f56d0098 | |||
a3a7fa71e8 | |||
a0715ddc0e | |||
36bcd01475 | |||
ed873308d7 | |||
8d7e5d42cb | |||
75110c8ff7 |
7 changed files with 46 additions and 9 deletions
|
@ -6,10 +6,10 @@ windowSize: "890px,600px"
|
|||
strings:
|
||||
productName: TileOS
|
||||
shortProductName: TileOS
|
||||
version: 1.0 (t-rex)
|
||||
shortVersion: 1.0
|
||||
versionedName: TileOS 1.0 (t-rex)
|
||||
shortVersionedName: TileOS 1.0
|
||||
version: 1.2 (t-rex)
|
||||
shortVersion: 1.2
|
||||
versionedName: TileOS 1.2 (t-rex)
|
||||
shortVersionedName: TileOS 1.2
|
||||
bootloaderEntryName: TileOS
|
||||
supportUrl: https://gitlab.com/tile-os/tileos/-/issues
|
||||
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 195 KiB After Width: | Height: | Size: 96 KiB |
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
mountOptions:
|
||||
default: defaults,noatime
|
||||
btrfs: defaults,noatime,space_cache,autodefrag
|
||||
btrfs: defaults,noatime,space_cache=v2,autodefrag
|
||||
ssdExtraMountOptions:
|
||||
ext4: discard
|
||||
jfs: discard
|
||||
|
|
|
@ -34,3 +34,7 @@ extraMountsEfi:
|
|||
- device: efivarfs
|
||||
fs: efivarfs
|
||||
mountPoint: /sys/firmware/efi/efivars
|
||||
efi: true
|
||||
- device: /dev/pts
|
||||
mountPoint: /dev/pts
|
||||
options: bind
|
||||
|
|
|
@ -2,7 +2,5 @@ efiSystemPartition: "/boot/efi"
|
|||
enableLuksAutomatedPartitioning: true
|
||||
userSwapChoices:
|
||||
- none
|
||||
- file
|
||||
initialSwapChoice: file
|
||||
drawNestedPartitions: true
|
||||
defaultFileSystemType: "ext4"
|
||||
|
|
30
debian/changelog
vendored
30
debian/changelog
vendored
|
@ -1,3 +1,33 @@
|
|||
calamares-settings-tileos-sway (1.18~tileos) unstable; urgency=medium
|
||||
|
||||
* Update version
|
||||
|
||||
-- Aleksey Samoilov <samoilov.lex@gmail.com> Sun, 20 Oct 2024 16:37:12 +0400
|
||||
|
||||
calamares-settings-tileos-sway (1.17~tileos) unstable; urgency=medium
|
||||
|
||||
* Update version
|
||||
|
||||
-- Aleksey Samoilov <samoilov.lex@gmail.com> Sat, 22 Jun 2024 18:07:34 +0400
|
||||
|
||||
calamares-settings-tileos-sway (1.16~tileos) unstable; urgency=medium
|
||||
|
||||
* Fix mount
|
||||
|
||||
-- Aleksey Samoilov <samoilov.lex@gmail.com> Fri, 08 Mar 2024 21:36:26 +0400
|
||||
|
||||
calamares-settings-tileos-sway (1.15~tileos) unstable; urgency=medium
|
||||
|
||||
* Fix installing on Btrfs
|
||||
|
||||
-- Aleksey Samoilov <samoilov.lex@gmail.com> Fri, 08 Mar 2024 00:43:41 +0400
|
||||
|
||||
calamares-settings-tileos-sway (1.14~tileos) unstable; urgency=medium
|
||||
|
||||
* Backport some Debian stuff
|
||||
|
||||
-- Aleksey Samoilov <samoilov.lex@gmail.com> Thu, 07 Mar 2024 00:20:25 +0400
|
||||
|
||||
calamares-settings-tileos-sway (1.13~tileos) unstable; urgency=medium
|
||||
|
||||
* Fix slideshow
|
||||
|
|
|
@ -8,14 +8,19 @@ 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 cryptsetup keyutils
|
||||
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-efi-amd64
|
||||
else
|
||||
echo " * install grub... (bios)"
|
||||
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-pc cryptsetup keyutils
|
||||
DEBIAN_FRONTEND=noninteractive chroot $CHROOT apt-get -y install grub-pc
|
||||
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
|
||||
|
|
Loading…
Add table
Reference in a new issue