Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build-overlay-deb.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ jobs:
if [ "${suite}" = experimental ]; then
# special extra args for experimental
debootstrap_suite='unstable'
extra_repo='--extra-repository=deb http://deb.debian.org/debian experimental main'
extra_repo='--extra-repository=deb https://deb.debian.org/debian experimental main'
chroot_prefix='--chroot-prefix=experimental'
fi
sudo sbuild-createchroot --include=eatmydata,ccache \
Expand Down
10 changes: 7 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,14 @@ FAKEMACHINE_BACKEND = $(shell [ -c /dev/kvm ] && echo kvm || echo qemu)
DEBOS_OPTS := --fakemachine-backend $(FAKEMACHINE_BACKEND) --memory 1GiB --scratchsize 4GiB
DEBOS := debos $(DEBOS_OPTS)

# Use http_proxy from the environment, or apt's http_proxy if set, to speed up
# builds.
# Use http_proxy and https_proxy from the environment, or apt's configs if set,
# to speed up builds.
http_proxy ?= $(shell apt-config dump --format '%v%n' Acquire::http::Proxy)
export http_proxy
https_proxy ?= $(shell apt-config dump --format '%v%n' Acquire::https::Proxy)
export http_proxy https_proxy

print:
echo $(https_proxy)

all: disk-ufs.img.gz disk-sdcard.img.gz

Expand Down
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Debian archive
Types: deb
URIs: http://deb.debian.org/debian/
URIs: https://deb.debian.org/debian/
Suites: trixie
Components: main contrib non-free non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

# Debian stable updates
Types: deb
URIs: http://deb.debian.org/debian/
URIs: https://deb.debian.org/debian/
Suites: trixie-updates
Components: main contrib non-free non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg

# Debian security updates
Types: deb
URIs: http://deb.debian.org/debian-security/
URIs: https://deb.debian.org/debian-security/
Suites: trixie-security
Components: main contrib non-free non-free-firmware
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Debian backports
Types: deb
URIs: http://deb.debian.org/debian
URIs: https://deb.debian.org/debian
Suites: trixie-backports
Components: main contrib non-free non-free-firmware
Enabled: yes
Expand Down
2 changes: 1 addition & 1 deletion debos-recipes/qualcomm-linux-debian-rootfs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ actions:
- contrib
- non-free
- non-free-firmware
mirror: http://deb.debian.org/debian
mirror: https://deb.debian.org/debian
variant: minbase

{{- if ne $aptlocalrepo "none" }}
Expand Down
Loading