Files
build/extensions/armbian-config.sh
Blieque Mariguan 3743daffa2 feat: Use deb822 APT source for armbian-config
- Replace creation of `armbian-config.list` with
  `armbian-config.sources`. This holds the same information in a newer
  format, deb822. This does not affect `armbian.list`.

See also: https://github.com/armbian/configng/pull/407
2025-02-04 18:49:52 +01:00

19 lines
544 B
Bash

# Install armbian config from repo. Now it is producing externally https://github.com/armbian/configng
# and they are moved to main armbian repo periodically
function custom_apt_repo__add_armbian-github-repo() {
cat <<- EOF > "${SDCARD}"/etc/apt/sources.list.d/armbian-config.sources
Types: deb
URIs: https://github.armbian.com/configng
Suites: stable
Components: main
Signed-By: "${APT_SIGNING_KEY_FILE}"
EOF
}
function post_armbian_repo_customize_image__install_armbian-config() {
chroot_sdcard_apt_get_install "armbian-config"
}