From ff6de429f0225430e64a6a983f224be312bffbe3 Mon Sep 17 00:00:00 2001 From: Stafford Horne Date: Thu, 4 Oct 2018 23:09:49 +0900 Subject: [PATCH] Fix help for or1k builds The help said cpu-type could be mor1kx, which is correct but you must pass or1k to get mor1kx. Fix the message to properly represent what needs to be passed to the commandline. --- litex/soc/integration/soc_core.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 11e08a3fc..c8cdc1794 100644 --- a/litex/soc/integration/soc_core.py +++ b/litex/soc/integration/soc_core.py @@ -384,7 +384,7 @@ class SoCCore(Module): def soc_core_args(parser): parser.add_argument("--cpu-type", default=None, - help="select CPU: lm32, mor1kx, picorv32, vexriscv, minerva") + help="select CPU: lm32, or1k, picorv32, vexriscv, minerva") parser.add_argument("--cpu-variant", default=None, help="select CPU variant") parser.add_argument("--integrated-rom-size", default=None, type=int,