diff --git a/python-capdl-tool/capdl/util.py b/python-capdl-tool/capdl/util.py index c952019e..986da814 100644 --- a/python-capdl-tool/capdl/util.py +++ b/python-capdl-tool/capdl/util.py @@ -239,8 +239,12 @@ def ipc_buffer_size(self): return 512 +# Support for ARMv6 has been removed from seL4 in early 2022. However, support +# for "arm11" is kept here, because this name is used in the CapDL specification +# for AARCH32 configurations. Updating this is a low priority task, because is +# is a lot of work with not much gain (except cleaning up legacy) and keeping +# the name there isn't causing any issues. CAPDL_SUPPORTED_ARCHITECTURES = { - # : [arch_obj_ctor, ] 'aarch32': [lambda: ARM32Arch(), ['arm', 'arm11']], 'arm_hyp': [lambda: ARM32Arch(hyp=True), []], 'aarch64': [lambda: AARCH64Arch(), []],