X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=doc%2FREADME.fdt-control;h=29fd56a815f8086d28e340f030b5a6e6b1755227;hb=3f53e619f0d72db7b5812313c8f290051c7bfbee;hp=d8fe4a826f20d41335067b6c3a251d1a12d4dfd8;hpb=e99f30e105a253ee64bef1ef83b86a47e0d3b6f1;p=platform%2Fkernel%2Fu-boot.git diff --git a/doc/README.fdt-control b/doc/README.fdt-control index d8fe4a8..29fd56a 100644 --- a/doc/README.fdt-control +++ b/doc/README.fdt-control @@ -156,7 +156,10 @@ address of the fdt binary blob, and will override either of the options. Be aware that this environment variable is checked prior to relocation, when only the compiled-in environment is available. Therefore it is not possible to define this variable in the saved SPI/NAND flash -environment, for example (it will be ignored). +environment, for example (it will be ignored). After relocation, this +variable will be set to the address of the newly relocated fdt blob. +It is read-only and cannot be changed. It can optionally be used to +control the boot process of Linux with bootm/bootz commands. To use this, put something like this in your board header file: @@ -171,6 +174,22 @@ After board configuration is done, fdt supported u-boot can be build in two ways $ make DEVICE_TREE= +Configuration Options +--------------------- + +A number of run-time configuration options are provided in the /config node +of the control device tree. You can access these using fdtdec_get_config_int(), +fdtdec_get_config_bool() and fdtdec_get_config_string(). + +Available options are: + +silent-console + If present and non-zero, the console is silenced by default on boot. + +no-keyboard + Tells U-Boot not to expect an attached keyboard with a VGA console + + Limitations -----------