From: Stafford Horne Date: Thu, 4 Oct 2018 14:09:49 +0000 (+0900) Subject: Fix help for or1k builds X-Git-Tag: 24jan2021_ls180~1571^2 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=ff6de429f0225430e64a6a983f224be312bffbe3;p=litex.git 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. --- diff --git a/litex/soc/integration/soc_core.py b/litex/soc/integration/soc_core.py index 11e08a3f..c8cdc179 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,