mirror of
https://github.com/enjoy-digital/litex.git
synced 2025-01-04 09:52:26 -05:00
integration/builder: fix bios_option typo.
This commit is contained in:
parent
267f3e30df
commit
6250d4fa41
1 changed files with 2 additions and 2 deletions
|
@ -110,8 +110,8 @@ class Builder:
|
||||||
define(name.upper() + "_DIRECTORY", src_dir)
|
define(name.upper() + "_DIRECTORY", src_dir)
|
||||||
|
|
||||||
for bios_option in self.bios_options:
|
for bios_option in self.bios_options:
|
||||||
assert option in ["TERM_NO_HIST", "TERM_MINI", "TERM_NO_COMPLETE"]
|
assert bios_option in ["TERM_NO_HIST", "TERM_MINI", "TERM_NO_COMPLETE"]
|
||||||
define(option, "1")
|
define(bios_option, "1")
|
||||||
|
|
||||||
write_to_file(
|
write_to_file(
|
||||||
os.path.join(self.generated_dir, "variables.mak"),
|
os.path.join(self.generated_dir, "variables.mak"),
|
||||||
|
|
Loading…
Reference in a new issue