Skip to content

Commit 8f35107

Browse files
committed
Add non-free-firmware to our sources.list
1 parent c1d4745 commit 8f35107

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

build.sh

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ function finalize_image_pi() {
179179

180180
function base_bootstrap() {
181181

182-
$SUDO qemu-debootstrap --components=main,contrib,non-free --arch=arm64 "${RELEASE}" "${MOUNTPOINT}"
182+
$SUDO qemu-debootstrap --components=main,contrib,non-free,non-free-firmware --arch=arm64 "${RELEASE}" "${MOUNTPOINT}"
183183

184184
# Make internet available from within the chroot, and setup fstab, hostname, and sources.list
185185

@@ -193,16 +193,16 @@ function base_bootstrap() {
193193

194194
echo "debian-rpi64" | $SUDO tee "${MOUNTPOINT}/etc/hostname"
195195

196-
echo "deb http://deb.debian.org/debian/ ${RELEASE} main contrib non-free
197-
#deb-src http://deb.debian.org/debian/ ${RELEASE} main contrib non-free " | $SUDO tee -a "${MOUNTPOINT}/etc/apt/sources.list"
196+
echo "deb http://deb.debian.org/debian/ ${RELEASE} main contrib non-free non-free-firmware
197+
#deb-src http://deb.debian.org/debian/ ${RELEASE} main contrib non-free non-free-firmware " | $SUDO tee -a "${MOUNTPOINT}/etc/apt/sources.list"
198198

199199
if [[ ${RELEASE} == "stable" ]]; then
200200

201-
echo "deb http://deb.debian.org/debian/ ${RELEASE}-updates main contrib non-free
202-
#deb-src http://deb.debian.org/debian/ ${RELEASE}-updates main contrib non-free
201+
echo "deb http://deb.debian.org/debian/ ${RELEASE}-updates main contrib non-free non-free-firmware
202+
#deb-src http://deb.debian.org/debian/ ${RELEASE}-updates main contrib non-free non-free-firmware
203203
204-
deb http://deb.debian.org/debian-security ${RELEASE}-security main contrib non-free
205-
#deb-src http://deb.debian.org/debian-security ${RELEASE}-security main contrib non-free
204+
deb http://deb.debian.org/debian-security ${RELEASE}-security main contrib non-free non-free-firmware
205+
#deb-src http://deb.debian.org/debian-security ${RELEASE}-security main contrib non-free non-free-firmware
206206
207207
deb http://deb.debian.org/debian ${RELEASE}-backports main
208208
#deb-src http://deb.debian.org/debian ${RELEASE}-backports main" | $SUDO tee -a "${MOUNTPOINT}/etc/apt/sources.list"

0 commit comments

Comments
 (0)