aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-09-19 10:03:49 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2020-09-19 10:06:54 +0200
commitb2abd955f7261602a77f571721bf05a2ea9d0d08 (patch)
treed718e4fc9b84328f28e0e4ab9628f4cddf499826
parent50a2c1a72677ce9fcd96edf92d48a52bdc5de19f (diff)
downloadvendor_replicant-data-b2abd955f7261602a77f571721bf05a2ea9d0d08.tar.gz
vendor_replicant-data-b2abd955f7261602a77f571721bf05a2ea9d0d08.tar.bz2
vendor_replicant-data-b2abd955f7261602a77f571721bf05a2ea9d0d08.zip
Add GT-I9023 /proc/mtd
The /proc/mtd file has been extracted from two different devices and the exact same file was produced: the files were compared with the 'cmp' command and their content was identical. Both were obtained with 'adb pull /proc/mtd' under Replicant 4.2 0004. Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--MTD/GT-I9023/stock/proc/mtd8
-rw-r--r--MTD/README.txt10
2 files changed, 18 insertions, 0 deletions
diff --git a/MTD/GT-I9023/stock/proc/mtd b/MTD/GT-I9023/stock/proc/mtd
new file mode 100644
index 0000000..c120ba7
--- /dev/null
+++ b/MTD/GT-I9023/stock/proc/mtd
@@ -0,0 +1,8 @@
+dev: size erasesize name
+mtd0: 00200000 00040000 "bootloader"
+mtd1: 00140000 00040000 "misc"
+mtd2: 00800000 00040000 "boot"
+mtd3: 00800000 00040000 "recovery"
+mtd4: 1d580000 00040000 "cache"
+mtd5: 00d80000 00040000 "radio"
+mtd6: 006c0000 00040000 "efs"
diff --git a/MTD/README.txt b/MTD/README.txt
new file mode 100644
index 0000000..4ab6864
--- /dev/null
+++ b/MTD/README.txt
@@ -0,0 +1,10 @@
+== What is MTD ==
+The Linux source code defines MTD as "Memory Technology Device".
+In drivers/mtd/Kconfig, there is the following explanation:
+ "Memory Technology Devices are flash, RAM and similar chips, often
+ used for solid state file systems on embedded devices. This option
+ will provide the generic support for MTD drivers to register
+ themselves with the kernel and for potential users of MTD devices
+ to enumerate the devices which are present and obtain a handle on
+ them. It will also allow you to select individual drivers for
+ particular hardware and users of MTD devices. If unsure, say N."