2015-10-09 11:03:59 -03:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# encoding: utf-8
|
|
|
|
|
2016-03-07 18:10:45 -04:00
|
|
|
import boards
|
|
|
|
|
2015-10-09 11:03:59 -03:00
|
|
|
def build(bld):
|
2016-03-07 18:10:45 -04:00
|
|
|
board = boards.get_board(bld.env.BOARD)
|
|
|
|
if not isinstance(board, boards.linux):
|
|
|
|
return
|
|
|
|
|
2016-01-21 18:34:14 -04:00
|
|
|
bld.ap_program(
|
2015-10-09 11:03:59 -03:00
|
|
|
use='ap',
|
2016-01-29 08:21:11 -04:00
|
|
|
program_group='tools',
|
2015-10-09 11:03:59 -03:00
|
|
|
)
|