Skip to content
Snippets Groups Projects
Commit 2b8ea4db authored by Andrew Tridgell's avatar Andrew Tridgell
Browse files

build: fixed build_binaries.sh for new PX4 build

parent 73250efc
No related branches found
No related tags found
No related merge requests found
...@@ -103,7 +103,7 @@ build_arduplane() { ...@@ -103,7 +103,7 @@ build_arduplane() {
skip_build $tag $ddir || { skip_build $tag $ddir || {
make px4-clean && make px4-clean &&
make px4 && make px4 &&
copyit $PX4_ROOT/Images/px4fmu.px4 $ddir $tag copyit ArduPlane.px4 $ddir $tag
} }
} }
popd popd
...@@ -134,7 +134,7 @@ build_arducopter() { ...@@ -134,7 +134,7 @@ build_arducopter() {
skip_build $tag $ddir && continue skip_build $tag $ddir && continue
make px4-clean || continue make px4-clean || continue
make px4-$f || continue make px4-$f || continue
copyit $PX4_ROOT/Images/px4fmu.px4 $ddir $tag copyit ArduCopter.px4 $ddir $tag
done done
} }
popd popd
...@@ -162,7 +162,7 @@ build_rover() { ...@@ -162,7 +162,7 @@ build_rover() {
skip_build $tag $ddir || { skip_build $tag $ddir || {
make px4-clean && make px4-clean &&
make px4 && make px4 &&
copyit $PX4_ROOT/Images/px4fmu.px4 $binaries/Rover/$hdate/PX4 $tag copyit APMRover2.px4 $binaries/Rover/$hdate/PX4 $tag
} }
} }
popd popd
...@@ -181,7 +181,7 @@ build_px4io() { ...@@ -181,7 +181,7 @@ build_px4io() {
make clean && make clean &&
make configure_px4io && make configure_px4io &&
make && make &&
copyit $PX4_ROOT/Images/px4io.bin $ddir $tag && copyit px4io.bin $ddir $tag &&
make configure_px4fmu make configure_px4fmu
} }
git checkout master git checkout master
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment