diff options
author | Karsten Merker <merker@debian.org> | 2014-05-19 08:20:55 +0000 |
---|---|---|
committer | Karsten Merker <merker@debian.org> | 2014-05-19 08:20:55 +0000 |
commit | ae4106be164757b0e8f573feca2a94c84c668762 (patch) | |
tree | 74b9149702399ac0549dff9d74ea91427a754baf /en/boot-installer | |
parent | ef56415867f337ade04b53a05b19273ad9238f32 (diff) | |
download | installation-guide-ae4106be164757b0e8f573feca2a94c84c668762.zip |
installation-guide:
Add information about setting boot parameters in u-boot
Diffstat (limited to 'en/boot-installer')
-rw-r--r-- | en/boot-installer/arm.xml | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/en/boot-installer/arm.xml b/en/boot-installer/arm.xml index c3999173e..9d1993de4 100644 --- a/en/boot-installer/arm.xml +++ b/en/boot-installer/arm.xml @@ -97,9 +97,18 @@ tftpboot ${ramdisk_addr_r} <filename of the initial ramdisk image> </screen></informalexample> </para> <para> - The third part is actually executing the loaded code, for which the - exact command depends on the image format used. With uImage/uInitrd, - the command is + The third part is setting the kernel commandline and actually + executing the loaded code. U-boot passes the content of the + <quote>bootargs</quote> environment variable as commandline to the + kernel, so any parameters for the kernel and the installer - such as + the console device (see <xref linkend="boot-console"/>) or + preseeding options (see <xref linkend="installer-args"/> and <xref + linkend="appendix-preseed"/>) - can be set with a command like +<informalexample><screen> +setenv bootargs console=ttyS0,115200 rootwait panic=10 +</screen></informalexample> + The exact command to execute the previously loaded code depends on + the image format used. With uImage/uInitrd, the command is <informalexample><screen> bootm ${kernel_addr_r} ${ramdisk_addr_r} ${fdt_addr_r} </screen></informalexample> |