forked from coolsnowwolf/lede
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
55ce447
commit 5d4863c
Showing
4 changed files
with
49 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
LINUX_VERSION-6.1 = .1 | ||
LINUX_KERNEL_HASH-6.1.1 = a3e61377cf4435a9e2966b409a37a1056f6aaa59e561add9125a88e3c0971dfb | ||
LINUX_VERSION-6.1 = .2 | ||
LINUX_KERNEL_HASH-6.1.2 = ee41f3c4f599b2f46f08aae428c9243db403e7292eb2c9f04ee34909b038d1ae |
47 changes: 47 additions & 0 deletions
47
.../generic/backport-6.1/408-v6.2-mtd-core-set-ROOT_DEV-for-partitions-marked-as-rootf.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
From 26422ac78e9d8767bd4aabfbae616b15edbf6a1b Mon Sep 17 00:00:00 2001 | ||
From: =?UTF-8?q?Rafa=C5=82=20Mi=C5=82ecki?= <[email protected]> | ||
Date: Sat, 22 Oct 2022 23:13:18 +0200 | ||
Subject: [PATCH] mtd: core: set ROOT_DEV for partitions marked as rootfs in DT | ||
MIME-Version: 1.0 | ||
Content-Type: text/plain; charset=UTF-8 | ||
Content-Transfer-Encoding: 8bit | ||
|
||
This adds support for "linux,rootfs" binding that is used to mark flash | ||
partition containing rootfs. It's useful for devices using device tree | ||
that don't have bootloader passing root info in cmdline. | ||
|
||
Signed-off-by: Rafa? Mi?ecki <[email protected]> | ||
Signed-off-by: Miquel Raynal <[email protected]> | ||
Link: https://lore.kernel.org/linux-mtd/[email protected] | ||
--- | ||
drivers/mtd/mtdcore.c | 12 ++++++++++++ | ||
1 file changed, 12 insertions(+) | ||
|
||
--- a/drivers/mtd/mtdcore.c | ||
+++ b/drivers/mtd/mtdcore.c | ||
@@ -28,6 +28,7 @@ | ||
#include <linux/leds.h> | ||
#include <linux/debugfs.h> | ||
#include <linux/nvmem-provider.h> | ||
+#include <linux/root_dev.h> | ||
|
||
#include <linux/mtd/mtd.h> | ||
#include <linux/mtd/partitions.h> | ||
@@ -737,6 +738,17 @@ int add_mtd_device(struct mtd_info *mtd) | ||
not->add(mtd); | ||
|
||
mutex_unlock(&mtd_table_mutex); | ||
+ | ||
+ if (of_find_property(mtd_get_of_node(mtd), "linux,rootfs", NULL)) { | ||
+ if (IS_BUILTIN(CONFIG_MTD)) { | ||
+ pr_info("mtd: setting mtd%d (%s) as root device\n", mtd->index, mtd->name); | ||
+ ROOT_DEV = MKDEV(MTD_BLOCK_MAJOR, mtd->index); | ||
+ } else { | ||
+ pr_warn("mtd: can't set mtd%d (%s) as root device - mtd must be builtin\n", | ||
+ mtd->index, mtd->name); | ||
+ } | ||
+ } | ||
+ | ||
/* We _know_ we aren't being removed, because | ||
our caller is still holding us here. So none | ||
of this try_ nonsense, and no bitching about it |
22 changes: 0 additions & 22 deletions
22
target/linux/generic/pending-6.1/101-Use-stddefs.h-instead-of-compiler.h.patch
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
...nux/generic/pending-6.1/732-12-net-ethernet-mtk_eth_soc-drop-packets-to-WDMA-if-the.patch
This file was deleted.
Oops, something went wrong.