我想将前2 GB保留给RAM,因为我的硬件在这个位置写入内存RAM,并且我需要内核不要将这部分接触到内存。
我读到要使用此选项,需要在引导加载程序中启动命令memmap,而我要使用的引导加载程序是U-Boot,因为我要在Yocto OS中使用Driver-Kernel。
我阅读了此示例以使用memmap:
memmap=nn[KMG]$ss[KMG]
[KNL,ACPI] Mark specific memory as reserved.
Region of memory to be reserved is from ss to ss+nn.
Example: Exclude memory from 0x18690000-0x1869ffff
memmap=64K$0x18690000
or
memmap=0x10000$0x18690000
Some bootloaders may need an escape character before '$',
like Grub2, otherwise '$' and the following number
will be eaten.
我不知道在这种情况下使用,因为我知道这很容易在Grub2中使用,但是我不知道是否可以使用U-Boot,谢谢