Difference between revisions of "Using Initial RAM disk"

From ArmadeusWiki
Jump to: navigation, search
(Boot inird from U-Boot)
(Boot inird from U-Boot)
Line 55: Line 55:
 
<pre class="apf">
 
<pre class="apf">
 
BIOS> tftpboot ${loadaddr} ${board_name}-linux.bin
 
BIOS> tftpboot ${loadaddr} ${board_name}-linux.bin
BIOS> setenv bootargs console=ttySMX0,115200 root=/dev/ram rw   (adapt console to your board)
+
BIOS> setenv bootargs console=${consoledev},${baudrate} root=/dev/ram rw
 
BIOS> bootm
 
BIOS> bootm
 
</pre>
 
</pre>
  
May be a bit long but it boots ;-)
+
* If you have a kernel with device tree support (like on [[APF6]]), you have to load it before and boot it a different way:
 +
<pre class="apf">
 +
  replace previous "bootm" with:
 +
BIOS> run download_dtb
 +
BIOS> bootz ${loadaddr} - ${fdt_addr};
 +
</pre>
 +
 
 +
May be a bit long, but it boots ;-)
  
 
==Going further==
 
==Going further==

Revision as of 16:48, 26 July 2015

Initial RAM disk are filesystem images stored in RAM memory that can be used by Linux at a first step/rootfs during the boot process. They may be usefull if the final root filesystem is not ready after Linux boot and needs some manipulation before mounting it.

For examples most USB keys takes too much time to be detected and in that case Linux is not able to use them as rootfs immediatly after boot. Other example is when you don't know the filesystem type of your rootfs and don't want to put all possibilities statically in kernel.

Initial RAM disk are also named initrd.

Build the initrd

  • Old way for old Buildroot is kept here.
  • With recent armadeus BSPs (== with recent Buildroot), you can configure the initrd building this way:
$ make menuconfig
Filesystem images  --->
    ...
    -*- cpio the root filesystem (for use as an initial RAM filesystem)
    ...
    [*] initial RAM filesystem linked into linux kernel
$ make
  • The Linux+initrd merged image will be stored in buildroot/output/images/apfxx-linux.bin

Configure Linux

  • Should be done by default. If not:
 $ make linux-menuconfig

Set following options as static/builtin:

General Setup -->
    Initial RAM filesystem and RAM disk support
  • If you want to use ramdisk outside of the context of initrd then configure also:
Devices Drivers -->
    Block devices -->
        <*> RAM block device support
        (16)   Default number of RAM disks
        (4096) Default RAM disk size (kbytes)
  • increase RAM disk size if needed.
  • rebuild the kernel image if config was changed:
$ make linux

Boot inird from U-Boot

BIOS> tftpboot ${loadaddr} ${board_name}-linux.bin
BIOS> setenv bootargs console=${consoledev},${baudrate} root=/dev/ram rw
BIOS> bootm
  • If you have a kernel with device tree support (like on APF6), you have to load it before and boot it a different way:
   replace previous "bootm" with:
BIOS> run download_dtb
BIOS> bootz ${loadaddr} - ${fdt_addr};

May be a bit long, but it boots ;-)

Going further

Loading kernel and ramdisk from FLASH

  1. Avoir kernel et rootfs dans la flash ==> nand write depuis u-boot ou linux
  2. Charger kernel + rootfs de la flash vers memory via nboot
BIOS> bootm 0xA0000000 0xA2000000

Thanks to Raphael A. for the informations.

Links