waf: remove NuttX-based IO firmware blob

This commit is contained in:
Peter Barker 2019-07-12 15:51:53 +10:00 committed by Peter Barker
parent c502ac4ce9
commit 0952ca0abc
2 changed files with 0 additions and 14 deletions

View File

@ -283,14 +283,6 @@ class Board:
def embed_ROMFS_files(self, ctx):
'''embed some files using AP_ROMFS'''
import embed
if ctx.env.USE_NUTTX_IOFW:
# use fmuv2_IO_NuttX.bin instead of fmuv2_IO.bin
for i in range(len(ctx.env.ROMFS_FILES)):
(name,filename) = ctx.env.ROMFS_FILES[i]
if name == 'io_firmware.bin':
filename = 'Tools/IO_Firmware/fmuv2_IO_NuttX.bin'
print("Using IO firmware %s" % filename)
ctx.env.ROMFS_FILES[i] = (name,filename);
header = ctx.bldnode.make_node('ap_romfs_embedded.h').abspath()
if not embed.create_embedded_h(header, ctx.env.ROMFS_FILES):
ctx.fatal("Failed to created ap_romfs_embedded.h")

View File

@ -91,11 +91,6 @@ def options(opt):
default=False,
help='enable OS level asserts.')
g.add_option('--use-nuttx-iofw',
action='store_true',
default=False,
help='use old NuttX IO firmware for IOMCU')
g.add_option('--bootloader',
action='store_true',
default=False,
@ -362,7 +357,6 @@ def configure(cfg):
cfg.env.DEBUG = cfg.options.debug
cfg.env.ENABLE_ASSERTS = cfg.options.enable_asserts
cfg.env.BOOTLOADER = cfg.options.bootloader
cfg.env.USE_NUTTX_IOFW = cfg.options.use_nuttx_iofw
cfg.env.OPTIONS = cfg.options.__dict__