From 3a25af1c2847eeba45b0d12dd0f55a56a9f59ea3 Mon Sep 17 00:00:00 2001 From: Hans Baier Date: Fri, 5 Nov 2021 09:56:23 +0700 Subject: [PATCH] 10cl006: add missing spiflash option --- litex_boards/targets/qmtech_10cl006.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/litex_boards/targets/qmtech_10cl006.py b/litex_boards/targets/qmtech_10cl006.py index 294b100..cab5013 100755 --- a/litex_boards/targets/qmtech_10cl006.py +++ b/litex_boards/targets/qmtech_10cl006.py @@ -144,6 +144,7 @@ def main(): sdopts = parser.add_mutually_exclusive_group() sdopts.add_argument("--with-spi-sdcard", action="store_true", help="Enable SPI-mode SDCard support") sdopts.add_argument("--with-sdcard", action="store_true", help="Enable SDCard support") + parser.add_argument("--with-spi-flash", action="store_true", help="Enable SPI Flash (MMAPed)") parser.add_argument("--no-ident-version", action="store_false", help="Disable build time output") viopts = parser.add_mutually_exclusive_group() viopts.add_argument("--with-video-terminal", action="store_true", help="Enable Video Terminal (VGA)") @@ -163,6 +164,7 @@ def main(): ident_version = args.no_ident_version, with_video_terminal = args.with_video_terminal, with_video_framebuffer = args.with_video_framebuffer, + with_spi_flash = args.with_spi_flash, sdram_rate = args.sdram_rate, **soc_core_argdict(args) )