summaryrefslogtreecommitdiff
path: root/fw/btl/meson.build
blob: 0b48c11f1cc0785e3165759cbaa404008a13b922 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
bootloader_config = meson.current_source_dir() / 'bootloader.conf'

external_project = import('unstable-external_project')
bootloader_bin = meson.current_build_dir() / 'zephyr' / 'zephyr.bin'
bootloader_project = external_project.add_project('configure.py',
  configure_options: [
    bootloader_firmware,
    meson.current_build_dir() / 'build',
    board,
    zephyr,
    ';'.join(zephyr_modules),
    bootloader_config,
    signing_key,
  ],
  verbose: true,
)