Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 440efe3275 | |||
| f06d21fe19 | |||
| a485f47a54 | |||
| 8773ee70d0 |
@@ -1,3 +1,9 @@
|
||||
[ 12.0.1 ]
|
||||
|
||||
* Initial branding description and sources.list changes for bookworm
|
||||
* Add dpkg-unsafe-io module to speed up post-installation
|
||||
(Debian bug: #984794)
|
||||
|
||||
[ 11.0.3 ]
|
||||
|
||||
* Update settings.conf with changes from recent releases
|
||||
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
type: "job"
|
||||
name: "re-enable-dpkg-sync"
|
||||
interface: "process"
|
||||
command: "/usr/sbin/dpkg-unsafe-io -u"
|
||||
timeout: 600
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
type: "job"
|
||||
name: "disable-dpkg-sync"
|
||||
interface: "process"
|
||||
command: "/usr/sbin/dpkg-unsafe-io"
|
||||
timeout: 600
|
||||
@@ -9,15 +9,15 @@ windowPlacement: center
|
||||
strings:
|
||||
productName: Debian GNU/Linux
|
||||
shortProductName: Debian
|
||||
version: 11 (bullseye)
|
||||
shortVersion: 11
|
||||
versionedName: Debian 11 (bullseye)
|
||||
shortVersionedName: Debian 11
|
||||
version: 12 (bookworm)
|
||||
shortVersion: 12
|
||||
versionedName: Debian 12 (bookworm)
|
||||
shortVersionedName: Debian 12
|
||||
bootloaderEntryName: Debian
|
||||
productUrl: https://debian.org
|
||||
supportUrl: https://www.debian.org/support
|
||||
knownIssuesUrl: https://bugs.debian.org
|
||||
releaseNotesUrl: https://www.debian.org/releases/bullseye/releasenotes
|
||||
releaseNotesUrl: https://www.debian.org/releases/bookworm/releasenotes
|
||||
donateUrl: https://www.debian.org
|
||||
|
||||
images:
|
||||
|
||||
@@ -62,6 +62,7 @@ sequence:
|
||||
- partition
|
||||
- mount
|
||||
- unpackfs
|
||||
- dpkg-unsafe-io
|
||||
- sources-media
|
||||
- machineid
|
||||
- fstab
|
||||
@@ -81,6 +82,7 @@ sequence:
|
||||
- plymouthcfg
|
||||
- initramfscfg
|
||||
- initramfs
|
||||
- dpkg-unsafe-io-undo
|
||||
- sources-media-unmount
|
||||
- sources-final
|
||||
- umount
|
||||
|
||||
Vendored
+12
@@ -1,3 +1,15 @@
|
||||
calamares-settings-debian (12.0.1-1) unstable; urgency=medium
|
||||
|
||||
[ Debian Janitor ]
|
||||
* Set upstream metadata fields: Repository, Repository-Browse.
|
||||
* Update standards version to 4.6.0, no changes needed.
|
||||
|
||||
[ Jonathan Carter ]
|
||||
* New release
|
||||
- Use force-unsafe-io to speed up dpkg actions (Closes: #984794)
|
||||
|
||||
-- Jonathan Carter <jcc@debian.org> Mon, 09 May 2022 13:37:12 +0200
|
||||
|
||||
calamares-settings-debian (11.0.5-2) unstable; urgency=medium
|
||||
|
||||
* Add supplimental information to previous changelog entry
|
||||
|
||||
Vendored
+1
-1
@@ -3,7 +3,7 @@ Section: utils
|
||||
Priority: optional
|
||||
Maintainer: Jonathan Carter <jcc@debian.org>
|
||||
Build-Depends: debhelper-compat (= 13), libglib2.0-bin
|
||||
Standards-Version: 4.5.0
|
||||
Standards-Version: 4.6.0
|
||||
Rules-Requires-Root: no
|
||||
Homepage: https://salsa.debian.org/live-team/calamares-settings-debian
|
||||
Vcs-Git: https://salsa.debian.org/live-team/calamares-settings-debian-packaging.git
|
||||
|
||||
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
---
|
||||
Repository: https://salsa.debian.org/live-team/calamares-settings-debian.git
|
||||
Repository-Browse: https://salsa.debian.org/live-team/calamares-settings-debian
|
||||
Executable
+13
@@ -0,0 +1,13 @@
|
||||
#!/bin/sh
|
||||
|
||||
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
||||
|
||||
if [ "$1" = "-u" ]; then
|
||||
rm $CHROOT/etc/dpkg/dpkg.cfg.d/calamares-force-unsafe-io
|
||||
sync
|
||||
exit 0
|
||||
fi
|
||||
|
||||
echo "force-unsafe-io" > $CHROOT/etc/dpkg/dpkg.cfg.d/calamares-force-unsafe-io
|
||||
|
||||
exit 0
|
||||
@@ -4,7 +4,7 @@
|
||||
#
|
||||
|
||||
CHROOT=$(mount | grep proc | grep calamares | awk '{print $3}' | sed -e "s#/proc##g")
|
||||
RELEASE="bullseye"
|
||||
RELEASE="bookworm"
|
||||
|
||||
cat << EOF > $CHROOT/etc/apt/sources.list
|
||||
# See https://wiki.debian.org/SourcesList for more information.
|
||||
|
||||
Reference in New Issue
Block a user