apt-get update during build phase

This commit is contained in:
Ray Ozzie 2016-04-10 16:40:39 -04:00
parent 2b2f9079bb
commit 0ba338f737
2 changed files with 4 additions and 4 deletions

View File

@ -6,10 +6,11 @@ set -e
echo "The Things Network RPi + IC880A Gateway Builder/Installer" echo "The Things Network RPi + IC880A Gateway Builder/Installer"
echo "" echo ""
# Make sure that we're able to do apt-get's quickly at runtime # Install the necessary packages, whether they're used
# to install necessary tools. Tough to pay the price here, # at build time or at runtime.
# but it's still better here than at device startup.
apt-get update apt-get update
## needed by the "ip" command in set-gateway-id.sh called by run.sh
apt-get install iproute
# Build in a temp folder that we'll completely purge after build, # Build in a temp folder that we'll completely purge after build,
# and install into the linux folder where apps reside. # and install into the linux folder where apps reside.

1
run.sh
View File

@ -149,7 +149,6 @@ echo -e "{\n\
# Set gateway_ID in local_conf.json to the gateway's MAC address # Set gateway_ID in local_conf.json to the gateway's MAC address
echo "******************" echo "******************"
apt-get install iproute
./set-gateway-id.sh start ./local_conf.json ./set-gateway-id.sh start ./local_conf.json
echo "******************" echo "******************"
echo "" echo ""