mirror of
https://github.com/armbian/build
synced 2025-09-24 19:47:06 +07:00
19 lines
542 B
Bash
19 lines
542 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"
|
|
}
|