diff options
| author | Linus Walleij | 2026-01-27 19:52:37 +0000 |
|---|---|---|
| committer | Linus Walleij | 2026-01-28 07:22:25 +0000 |
| commit | b8dc7ac9c68d7e3e3a838c2ca32545c57642653b (patch) | |
| tree | a9fb7b7927574a103b631f00ce2ca969cf465e50 | |
| parent | 5cd176925eca99f9d16137a1841a20ca647ad586 (diff) | |
| download | openwrt-b8dc7ac9c68d7e3e3a838c2ca32545c57642653b.tar.gz | |
gemini: select CONFIG_BLK_DEV_LOOP
The gemini is using split squashfs/jffs2 root filesystems on
all devices, so without CONFIG_BLK_DEV_LOOP the device does
not gain a writeable root filesystem with these boot messages:
mount_root: unable to create loop device
mount_root: jffs2 not ready yet, using temporary tmpfs overlay
and then it never gets out of that. Fix this so we get writeable
rootfs again.
Link: https://github.com/openwrt/openwrt/pull/21748
Signed-off-by: Linus Walleij <linusw@kernel.org>
| -rw-r--r-- | target/linux/gemini/config-6.12 | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/linux/gemini/config-6.12 b/target/linux/gemini/config-6.12 index 7887f003bc..27fd6d0d9d 100644 --- a/target/linux/gemini/config-6.12 +++ b/target/linux/gemini/config-6.12 @@ -28,6 +28,7 @@ CONFIG_ATA_FORCE=y CONFIG_ATA_VERBOSE_ERROR=y CONFIG_AUTO_ZRELADDR=y CONFIG_BINFMT_FLAT_ARGVP_ENVP_ON_STACK=y +CONFIG_BLK_DEV_LOOP=y CONFIG_BLK_DEV_SD=y CONFIG_BLK_MQ_PCI=y CONFIG_BLK_PM=y |