From 9425157499da035d1e24bccdad2fdfb010d71dcc Mon Sep 17 00:00:00 2001 From: Raito Bezarius Date: Mon, 7 Oct 2024 13:17:08 +0200 Subject: [PATCH] fix(qemu): give it a NAND on MIPS Signed-off-by: Raito Bezarius --- overlay.nix | 1 + pkgs/qemu/mips-with-nand.patch | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 pkgs/qemu/mips-with-nand.patch diff --git a/overlay.nix b/overlay.nix index dda4ddc..c909a90 100644 --- a/overlay.nix +++ b/overlay.nix @@ -254,6 +254,7 @@ extraPkgs // { qemuLim = let q = prev.qemu.overrideAttrs (o: { patches = o.patches ++ [ ./pkgs/qemu/arm-image-friendly-load-addr.patch + ./pkgs/qemu/mips-with-nand.patch ]; }); in q.override { nixosTestRunner = true; sdlSupport = false; }; diff --git a/pkgs/qemu/mips-with-nand.patch b/pkgs/qemu/mips-with-nand.patch new file mode 100644 index 0000000..d4df4ed --- /dev/null +++ b/pkgs/qemu/mips-with-nand.patch @@ -0,0 +1,25 @@ +From 875b1f312b6a5b432e020723007a374d82a797f1 Mon Sep 17 00:00:00 2001 +From: Raito Bezarius +Date: Mon, 7 Oct 2024 13:05:06 +0200 +Subject: [PATCH] feat: support NAND devices for MIPS + +Signed-off-by: Raito Bezarius +--- + hw/mips/Kconfig | 1 + + 1 file changed, 1 insertion(+) + +diff --git a/hw/mips/Kconfig b/hw/mips/Kconfig +index 692bede538..60738ac659 100644 +--- a/hw/mips/Kconfig ++++ b/hw/mips/Kconfig +@@ -10,6 +10,7 @@ config MALTA + select MIPS_CPS + select PIIX + select PFLASH_CFI01 ++ select NAND + select SERIAL + select SMBUS_EEPROM + +-- +2.46.0 +