天天看点

uboot通过kernel command line 动态分区 CONFIG_MTD_CMDLINE_PARTS

The Linux kernel configuration item ​<code>​CONFIG_MTD_CMDLINE_PARTS​</code>​ has multiple definitions:

The configuration item CONFIG_MTD_CMDLINE_PARTS:

prompt: Command line partition table parsing

type: tristate

depends on: ​<code>​CONFIG_MTD_PARTITIONS = "y" &amp;&amp; CONFIG_MTD = "y"​</code>​

defined in drivers/mtd/Kconfig

found in Linux Kernels: from 2.6.0 release still available on 2.6.39 release

module created: ​<code>​cmdlinepart​</code>​

Allow generic configuration of the MTD partition tables via the kernel command line. Multiple flash resources are supported for hardware where different kinds of flash memory are available.

You will still need the parsing functions to be called by the driver for your particular device. It won't happen automatically. The SA1100 map driver (CONFIG_MTD_SA1100) has an option for this, for example.

The format for the command line is as follows:

mtdparts=&lt;mtddef&gt;[;&lt;mtddef] &lt;mtddef&gt; := &lt;mtd-id&gt;:&lt;partdef&gt;[,&lt;partdef&gt;] &lt;partdef&gt; := &lt;size&gt;[@offset][&lt;name&gt;][ro] &lt;mtd-id&gt; := unique id used in mapping driver/device &lt;size&gt; := standard linux memsize OR "-" to denote all remaining space &lt;name&gt; := (NAME)

Due to the way Linux handles the command line, no spaces are allowed in the partition definition(中间不能有空格), including mtd id's and partition names.

Examples:

1 flash resource (mtd-id "sa1100"), with 1 single writable partition: mtdparts=sa1100:-

Same flash, but 2 named partitions, the first one being read-only: mtdparts=sa1100:256k(ARMboot)ro,-(root)

If unsure, say 'N'.

1. uboot $mtdparts 和 linux /dev/mtd* 的联系

比如:

uboot:# setenv mtdparts 'mtdparts=nx_2016:1408k@0k(boot),128k@1408k(env),-(extra);nx_2017:16m(k0),16m(k1),-(nandextra)'

linux:# cat /proc/mtd

dev:    size   erasesize  name

mtd0: 00160000 00010000 "boot"

mtd1: 00020000 00010000 "env"

mtd2: 00280000 00010000 "extra"

mtd3: 00400000 00010000 "nx_2016"

mtd4: 04000000 00004000 "nx_2017"

mtd5: 01000000 00004000 "k0"

mtd6: 01000000 00004000 "k1"

mtd7: 02000000 00004000 "nandextra"

这里有几个问题:

1.&lt;mtd-id&gt; := unique id used in mapping driver/device 这个怎么弄?

继续阅读