Skip to content
Snippets Groups Projects
Verified Commit 87b886c9 authored by Josef Schlehofer's avatar Josef Schlehofer
Browse files

compile_pkgs: use HTTPS everywhere and change SUPPORT_URL

parent b12d24a6
No related merge requests found
......@@ -198,9 +198,9 @@ configure() {
echo "CONFIG_VERSION_DIST=\"TurrisOS\""
echo "CONFIG_VERSION_REPO=\"https://repo.turris.cz/$PUBLISH_BRANCH/$TARGET_BOARD/packages\""
echo "CONFIG_VERSION_NUMBER=\"$("${src_dir}/helpers/turris-version.sh" version)\""
echo "CONFIG_VERSION_HOME_URL=\"http://www.turris.cz/\""
echo "CONFIG_VERSION_BUG_URL=\"http://gitlab.labs.nic.cz/groups/turris/-/issues\""
echo "CONFIG_VERSION_SUPPORT_URL=\"http://www.turris.cz/support-community/\""
echo "CONFIG_VERSION_HOME_URL=\"https://www.turris.cz/\""
echo "CONFIG_VERSION_BUG_URL=\"https://gitlab.labs.nic.cz/groups/turris/-/issues\""
echo "CONFIG_VERSION_SUPPORT_URL=\"https://www.turris.cz/support/\""
echo "CONFIG_ALL_KMODS=$everything"
echo "CONFIG_ALL=$everything"
} >> .config
......@@ -210,7 +210,7 @@ configure() {
local to_commit=()
for config in target/linux/"${OPENWRT_ARCH}"/config-*; do
echo "${EXTRA_KERNEL}" >> "$config"
to_commit+=( "$config" )
to_commit+=( "$config" )
done
_git commit -m 'kernel: Add customized kernel options' "${to_commit[@]}"
}
......@@ -606,7 +606,7 @@ while [ $# -gt 0 ]; do
;;
-a)
shift
BUILD_ARGS+=( "$1" )
BUILD_ARGS+=( "$1" )
;;
-p)
shift
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment