Browse Source

Tools: switch to ardupilot.org for firmware and autotest

mission-4.1.18
Andrew Tridgell 9 years ago
parent
commit
dea708b368
  1. 4
      Tools/autotest/web-firmware/index.html
  2. 2
      Tools/autotest/web/index.html
  3. 2
      Tools/scripts/build_autotest.sh
  4. 4
      Tools/scripts/configure-ci.sh
  5. 2
      Tools/scripts/install-prereqs-arch.sh
  6. 2
      Tools/scripts/install-prereqs-ubuntu.sh
  7. 2
      Tools/scripts/unpack_mp.sh
  8. 2
      Tools/vagrant/initvagrant.sh

4
Tools/autotest/web-firmware/index.html

@ -9,7 +9,7 @@
<body> <body>
<div id="main"> <div id="main">
<a href="http://firmware.diydrones.com/"> <a href="http://firmware.ardupilot.org/">
<div id="logo"> <div id="logo">
</div> </div>
</a> </a>
@ -17,7 +17,7 @@
<h2>DIY Drones Firmware builds</h2> <h2>DIY Drones Firmware builds</h2>
These firmware builds are automatically generated by the These firmware builds are automatically generated by the
<a href="http://autotest.diydrones.com">DIY Drones autotest system</a>.<p> <a href="http://autotest.ardupilot.org">DIY Drones autotest system</a>.<p>
<h2>License</h2> <h2>License</h2>

2
Tools/autotest/web/index.html

@ -9,7 +9,7 @@
<body> <body>
<div id="main"> <div id="main">
<a href="http://autotest.diydrones.com/"> <a href="http://autotest.ardupilot.org/">
<div id="logo"> <div id="logo">
</div> </div>
</a> </a>

2
Tools/scripts/build_autotest.sh

@ -71,7 +71,7 @@ report() {
cat <<EOF | mail -s 'build failed' drones-discuss@googlegroups.com cat <<EOF | mail -s 'build failed' drones-discuss@googlegroups.com
A build of $d failed at `date` A build of $d failed at `date`
You can view the build logs at http://autotest.diydrones.com/ You can view the build logs at http://autotest.ardupilot.org/
A log of the commits since the last attempted build is below A log of the commits since the last attempted build is below

4
Tools/scripts/configure-ci.sh

@ -41,14 +41,14 @@ pushd $HOME/opt
# PX4 toolchain # PX4 toolchain
compiler=$ARM_ROOT compiler=$ARM_ROOT
if [ ! -d "$HOME/opt/$compiler" ]; then if [ ! -d "$HOME/opt/$compiler" ]; then
wget http://firmware.diydrones.com/Tools/PX4-tools/$ARM_TARBALL wget http://firmware.ardupilot.org/Tools/PX4-tools/$ARM_TARBALL
tar -xf $ARM_TARBALL tar -xf $ARM_TARBALL
fi fi
# RPi/BBB toolchain # RPi/BBB toolchain
compiler="tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64" compiler="tools-master/arm-bcm2708/gcc-linaro-arm-linux-gnueabihf-raspbian-x64"
if [ ! -d "$HOME/opt/$compiler" ]; then if [ ! -d "$HOME/opt/$compiler" ]; then
wget http://firmware.diydrones.com/Tools/Travis/NavIO/$RPI_TARBALL wget http://firmware.ardupilot.org/Tools/Travis/NavIO/$RPI_TARBALL
tar -xf $RPI_TARBALL tar -xf $RPI_TARBALL
fi fi

2
Tools/scripts/install-prereqs-arch.sh

@ -18,7 +18,7 @@ ARCH_AUR_PKGS="genromfs"
# (see https://launchpad.net/gcc-arm-embedded/) # (see https://launchpad.net/gcc-arm-embedded/)
ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3" ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3"
ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2" ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2"
ARM_TARBALL_URL="http://firmware.diydrones.com/Tools/PX4-tools/$ARM_TARBALL" ARM_TARBALL_URL="http://firmware.ardupilot.org/Tools/PX4-tools/$ARM_TARBALL"
# Ardupilot Tools # Ardupilot Tools
ARDUPILOT_TOOLS="ardupilot/Tools/autotest" ARDUPILOT_TOOLS="ardupilot/Tools/autotest"

2
Tools/scripts/install-prereqs-ubuntu.sh

@ -18,7 +18,7 @@ ASSUME_YES=false
# (see https://launchpad.net/gcc-arm-embedded/) # (see https://launchpad.net/gcc-arm-embedded/)
ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3" ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3"
ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2" ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2"
ARM_TARBALL_URL="http://firmware.diydrones.com/Tools/PX4-tools/$ARM_TARBALL" ARM_TARBALL_URL="http://firmware.ardupilot.org/Tools/PX4-tools/$ARM_TARBALL"
# Ardupilot Tools # Ardupilot Tools
ARDUPILOT_TOOLS="ardupilot/Tools/autotest" ARDUPILOT_TOOLS="ardupilot/Tools/autotest"

2
Tools/scripts/unpack_mp.sh

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
# unpack latest MissionPlanner*.zip on firmware.diydrones.com # unpack latest MissionPlanner*.zip on firmware.ardupilot.org
# to facilitate upgrade of existing MissionPlanner installs # to facilitate upgrade of existing MissionPlanner installs
export PATH=$PATH:/bin:/usr/bin export PATH=$PATH:/bin:/usr/bin

2
Tools/vagrant/initvagrant.sh

@ -16,7 +16,7 @@ UBUNTU64_PKGS="libc6:i386 libgcc1:i386 gcc-4.9-base:i386 libstdc++5:i386 libstdc
# (see https://launchpad.net/gcc-arm-embedded/) # (see https://launchpad.net/gcc-arm-embedded/)
ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3" ARM_ROOT="gcc-arm-none-eabi-4_9-2015q3"
ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2" ARM_TARBALL="$ARM_ROOT-20150921-linux.tar.bz2"
ARM_TARBALL_URL="http://firmware.diydrones.com/Tools/PX4-tools/$ARM_TARBALL" ARM_TARBALL_URL="http://firmware.ardupilot.org/Tools/PX4-tools/$ARM_TARBALL"
# Ardupilot Tools # Ardupilot Tools
ARDUPILOT_TOOLS="ardupilot/Tools/autotest" ARDUPILOT_TOOLS="ardupilot/Tools/autotest"

Loading…
Cancel
Save