| bc5478b2 | 25-Feb-2013 |
Akshay Saraswat <akshay.s@samsung.com> |
TMU: Add TMU support in dtt command
Add generic TMU support alongwith i2c sensors in dtt command to enable temperature reading in cases where TMU is present along-with/instead-of i2c sensors.
Signe
TMU: Add TMU support in dtt command
Add generic TMU support alongwith i2c sensors in dtt command to enable temperature reading in cases where TMU is present along-with/instead-of i2c sensors.
Signed-off-by: Akshay Saraswat <akshay.s@samsung.com> Acked-by: Simon Glass <sjg@chromium.org> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
show more ...
|
| c8b5f556 | 04-Feb-2013 |
Robert P. J. Day <rpjday@crashcourse.ca> |
cmd_df.c: Delete this clearly unused source file.
Nothing appears to use or compile cmd_df.c anymore.
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca>
|
| a22bf16b | 04-Feb-2013 |
Robert P. J. Day <rpjday@crashcourse.ca> |
cmd_mtdparts.c: Correct "reseting" to "resetting" in error msgs
Signed-off-by: Robert P. J. Day <rpjday@crashcourse.ca> |
| be2e5a09 | 27-Feb-2013 |
Joe Hershberger <joe.hershberger@ni.com> |
Allow u-boot to be silent without forcing Linux to be
That's a bit presumptuous of you, u-boot!
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> |
| 92668d68 | 28-Feb-2013 |
Stephen Warren <swarren@nvidia.com> |
cmd_part: don't print cmd name twice in help
The core implementation of "help" already prints the command name before the help text of a specific command. Remove it from part's own help text to avoi
cmd_part: don't print cmd name twice in help
The core implementation of "help" already prints the command name before the help text of a specific command. Remove it from part's own help text to avoid it being printed twice:
Tegra114 (Dalmore) # help part part - disk partition related commands
Usage: part part uuid <interface> <dev>:<part> - print partition UUID ...
Signed-off-by: Stephen Warren <swarren@nvidia.com>
show more ...
|
| a2681707 | 08-Mar-2013 |
Wolfgang Denk <wd@denx.de> |
Feature Removal: disable "mtest" command by default
The "mtest" command is of little practical use (if any), and experience has shown that a large number of board configurations define useless or ev
Feature Removal: disable "mtest" command by default
The "mtest" command is of little practical use (if any), and experience has shown that a large number of board configurations define useless or even dangerous start and end addresses. If not even the board maintainers are able to figure out which memory range can be reliably tested, how can we expect such from the end users? As this problem comes up repeatedly, we rather do not enable this command by default, so only people who know what they are doing will be confronted with it.
As this changes the user interface, we allow for a grace period before this change takes effect. For now, we make "mtest" configurable through the CONFIG_CMD_MEMTEST variable, which is defined in include/config_cmd_default.h; we also add an entry to doc/feature-removal-schedule.txt which announces the removal of this default setting in two releases from now, i. e. with v2013.07.
Signed-off-by: Wolfgang Denk <wd@denx.de> Cc: Tom Rini <trini@ti.com>
show more ...
|
| 76b40ab4 | 11-Mar-2013 |
Tom Rini <trini@ti.com> |
Merge u-boot/master into u-boot-ti/master
In master we had already taken a patch to fix the davinci GPIO code for CONFIG_SOC_DM646X and in u-boot-ti we have additional patches to support DA830 (whic
Merge u-boot/master into u-boot-ti/master
In master we had already taken a patch to fix the davinci GPIO code for CONFIG_SOC_DM646X and in u-boot-ti we have additional patches to support DA830 (which is CONFIG_SOC_DA8XX && !CONFIG_SOC_DA850). Resolve these conflicts manually and comment the #else/#endif lines for clarity.
Conflicts: arch/arm/include/asm/arch-davinci/gpio.h drivers/gpio/da8xx_gpio.c
Signed-off-by: Tom Rini <trini@ti.com>
show more ...
|
| c0880485 | 24-Feb-2013 |
Nikita Kiryanov <nikita@compulab.co.il> |
lcd: implement a callback for splashimage
On some architectures certain values of splashimage will lead to a data abort exception.
Document the problem, and implement a callback for splashimage to
lcd: implement a callback for splashimage
On some architectures certain values of splashimage will lead to a data abort exception.
Document the problem, and implement a callback for splashimage to reject such values.
Cc: Anatolij Gustschin <agust@denx.de> Cc: Wolfgang Denk <wd@denx.de> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Acked-by: Igor Grinberg <grinberg@compulab.co.il>
show more ...
|
| 6000992e | 07-Feb-2013 |
Enric Balletbo i Serra <eballetbo@iseebcn.com> |
SPL: ONENAND: Support SPL to boot u-boot from OneNAND.
This patch will allow use SPL to boot an u-boot from the OneNAND.
Tested with IGEPv2 board with a OneNAND from Numonyx
Signed-off-by: Enric B
SPL: ONENAND: Support SPL to boot u-boot from OneNAND.
This patch will allow use SPL to boot an u-boot from the OneNAND.
Tested with IGEPv2 board with a OneNAND from Numonyx
Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com> [trini: Add <spl.h> hunk to fix warning] Signed-off-by: Tom Rini <trini@ti.com>
show more ...
|
| 581bb419 | 30-Jan-2013 |
Nikita Kiryanov <nikita@compulab.co.il> |
lcd: add option for board specific splash screen preparation
Currently there is no logical place to put the code that prepares the splash image data. The splash image data should be ready in memory
lcd: add option for board specific splash screen preparation
Currently there is no logical place to put the code that prepares the splash image data. The splash image data should be ready in memory before bmp_display() is called, and after the environment is ready (since lcd.c looks for the splash image in an address specified by the environment variable "splashimage").
Our window of opportunity in board_init_r() is therefore: between env_relocate() and bmp_display(), and from the available options only the lcd related functions in drv_lcd_init() seem appropriate for such lcd oriented code.
Add the option to prepare the splash image data in lcd_logo() right before it is sent to be displayed.
Cc: Anatolij Gustschin <agust@denx.de> Cc: Jeroen Hofstee <jeroen@myspectrum.nl> Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Signed-off-by: Igor Grinberg <grinberg@compulab.co.il>
show more ...
|
| d23d8d7e | 03-Dec-2012 |
Nikita Kiryanov <nikita@compulab.co.il> |
mmc: add support for write protection
Add generic mmc write protection functionality.
Signed-off-by: Nikita Kiryanov <nikita@compulab.co.il> Signed-off-by: Igor Grinberg <grinberg@compulab.co.il> |
| af73034c | 23-Feb-2013 |
Otavio Salvador <otavio@ossystems.com.br> |
led: Use STATUS_LED_ON and STATUS_LED_OFF when calling __led_set
This fixes the gpio_led driver which needs to compare againt a STATUS_LED_ON to enable a led.
Signed-off-by: Otavio Salvador <otavio
led: Use STATUS_LED_ON and STATUS_LED_OFF when calling __led_set
This fixes the gpio_led driver which needs to compare againt a STATUS_LED_ON to enable a led.
Signed-off-by: Otavio Salvador <otavio@ossystems.com.br>
show more ...
|
| 59af76d9 | 26-Feb-2013 |
Daniel Schwierzeck <daniel.schwierzeck@gmail.com> |
bootm: fix conditional compilation for bootm ramdisk subcommand
All code related to the bootm ramdisk subcommand is conditionally enabled by CONFIG_SYS_BOOT_RAMDISK_HIGH except for the help message.
bootm: fix conditional compilation for bootm ramdisk subcommand
All code related to the bootm ramdisk subcommand is conditionally enabled by CONFIG_SYS_BOOT_RAMDISK_HIGH except for the help message. Replace the CONFIG_ARCH defines by CONFIG_SYS_BOOT_RAMDISK_HIGH to fix this.
Signed-off-by: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
show more ...
|
| 18a3cce9 | 08-Feb-2013 |
Joe Hershberger <joe.hershberger@ni.com> |
env: Avoid clobbering an edited variable on ctrl-c
If readline says there was an error, don't write to the variable!
Signed-off-by: Joe Hershberger <joe.hershberger@ni.com> |
| d304931f | 26-Dec-2012 |
Simon Glass <sjg@chromium.org> |
sandbox: Add 'sb' command to access filesystem features
The new 'sb' command is intended to deal with sandbox-specific features that have no parallel in other archs. This commit adds two sub-command
sandbox: Add 'sb' command to access filesystem features
The new 'sb' command is intended to deal with sandbox-specific features that have no parallel in other archs. This commit adds two sub-commands to list a directory and read a file from the host filesystem.
Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Tom Rini <trini@ti.com>
show more ...
|
| 1c9f47ab | 04-Mar-2013 |
Tom Rini <trini@ti.com> |
Merge branch 'mem' of git://git.denx.de/u-boot-x86 |
| c259188b | 04-Mar-2013 |
Tom Rini <trini@ti.com> |
Merge branch 'master' of git://git.denx.de/u-boot-blackfin |
| a2979dcd | 16-Aug-2012 |
Sonic Zhang <sonic.zhang@analog.com> |
blackfin: bf60x: Port blackfin core architecture code to boot on bf60x.
Set up clocks, DDR controller, Nor flash controller, reboot, serial port. Add new SPI boot modes.
Signed-off-by: Bob Liu <lli
blackfin: bf60x: Port blackfin core architecture code to boot on bf60x.
Set up clocks, DDR controller, Nor flash controller, reboot, serial port. Add new SPI boot modes.
Signed-off-by: Bob Liu <lliubbo@gmail.com> Signed-off-by: Sonic Zhang <sonic.zhang@analog.com> Signed-off-by: Sonic Zhang <sonic.adi@gmail.com>
show more ...
|
| 28786eb9 | 23-Feb-2013 |
Stefano Babic <sbabic@denx.de> |
SPL: Change description for spl command
Add a more descriptive text to the help of the spl command.
Signed-off-by: Stefano Babic <sbabic@denx.de> Reviewed-by: Tom Rini <trini@ti.com> |
| 218da0f3 | 24-Feb-2013 |
Simon Glass <sjg@chromium.org> |
hash: Use lower case for hash algorithm names
Rather than use strcasecmp() in the hash algorithm search, require the caller to do this first. Most of U-Boot can use lower case anyway, and the hash c
hash: Use lower case for hash algorithm names
Rather than use strcasecmp() in the hash algorithm search, require the caller to do this first. Most of U-Boot can use lower case anyway, and the hash command can convert to lower case before calling hash_command(). This saves needing strcasecmp() for boards that use hashing but not the hash command.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| bd091b67 | 24-Feb-2013 |
Simon Glass <sjg@chromium.org> |
sandbox: Allow hash functions to work correctly
Use map_sysmem() so that hashing is possible on sandbox.
Signed-off-by: Simon Glass <sjg@chromium.org> |
| 5512d5b0 | 28-Feb-2013 |
Simon Glass <sjg@chromium.org> |
sandbox: Update mtest to fix crashes
Use map_sysmem() in the memory tester so that it works as expected on sandbox.
Signed-off-by: Simon Glass <sjg@chromium.org> |
| 8e169cc9 | 24-Feb-2013 |
Simon Glass <sjg@chromium.org> |
Move CONFIG_SYS_MEMTEST_SCRATCH #ifdef to top of file
This config effectively has a default value of 0, so add this setting at the top of the code to remove an #ifdef in the C function.
Signed-off-
Move CONFIG_SYS_MEMTEST_SCRATCH #ifdef to top of file
This config effectively has a default value of 0, so add this setting at the top of the code to remove an #ifdef in the C function.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| d20a40de | 24-Feb-2013 |
Simon Glass <sjg@chromium.org> |
Roll crc32 into hash infrastructure
Add the CRC32 algorithm to the list of available hashes, and make the crc32 command use hash_command(). Add a new crc32_wd_buf() to make this possible, which puts
Roll crc32 into hash infrastructure
Add the CRC32 algorithm to the list of available hashes, and make the crc32 command use hash_command(). Add a new crc32_wd_buf() to make this possible, which puts its result in a buffer rather than returning it as a 32-bit value.
Note: For some boards the hash command is not enabled, neither are sha1, sha256 or the verify option. In this case the full hash implementation adds about 500 bytes of overhead. So as a special case, we use #ifdef to select very simple bahaviour in that case. The justification for this is that it is currently a very common case (virtually all boards enable crc32 but only some enable more advanced features).
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| d5b76673 | 24-Feb-2013 |
Simon Glass <sjg@chromium.org> |
hash: Add a flag to support saving hashes in the environment
Some hashing commands permit saving the hash in an environment variable, and verifying a hash from there. But the crc32 command does not
hash: Add a flag to support saving hashes in the environment
Some hashing commands permit saving the hash in an environment variable, and verifying a hash from there. But the crc32 command does not support this. In order to permit crc32 to use the generic hashing infrastructure, add a flag to select which behaviour to use.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|