Skip to content
Snippets Groups Projects
Commit 1bdd031f authored by dx's avatar dx
Browse files

Remove build system support for proto5/adi-less

It was never actually supported by the codebase (the port expanders are
completely different and only implemented in the other repo)
parent be167047
No related branches found
No related tags found
No related merge requests found
......@@ -22,16 +22,10 @@ menu "Badge23 Config"
Visual identifiers:
- Sticker with B4xx (xx being arbitrary digits) on the back
bool "Prototype 4"
config BADGE23_HW_GEN_ADILESS
help
Prototype version 5, a.k.a. adi-less
Visual identifiers:
- Sticker with B5xx (xx being arbitrary digits) on the back
bool "Prototype 5 / ADI-less"
config BADGE23_HW_GEN_P6
help
Prototype version 6, a.k.a. proto6
- Sticker with B6xx (xx being arbitrary digits) on the back
bool "Prototype 5 / ADI-less"
bool "Prototype 6"
endchoice
endmenu
......@@ -6,8 +6,6 @@ const char *flow3r_bsp_hw_name = "proto1";
const char *flow3r_bsp_hw_name = "proto3";
#elif defined(CONFIG_BADGE23_HW_GEN_P4)
const char *flow3r_bsp_hw_name = "proto4";
#elif defined(CONFIG_BADGE23_HW_GEN_ADILESS)
const char *flow3r_bsp_hw_name = "adiless";
#elif defined(CONFIG_BADGE23_HW_GEN_P6)
const char *flow3r_bsp_hw_name = "proto6";
#else
......
......@@ -17,7 +17,6 @@ def action_extensions(base_actions, project_path=os.getcwd()):
'p1': ['proto1'],
'p3': ['proto3'],
'p4': ['proto4'],
'p5': ['adi-less'],
'p6': ['proto6'],
}
......@@ -61,7 +60,7 @@ def action_extensions(base_actions, project_path=os.getcwd()):
extensions = {
'global_options': [{
'names': ['-g', '--generation'],
'help': 'Specify badge generation to build for (one of: proto1, proto3, proto4, adiless). Defaults to proto4.',
'help': 'Specify badge generation to build for (one of: proto1, proto3, proto4). Defaults to proto4.',
'scope': 'shared',
'multiple': False,
}],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment