Skip to content

Commit 0e56943

Browse files
committed
fix(pytest-embedded-qemu): Allowed QEMU RISCV flash image sizes
1 parent 6659874 commit 0e56943

File tree

1 file changed

+0
-6
lines changed
  • pytest-embedded-qemu/pytest_embedded_qemu

1 file changed

+0
-6
lines changed

pytest-embedded-qemu/pytest_embedded_qemu/app.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,16 +25,10 @@ class IdfFlashImageMaker:
2525
]
2626

2727
RISCV_FLASH_BIN_SIZES: t.ClassVar[t.List[t.Tuple[int, str]]] = [
28-
(256 * 1024, '256KB'),
29-
(512 * 1024, '512KB'),
30-
(1 * 1024 * 1024, '1MB'),
3128
(2 * 1024 * 1024, '2MB'),
3229
(4 * 1024 * 1024, '4MB'),
3330
(8 * 1024 * 1024, '8MB'),
3431
(16 * 1024 * 1024, '16MB'),
35-
(32 * 1024 * 1024, '32MB'),
36-
(64 * 1024 * 1024, '64MB'),
37-
(128 * 1024 * 1024, '128MB'),
3832
]
3933

4034
def __init__(self, app: 'QemuApp', image_path: str, *, qemu_version: Version = Version('8.0.0')):

0 commit comments

Comments
 (0)