| e73496d0 | 24-Jul-2017 |
Simon Glass <sjg@chromium.org> |
env: Move help from README to Kconfig
The CONFIG_ENV_IS_IN_... options which have already been converted to Kconfig only have a small amount of help. Move the rest of it over from the README.
Signe
env: Move help from README to Kconfig
The CONFIG_ENV_IS_IN_... options which have already been converted to Kconfig only have a small amount of help. Move the rest of it over from the README.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| 9d364af2 | 25-Jan-2017 |
Fiach Antaw <fiach.antaw@uqconnect.edu.au> |
env: Switch env_nand, env_mmc and env_ubi to env_import_redund
The env_nand, env_mmc and env_ubi implementations all implement redundancy using an identical serial-number scheme. This commit migrate
env: Switch env_nand, env_mmc and env_ubi to env_import_redund
The env_nand, env_mmc and env_ubi implementations all implement redundancy using an identical serial-number scheme. This commit migrates them to use the implementation in env_common, which is functionally identical.
Signed-off-by: Fiach Antaw <fiach.antaw@uqconnect.edu.au> Reviewed-by: Tom Rini <trini@konsulko.com>
show more ...
|
| 76768f5f | 25-Jan-2017 |
Fiach Antaw <fiach.antaw@uqconnect.edu.au> |
env: Add generic redundant environment implementation
All current environments that implement redundancy use almost identical implementations. This patch implements the env_nand implementation as a
env: Add generic redundant environment implementation
All current environments that implement redundancy use almost identical implementations. This patch implements the env_nand implementation as a function in env_common, and updates the env_export function to export an env_nand-style 'flags' field by default.
Signed-off-by: Fiach Antaw <fiach.antaw@uqconnect.edu.au> Reviewed-by: Tom Rini <trini@konsulko.com>
show more ...
|
| edba8cc4 | 27-Jun-2017 |
Grygorii Strashko <grygorii.strashko@ti.com> |
common: use get_nand_dev_by_index()
As part of preparation for nand DM conversion the new API has been introduced to remove direct access to nand_info array. So, use it here instead of accessing to
common: use get_nand_dev_by_index()
As part of preparation for nand DM conversion the new API has been introduced to remove direct access to nand_info array. So, use it here instead of accessing to nand_info array directly.
Signed-off-by: Grygorii Strashko <grygorii.strashko@ti.com>
show more ...
|
| d8c6fb8c | 16-Jun-2017 |
Simon Glass <sjg@chromium.org> |
sandbox: Drop special case console code for sandbox
At present sandbox has a special case where it directly calls os_putc() when it does not have a console yet.
Now that we have the pre-console buf
sandbox: Drop special case console code for sandbox
At present sandbox has a special case where it directly calls os_putc() when it does not have a console yet.
Now that we have the pre-console buffer enabled we can drop this. Any early characters will be buffered and output later.
Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| d63b5b4f | 16-Jun-2017 |
Simon Glass <sjg@chromium.org> |
sandbox: Enable more console options
Enable the pre-console buffer, displaying the model and post-relocation console announce on sandbox. Also add a model name to the device tree. This allows testin
sandbox: Enable more console options
Enable the pre-console buffer, displaying the model and post-relocation console announce on sandbox. Also add a model name to the device tree. This allows testing of these features.
Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| 4e6bafa5 | 16-Jun-2017 |
Simon Glass <sjg@chromium.org> |
console: Use map_sysmem() for the pre-relocation console
At present this feature casts the address to a pointer. Use the map_sysmem() function so that it will work correctly on sandbox.
Signed-off-
console: Use map_sysmem() for the pre-relocation console
At present this feature casts the address to a pointer. Use the map_sysmem() function so that it will work correctly on sandbox.
Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| a6fb185c | 15-Jun-2017 |
Simon Glass <sjg@chromium.org> |
scsi: Drop scsi_print_error()
This function is only defined by one driver and is empty. Move it into the SCSI implementation itself. We could remove it, but it should be useful for debugging.
Signe
scsi: Drop scsi_print_error()
This function is only defined by one driver and is empty. Move it into the SCSI implementation itself. We could remove it, but it should be useful for debugging.
Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
show more ...
|
| 92926bc8 | 16-Jun-2017 |
Cooper Jr., Franklin <fcooper@ti.com> |
boot_fit: Create helper functions that can be used to select DTB out of FIT
Some platforms may append a FIT image to the U-boot image. This function aids in parsing the FIT image and selecting the c
boot_fit: Create helper functions that can be used to select DTB out of FIT
Some platforms may append a FIT image to the U-boot image. This function aids in parsing the FIT image and selecting the correct DTB at runtime.
Signed-off-by: Franklin S Cooper Jr <fcooper@ti.com> Reviewed-by: Tom Rini <trini@konsulko.com>
show more ...
|