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-05-20 15:36:15 -03:00
|
|
|
if not isinstance(bld.get_board(), boards.linux):
|
2016-03-07 18:10:45 -04:00
|
|
|
return
|
|
|
|
|
2016-01-21 18:34:14 -04:00
|
|
|
bld.ap_program(
|
2015-10-09 11:03:59 -03:00
|
|
|
use='ap',
|
2016-03-24 16:58:15 -03:00
|
|
|
program_groups='tools',
|
2015-10-09 11:03:59 -03:00
|
|
|
)
|