- Mar 28, 2009
-
-
Wolfgang Denk authored
This warning got issued for all ARM systems that don't have CONFIG_CMD_NET enabled. Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
Wolfgang Denk authored
...and some other compile warnings. Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- Mar 27, 2009
-
-
Detlev Zundel authored
Other commands implementing subcommands can reuse this code nicely. Signed-off-by:
Detlev Zundel <dzu@denx.de> Signed-off-by:
Andreas Pfefferle <ap@denx.de>
-
Heiko Schocher authored
Current u-boot top of tree builds with warnings/errors for the following boards: ads5121 cpci5200 mecp5200 v38b IAD210 MBX MBX860T NX823 RPXClassic debris PN62 following patch solves this. Signed-off-by:
Heiko Schocher <hs@denx.de> Acked-by:
Mike Frysinger <vapier@gentoo.org>
-
- Mar 23, 2009
-
-
Wolfgang Grandegger authored
This patch adds support for NAND_MAX_CHIPS to the MTD NAND layer. Multi-chips devices are displayed as shown: Device 0: 2x NAND 512MiB 3,3V 8-bit, sector size 128 KiB Signed-off-by:
Wolfgang Grandegger <wg@grandegger.com> Signed-off-by:
Scott Wood <scottwood@freescale.com>
-
- Mar 20, 2009
-
-
Stefan Roese authored
This patchset adds these UBIFS related commands: - ubifsmount Mount an UBIFS volume - ubifsls List a directory of the mounted UBIFS volume - ubifsload Load a file from the mounted UBIFS volume to memory Signed-off-by:
Stefan Roese <sr@denx.de>
-
Stefan Roese authored
Currently the mtdparts commands are included in the jffs2 command support. This doesn't make sense anymore since other commands (e.g. UBI) use this infrastructure as well now. This patch separates the mtdparts commands from the jffs2 commands making it possible to only select mtdparts when no JFFS2 support is needed. Signed-off-by:
Stefan Roese <sr@denx.de> Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com>
-
Mike Frysinger authored
Since the ethernet layer handles updating of device addresses itself from the environment, there is no point in calling eth_set_enetaddr(). Signed-off-by:
Mike Frysinger <vapier@gentoo.org> CC: Ben Warren <biggerbadderben@gmail.com>
-
Mike Frysinger authored
Signed-off-by:
Mike Frysinger <vapier@gentoo.org> CC: Ben Warren <biggerbadderben@gmail.com>
-
Mike Frysinger authored
Signed-off-by:
Mike Frysinger <vapier@gentoo.org> CC: Niklaus Giger <niklaus.giger@member.fsf.org> CC: Ben Warren <biggerbadderben@gmail.com>
-
Mike Frysinger authored
Add a new print_eth() function to automate the eth*addr env var acquisition and display. Affects all arches. Signed-off-by:
Mike Frysinger <vapier@gentoo.org> CC: Nobuhiro Iwamatsu <iwamatsu@nigauri.org> CC: Scott McNutt <smcnutt@psyent.com> CC: Shinya Kuribayashi <skuribay@ruby.dti.ne.jp> CC: Michal Simek <monstr@seznam.cz> CC: Daniel Hellstrom <daniel@gaisler.com> CC: Ben Warren <biggerbadderben@gmail.com>
-
Mike Frysinger authored
Now that our printf functions support the %pI4 modifier like the kernel, let's drop the inflexible print_IPaddr() function and covert over to the %pI4 modifier. Signed-off-by:
Mike Frysinger <vapier@gentoo.org> CC: Ben Warren <biggerbadderben@gmail.com>
-
Mike Frysinger authored
This brings in support for the %p modifier which allows us to easily print out things like ip addresses, mac addresses, and pointers. It also converts the rarely used 'q' length modifier to the common 'L' modifier when dealing with quad types. While this new code is a bit larger (~1k .text), most of it should be made up by converting the existing ip/mac address code to use format modifiers. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- Mar 17, 2009
-
-
Scott Wood authored
This was intended to happen before, but a trivial bug prevented it. Signed-off-by:
Scott Wood <scottwood@freescale.com>
-
Ladislav Michl authored
nboot command currently does not skip bad blocks and gives read error when loading image stored over bad block. With patch applied, nboot works as expected: Device 0 bad blocks: 00780000 014a0000 02000000 02cc0000 04aa0000 Loading from NAND 128MiB 3,3V 8-bit, offset 0x2c00000 Image Name: Linux-2.6.22-omap1 Created: 2008-11-20 23:44:32 UTC Image Type: ARM Linux Kernel Image (uncompressed) Data Size: 1052520 Bytes = 1 MB Load Address: 10008000 Entry Point: 10008000 Skipping bad block 0x02cc0000 Automatic boot of image at addr 0x10400000 ... ... Signed-off-by:
Ladislav Michl <ladis@linux-mips.org> Signed-off-by:
Scott Wood <scottwood@freescale.com>
-
- Feb 25, 2009
-
-
Anatolij Gustschin authored
Fix following warning while compilation for mcc200 board: lcd.c: In function 'lcd_display_bitmap': lcd.c:625: warning: unused variable 'cmap' Signed-off-by:
Anatolij Gustschin <agust@denx.de>
-
- Feb 24, 2009
-
-
Guennadi Liakhovetski authored
This patch also simplifies some ifdefs in lcd.c, introduces a generic vidinfo_t, which new drivers are encouraged to use and old drivers to switch over to. Signed-off-by:
Guennadi Liakhovetski <lg@denx.de> Acked-by:
Anatolij Gustschin <agust@denx.de>
-
Mark Jackson authored
This patch adds 16bpp BMP support to the common lcd code. Use CONFIG_BMP_16BPP and set LCD_BPP to LCD_COLOR16 to enable the code. At the moment it's only been tested on the MIMC200 AVR32 board, but extending this to other platforms should be a simple task !! Signed-off-by:
Mark Jackson <mpfj@mimc.co.uk> Signed-off-by:
Guennadi Liakhovetski <lg@denx.de> Acked-by:
Anatolij Gustschin <agust@denx.de>
-
- Feb 23, 2009
-
-
Heiko Schocher authored
NetLoop polls every cycle with getenv some environment variables. This is horribly slow, especially when the environment is big. This patch reads only the environment variables in NetLoop, when they were changed. Also moved the init part of the NetLoop function in a seperate function. Signed-off-by:
Heiko Schocher <hs@denx.de> Signed-off-by:
Ben Warren <biggerbadderben@gmail.com>
-
- Feb 22, 2009
-
-
Jean-Christophe PLAGNIOL-VILLARD authored
Serial driver via the EmbeddedICE macrocell's DCC channel using co-processor 14. It does include a timeout to ensure that the system does not totally freeze when there is nothing connected to read. Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
- Feb 21, 2009
-
-
Minkyu Kang authored
Although load address and image start address are same address, bootm command always does memmove. That is unnecessary memmove and can be taken few milliseconds (about 500 msec to 1000 msec). If skip this memmove, we can reduce the boot time. Signed-off-by:
Minkyu Kang <mk7.kang@samsung.com>
-
Derek Ou authored
Signed-off-by:
Derek Ou <dou@siconix.com>
-
- Feb 19, 2009
-
-
Dirk Behme authored
Don't use code of new MMC framework in cmd_mmc if CONFIG_GENERIC_MMC isn't enabled. Signed-off-by:
Dirk Behme <dirk.behme@googlemail.com>
-
- Feb 18, 2009
-
-
Wolfgang Denk authored
Signed-off-by:
Wolfgang Denk <wd@denx.de>
-
- Feb 17, 2009
-
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Jean-Christophe PLAGNIOL-VILLARD authored
Signed-off-by:
Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
-
Mike Frysinger authored
The CONFIG_CMD_ENV option controls enablement of the `saveenv` command rather than a generic "env" command, or anything else related to the environment. So, let's make sure the define is named accordingly. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
Andy Fleming authored
Here's a new framework (based roughly off the linux one) for managing MMC controllers. It handles all of the standard SD/MMC transactions, leaving the host drivers to implement only what is necessary to deal with their specific hardware. This also hooks the infrastructure into the PowerPC board code (similar to how the ethernet infrastructure now hooks in) Some of this code was contributed by Dave Liu <daveliu@freescale.com> Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Andy Fleming authored
This is to get it out of the way of incoming MMC framework Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
Andy Fleming authored
MMC cards are not memory, so we stop treating them that way. Signed-off-by:
Andy Fleming <afleming@freescale.com>
-
- Feb 15, 2009
-
-
Abraham, Thomas authored
The LUN number is not part of the Command Descriptor Block (CDB) for scsi inquiry, request sense, test unit ready, read capacity and read10 commands. This patch removes the LUN number information from the CDB. Signed-off-by:
Thomas Abraham <t-abraham@ti.com> Signed-off-by:
Remy Bohmer <linux@bohmer.net>
-
- Feb 11, 2009
-
-
Mike Frysinger authored
Move global '#ifdef CONFIG_xxx .... #endif' out of the .c files and into the COBJS-$(CONFIG_xxx) in the Makefile. Also delete unused var in kgdb code in the process. Signed-off-by:
Mike Frysinger <vapier@gentoo.org>
-
- Feb 07, 2009
-
-
Kumar Gala authored
The PCI_REGION_MEMORY and PCI_REGION_MEM are a bit to similar and can be confusing when reading the code. Rename PCI_REGION_MEMORY to PCI_REGION_SYS_MEMORY to clarify its used for system memory mapping purposes. Signed-off-by:
Kumar Gala <galak@kernel.crashing.org>
-
- Feb 06, 2009
-
-
derek@siconix.com authored
This fixes a bug that tmp environment memory not being released. Signed-off-by:
Derek Ou <dou@siconix.com> Signed-off-by:
Scott Wood <scottwood@freescale.com>
-
Richard Retanubun authored
CONFIG_M68K bdinfo cleanup: Fixed compiler warning about baudrate printing. format '%d' expects type 'int', but argument 2 has type 'long unsigned int'. Added printing of "cpufreq" Signed-off-by:
Richard Retanubun <RichardRetanubun@RuggedCom.com>
-
- Feb 03, 2009
-
-
Ralph Kondziella authored
Original patch from Ralph Kondziella plus clean up by Wolfgang Denk plus changes by John Rigby use ips clock not lpc port forward to current u-boot release Signed-off-by:
Ralph Kondziella <rk@argos-messtechnik.de> Signed-off-by:
Wolfgang Denk <wd@denx.de> Signed-off-by:
John Rigby <jrigby@freescale.com>
-
- Jan 28, 2009
-
-
Bryan Wu authored
We should check the return of usb_new_device() so that if no USB device is found, we print out the right message rather than always saying "new usb device found". Signed-off-by:
Bryan Wu <bryan.wu@analog.com> Signed-off-by:
Mike Frysinger <vapier@gentoo.org> Signed-off-by:
Remy Bohmer <linux@bohmer.net>
-
Stefan Roese authored
With this patch the USB related connection speed output ("usb tree" command and debug output) is now high-speed enabled. This patch also fixes a compilation warning when debugging is enabled. Signed-off-by:
Stefan Roese <sr@denx.de> Signed-off-by:
Remy Bohmer <linux@bohmer.net>
-
Mike Frysinger authored
Rather than forcing people to define a custom "LITTLEENDIAN", just use the __LITTLE_ENDIAN one from the Linux byteorder headers that every arch is already setting up. Signed-off-by:
Mike Frysinger <vapier@gentoo.org> Signed-off-by:
Remy Bohmer <linux@bohmer.net>
-
Bryan Wu authored
The SanDisk Corporation U3 Cruzer Micro 1/4GB Flash Drive 000016244373FFB4 does not like to be reset, so check for it. Signed-off-by:
Bryan Wu <bryan.wu@analog.com> Signed-off-by:
Mike Frysinger <vapier@gentoo.org> Signed-off-by:
Remy Bohmer <linux@bohmer.net>
-