mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-hnodeb.git
synced 2025-10-23 00:12:18 +00:00
This commit contains all the relevant project structure to build the osmo-hnodeb binary, its doc, tests, packaging, etc. The osmo-hnodeb binary itself is still just an empty main(). Related: SYS#5516 Change-Id: I6ae3215ae4b956689d2adc88db7c3ead5df14f37
18 lines
412 B
Bash
Executable File
18 lines
412 B
Bash
Executable File
#!/bin/sh -x
|
|
|
|
if [ -z "$DOCKER_PLAYGROUND" ]; then
|
|
echo "You need to set DOCKER_PLAYGROUND"
|
|
exit 1
|
|
fi
|
|
|
|
SCRIPT=$(realpath "$0")
|
|
MANUAL_DIR=$(dirname "$SCRIPT")
|
|
|
|
COMMIT=${COMMIT:-$(git log -1 --format=format:%H)}
|
|
|
|
cd "$DOCKER_PLAYGROUND/scripts" || exit 1
|
|
|
|
OSMO_HNODEB_BRANCH=$COMMIT ./regen_doc.sh osmo-hnodeb 4273 \
|
|
"$MANUAL_DIR/chapters/counters_generated.adoc" \
|
|
"$MANUAL_DIR/vty/hnodeb_vty_reference.xml"
|