waf: allow for "./waf bootloader"

easier build of the bootloader
This commit is contained in:
Andrew Tridgell 2018-06-17 07:11:21 +10:00
parent f9faa0765d
commit 4c2c2012a6
2 changed files with 2 additions and 2 deletions

View File

@ -4,5 +4,5 @@
def build(bld):
bld.ap_program(
use='ap',
program_groups='tools',
program_groups='bootloader'
)

View File

@ -456,7 +456,7 @@ ardupilotwaf.build_command('check-all',
doc='shortcut for `waf check --alltests`',
)
for name in ('antennatracker', 'copter', 'heli', 'plane', 'rover', 'sub'):
for name in ('antennatracker', 'copter', 'heli', 'plane', 'rover', 'sub', 'bootloader'):
ardupilotwaf.build_command(name,
program_group_list=name,
doc='builds %s programs' % name,