Files
@ efe960906ce4
Branch filter:
Location: freifunk/Firmware-building/build_script/freifunk_user.sh - annotation
efe960906ce4
663 B
text/x-sh
experimental: remove x86 modules
The modules were ported from an older config, unknown if needed.
site-ffda (Darmstadt) seems not not use them, or have any mention of
them. Additionally, we do not currently have any x86 devices in the
network.
Removal of legacy info makes the config easier to grasp.
The modules were ported from an older config, unknown if needed.
site-ffda (Darmstadt) seems not not use them, or have any mention of
them. Additionally, we do not currently have any x86 devices in the
network.
Removal of legacy info makes the config easier to grasp.
cf4f965e2938 6ddd0eae15f7 6ddd0eae15f7 cf4f965e2938 cf4f965e2938 cf4f965e2938 6ddd0eae15f7 6ddd0eae15f7 6ddd0eae15f7 cf4f965e2938 cf4f965e2938 cf4f965e2938 6ddd0eae15f7 6ddd0eae15f7 cf4f965e2938 cf4f965e2938 6ddd0eae15f7 cf4f965e2938 cf4f965e2938 6ddd0eae15f7 6ddd0eae15f7 6ddd0eae15f7 cf4f965e2938 6ddd0eae15f7 cf4f965e2938 | #!/usr/bin/env bash
set +xe
BRANCH=$1
EXPERIMENTAL="experimental"
AUTOUPDATER_VER=${2:-$EXPERIMENTAL}
if [ -z "$BRANCH" ]; then
echo "Usage: freifunk_user.sh [gluon branch] (updater_version)"
echo ""
echo "branch: gluon release branch"
echo "updater_version: experimental, beta, stable. defaults to experimental"
echo ""
echo "Example: ./freifunk_user.sh v2023.2.5 stable"
exit 1
fi
git clone ssh://kallithea@projects.c3l.lu/freifunk/Firmware-building
git clone https://github.com/freifunk-gluon/gluon.git gluon -b "$BRANCH"
ln -vs ~/Firmware-building/site_config/"${AUTOUPDATER_VER}"/site ~/gluon/site
pushd ~/gluon/ || exit
make update
popd || exit
|