Skip to content

Commit da6dde2

Browse files
committed
Merge branch 'master' into arm64
2 parents 2bc1f64 + 47e34ef commit da6dde2

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,7 @@ The following environment variables are supported:
194194

195195
* `WPA_ESSID`, `WPA_PASSWORD` and `WPA_COUNTRY` (Default: unset)
196196

197-
If these are set, they are use to configure `wpa_supplicant.conf`, so that the Raspberry Pi can automatically connect to a wireless network on first boot. If `WPA_ESSID` is set and `WPA_PASSWORD` is unset an unprotected wireless network will be configured. If set, `WPA_PASSWORD` must be between 8 and 63 characters.
197+
If these are set, they are use to configure `wpa_supplicant.conf`, so that the Raspberry Pi can automatically connect to a wireless network on first boot. If `WPA_ESSID` is set and `WPA_PASSWORD` is unset an unprotected wireless network will be configured. If set, `WPA_PASSWORD` must be between 8 and 63 characters. `WPA_COUNTRY` is a 2-letter ISO/IEC 3166 country Code, i.e. `GB`
198198

199199
* `ENABLE_SSH` (Default: `0`)
200200

build.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ EOF
2121
PACKAGES="$(sed -f "${SCRIPT_DIR}/remove-comments.sed" < "${i}-packages-nr")"
2222
if [ -n "$PACKAGES" ]; then
2323
on_chroot << EOF
24-
apt-get -o APT::Acquire::Retries=3 install --no-install-recommends -y $PACKAGES
24+
apt-get -o Acquire::Retries=3 install --no-install-recommends -y $PACKAGES
2525
EOF
2626
if [ "${USE_QCOW2}" = "1" ]; then
2727
on_chroot << EOF
@@ -36,7 +36,7 @@ EOF
3636
PACKAGES="$(sed -f "${SCRIPT_DIR}/remove-comments.sed" < "${i}-packages")"
3737
if [ -n "$PACKAGES" ]; then
3838
on_chroot << EOF
39-
apt-get -o APT::Acquire::Retries=3 install -y $PACKAGES
39+
apt-get -o Acquire::Retries=3 install -y $PACKAGES
4040
EOF
4141
if [ "${USE_QCOW2}" = "1" ]; then
4242
on_chroot << EOF

export-noobs/00-release/files/release_notes.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
UNRELEASED:
2-
*
2+
* Install kms++-utils
33
2022-09-22:
44
* NodeRED removed from Recommended Software and full image - should only be installed via apt
55
* Improved speed of startup of lxpanel network controller plugins

stage2/01-sys-tweaks/00-packages

+1
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,4 @@ raspinfo
3333
udisks2
3434
unzip zip p7zip-full
3535
file
36+
kms++-utils

0 commit comments

Comments
 (0)