Skip to content

Commit

Permalink
doc: clarify "arm11" usage despite ARMv6 removal
Browse files Browse the repository at this point in the history
Signed-off-by: Axel Heider <[email protected]>
  • Loading branch information
axel-h committed Mar 11, 2022
1 parent 171bda0 commit 4091643
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion python-capdl-tool/capdl/util.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
# <name>: [arch_obj_ctor, <alias_list>]
'aarch32': [lambda: ARM32Arch(), ['arm', 'arm11']],
'arm_hyp': [lambda: ARM32Arch(hyp=True), []],
'aarch64': [lambda: AARCH64Arch(), []],
Expand Down

0 comments on commit 4091643

Please sign in to comment.