26 Sep, 2012
1 commit
22 Sep, 2012
2 commits
-
Signed-off-by: Tom Rini
21 Sep, 2012
1 commit
-
Update Makefile change for LIBS -> LIBS-y change.
Conflicts:
MakefileSigned-off-by: Tom Rini
19 Sep, 2012
1 commit
-
After removing the Apollon board, remove the OneNAND IPL too.
There are no users for it any more.Signed-off-by: Marek Vasut
Cc: Albert Aribaud
Cc: Minkyu Kang
Cc: Tom Rini
Acked-by: Minkyu Kang
10 Sep, 2012
1 commit
-
Up now only MX5 and MX6 can share code, because they have
a common source directory in cpu/armv7. Other not armv7
i.MX can profit of the same shared code. Move these files
into a directory accessible for all, similar to plat-mxc
in linux.Signed-off-by: Stefano Babic
04 Sep, 2012
1 commit
-
Delete the "mxsboot" binary if make mrproper is called.
Signed-off-by: Marek Vasut
Cc: Wolfgang Denk
Cc: Stefano Babic
Cc: Fabio Estevam
CC: Albert Aribaud
Acked-by: Stefano Babic
02 Sep, 2012
2 commits
-
The call to SYSTEM_MAP assumes that the u-boot output is in $PWD when
it really should be in $(obj). This fixes building out of tree.Signed-off-by: Mike Frysinger
-
* 'master' of git://git.denx.de/u-boot-usb:
MUSB driver: Timeout is never detected as the while loop does not end
usb: fix ulpi_set_vbus prototype
pxa25x: Add UDC registers definitions
USB: Fix strict aliasing in ohci-hcd
usb: Optimize USB storage read/write
ehci: Optimize qTD allocations
usb_stor_BBB_transport: Do not delay when not required
usb_storage: Remove EHCI constraints
usb_storage: Restore non-EHCI support
ehci-hcd: Boost transfer speed
ehci: cosmetic: Define used constants
ehci: Fail for multi-transaction interrupt transfers
arm:trats: Enable g_dnl composite USB gadget with embedded DFU function on TRATS
arm:trats: Support for USB UDC driver at TRATS board.
dfu:cmd: Support for DFU u-boot command
dfu: MMC specific routines for DFU operation
dfu: DFU backend implementation
dfu:usb: DFU USB function (f_dfu) support for g_dnl composite gadget
dfu:usb: Support for g_dnl composite download gadget.
ehci: cosmetic: Define the number of qt_buffersSigned-off-by: Wolfgang Denk
01 Sep, 2012
8 commits
-
New, separate driver at ./drivers/dfu has been added. It allows platform
and storage independent operation of DFU.
It has been extended to use new MMC level of command abstraction.Signed-off-by: Lukasz Majewski
Signed-off-by: Kyungmin Park
Cc: Marek Vasut -
The elftosb call needs to use a target param specific for i.MX28. This
patch allow for later addition of i.MX233.Signed-off-by: Otavio Salvador
Acked-by: Marek Vasut -
Add SPL options to tegra20 config files and enable SPL build for
tegra20 boards. Also remove redundant code from u-boot that is not
contained in SPL.Signed-off-by: Allen Martin
Acked-by: Stephen Warren
Tested-by: Thierry Reding
Signed-off-by: Tom Warren -
Add target for tegra20 u-boot image. This is a concatenation of tegra
spl and normal u-boot binaries. For non-devicetree builds this is
named "u-boot-nodtb-tegra.bin" for devicetree builds is named
"u-boot-dtb-tegra.bin".Signed-off-by: Allen Martin
Acked-by: Stephen Warren
Tested-by: Thierry Reding
Signed-off-by: Tom Warren -
In preparation for splitting out the armv4t code from tegra20, move
the tegra20 SoC code to arch/arm/cpu/tegra20-common. This code will
be compiled armv4t for the arm7tdmi and armv7 for the cortex A9.Signed-off-by: Allen Martin
Acked-by: Stephen Warren
Tested-by: Thierry Reding
Signed-off-by: Tom Warren -
This gets us rid of duplication of the same file.
Signed-off-by: Marek Vasut
Cc: Stefano Babic
Acked-by: Stefano Babic -
Parameters used for configuring certain SoC peripherals are parsed
from the cfg file and appended as part of the ais image's header. The
u-boot-spl.ais generated is flashed separately to the nand, so do not
delete the file after generation of u-boot.ais.Signed-off-by: Sughosh Ganu
-
This patch moves all bootcount implementations into a common
directory: drivers/bootcount. The generic bootcount driver
is now usable not only by powerpc platforms, but others as well.Signed-off-by: Stefan Roese
Cc: Heiko Schocher
Cc: Valentin Longchamp
Cc: Christian Riesch
Cc: Manfred Rudigier
Cc: Mike Frysinger
Cc: Rob Herring
Cc: Reinhard Meyer
Tested-by: Valentin Longchamp
Tested-by: Christian Riesch
Acked-by: Rob Herring
Acked-by: Mike Frysinger
23 Aug, 2012
1 commit
-
Provides a tool to build boot Image for PBL(Pre boot loader) which is
used on Freescale CoreNet SoCs, PBL can be used to load some instructions
and/or data for pre-initialization. The default output image is u-boot.pbl,
for more details please refer to doc/README.pblimage.Signed-off-by: Shaohui Xie
Signed-off-by: Andy Fleming
18 Aug, 2012
1 commit
-
Commit 8b5a02640adf77301f943e8754992c50df004e8a ("Makefile: cosmetic:
optimize usage of LIBS-y") broke the build of boards that have a board
vendor "common" directory, by introducing a space between "LIBS-" and
"y".Signed-off-by: Scott Wood
Signed-off-by: Daniel Schwierzeck
Acked-by: Kim Phillips
11 Aug, 2012
3 commits
-
Signed-off-by: Daniel Schwierzeck
-
Synchronize with ALL-y handling and code in spl/Makefile.
Signed-off-by: Daniel Schwierzeck
Acked-by: Mike Frysinger -
The top Makefile and the SPL Makefile have lines like those:
ifneq ($(CONFIG_AM33XX)$(CONFIG_OMAP34XX)$(CONFIG_OMAP44XX)$(CONFIG_OMAP54XX),)
LIBS += $(CPUDIR)/omap-common/libomap-common.o
endififeq ($(SOC),mx5)
LIBS += $(CPUDIR)/imx-common/libimx-common.o
endifThis should be done in the arch/CPU/SoC specific sub-makefiles to
keep the top Makefiles clean. This patch also allows adding of new
arch/CPU/SoC specific libraries in the future without touching
the top Makefiles.Signed-off-by: Daniel Schwierzeck
Acked-by: Mike Frysinger
10 Aug, 2012
3 commits
-
Signed-off-by: Uma Shankar
Signed-off-by: Manjunatha C Achar
Signed-off-by: Iqbal Shareef
Signed-off-by: Hakgoo Lee -
U-Boot port is based on sources forked from GRUB-0.97 by Sun in 2004,
which can be found here:
http://src.opensolaris.org/source/xref/onnv/onnv-gate/usr/src/grub/grub-0.97/stage2/zfs-include/zfs.hReleased by Sun for GRUB under the license:
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.GRUB official releases include ZFS in version:
ftp://alpha.gnu.org/gnu/grub/grub-1.99~rc1.tar.gzAnd patched against GRUB Bazaar repository for ashift fixes (4KB HDDs)
more conveniently found at github:
https://github.com/pendor/grub-zfs/commit/e7b6ef3ac3b9685ac4c394c897b1d4221b7381f1Signed-off-by: Jorgen Lundman
-
Since run_command() and run_command_list() are important and a little
confusing, add some basic tests to check that the behaviour is correct.Note: I am not sure that this should be committed, nor where it should go
in the source tree. Comments welcome.To run the unit tests use the ut_cmd command available in sandbox:
make sandbox_config
make
./u-boot -c ut_cmd(To test both hush and built-in parsers, you need to manually change
CONFIG_SYS_HUSH_PARSER in include/configs/sandbox.h and build/run again)Signed-off-by: Simon Glass
31 Jul, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
30 Jul, 2012
1 commit
-
* 'master' of git://git.denx.de/u-boot-mips:
MIPS: fix renaming of inca-swap-bytes to xway-swap-bytesSigned-off-by: Wolfgang Denk
29 Jul, 2012
1 commit
-
make would spit out a message like
Generating /tmp/build/include/generated/asm-offsets.h
even when running with option "-s". Fix this.
Signed-off-by: Wolfgang Denk
28 Jul, 2012
1 commit
-
Fix some remains of the renaming of inca-swap-bytes introduced in
commit 60b74bde9280e85f4423c05a50ecc41de56ad980
MIPS: INCA-IP: rename inca-swap-bytes host tool
Signed-off-by: Daniel Schwierzeck
27 Jul, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
23 Jul, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
10 Jul, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
07 Jul, 2012
1 commit
-
On x600 (SPEAr600) U-Boot is appended to U-Boot SPL. Both images are
created using mkimage (crc etc), so that the ROM bootloader can check
its integrity. Padding needs to be done to the SPL image (with
mkimage header) and not the binary. Otherwise the resulting image
which is loaded/copied by the ROM bootloader to SRAM doesn't fit.
The resulting image containing both U-Boot images is called u-boot.spr.Signed-off-by: Stefan Roese
Cc: Amit Virdi
Cc: Vipin Kumar
25 May, 2012
1 commit
-
This directory includes tizen logo data, common tizen library and so on.
Signed-off-by: Donghwa Lee
Signed-off-by: Kyungmin Park
Acked-by: Minkyu Kang[ agust: change to conditionally build lib/tizen directory ]
Signed-off-by: Anatolij Gustschin
15 May, 2012
1 commit
-
This rule confirms that if we're on ARM and we have enabled THUMB builds
that we have a new enough toolchain to produce a working binary.Changes in v2:
- Switch to ALL-$(CONFIG_SYS_THUMB_BUILD) in arch/arm/config.mk (Mike F)
- Simplfy checkthumb test after doing the aboveSigned-off-by: Tom Rini
Acked-by: Mike Frysinger
25 Apr, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
22 Apr, 2012
1 commit
-
Also tiny style cleanup to tools/patman/README
Signed-off-by: Wolfgang Denk
19 Apr, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
17 Apr, 2012
1 commit
-
Signed-off-by: Wolfgang Denk
31 Mar, 2012
1 commit
-
Signed-off-by: Wolfgang Denk