- Jan 19, 2015
-
-
Fabio Estevam authored
Since commit 1f98e31b ("imx: mx6sxsabresd: Use the pfuze common init function") board_late_init() became empty, so we can safely remove this unneeded function. Signed-off-by:
Fabio Estevam <fabio.estevam@freescale.com>
-
Otavio Salvador authored
The Fusion LCD needs the 32bit color depth to properly work; the default is different on the 3.10.17 kernels and it is better to ensure it work out of box using proper default color setting. Signed-off-by:
Otavio Salvador <otavio@ossystems.com.br>
-
- Jan 16, 2015
-
-
git://git.denx.de/u-boot-tiTom Rini authored
-
Masahiro Yamada authored
All the 74xx_7xx boards are still non-generic boards: P3G4, ZUMA, ppmc7xx, ELPPC, mpc7448hpc2 Acked-by:
Marek Vasut <marex@denx.de> Acked-by:
Stefan Roese <sr@denx.de> Acked-by:
York Sun <yorksun@freescale.com> Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Wolfgang Denk <wd@denx.de> Cc: Nye Liu <nyet@zumanetworks.com> Cc: Roy Zang <tie-fei.zang@freescale.com>
-
Masahiro Yamada authored
Now TQM8xx is the only remaining board family of mpc8xx. It uses its own linker script, board/tqc/tqm8xx/u-boot.lds. arch/powerpc/cpu/mpc8xx/u-boot.lds is not used by any boards. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Wolfgang Denk <wd@denx.de>
-
Masahiro Yamada authored
Since commit 843125da (ppc4xx: remove HH405 board), CONFIG_HH405 is not defined. Since commit d5263304 (ppc4xx: remove PMC405), CONFIG_PMC405 is not defined. Acked-by:
Stefan Roese <sr@denx.de> Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Matthias Fuchs <matthias.fuchs@esd.eu>
-
- Jan 15, 2015
-
-
git://git.denx.de/u-boot-x86Tom Rini authored
-
Simon Glass authored
Normally buildman runs with 'make -s' meaning that only errors and warnings appear in the log file. Add a -V option to run make in verbose mode, and with V=1, causing a full build log to be created. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
The site at https://www.kernel.org/pub/tools/crosstool/ is a convenient repository of toolchains which can be used for U-Boot. Add a feature to download and install a toolchain for a selected architecture automatically. It isn't clear how long this site will stay in the current place and format, but we should be able to rely on bug reports if it changes. Suggested-by:
Marek Vašut <marex@denx.de> Suggested-by:
Fabio Estevam <festevam@gmail.com> Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Some archs have need than one alias, so support a list of alises in the ..buildman file. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
We should create a test setting file when running testes, not use whatever happens to be on the local machine. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Silently ignore this since it is valid to have missing sections. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This file is only partially documented. Add some more details. Signed-off-by:
Simon Glass <sjg@chromium.org> Suggested-by:
Wolfgang Denk <wd@denx.de>
-
Simon Glass authored
Since we need a few modules which might not be available in a bare-bones distribution, add a note about that to the README. Signed-off-by:
Simon Glass <sjg@chromium.org> Suggested-by:
Wolfgang Denk <wd@denx.de>
-
Simon Glass authored
In some cases there may be multiple toolchains with the same name in the path. Provide an option to use the full path in the CROSS_COMPILE environment variable. Note: Wolfgang mentioned that this is dangerous since in some cases there may be other tools on the path that are needed. So this is set up as an option, not the default. I will need test confirmation (i.e. that this commit fixes a real problem) before merging it. Signed-off-by:
Simon Glass <sjg@chromium.org> Suggested-by:
Steve Rae <srae@broadcom.com>
-
Simon Glass authored
If: 1. Toolchains A and B have the same filename 2. Toolchain A is in the PATH 3. Toolchain B is given in ~/.buildman and buildman uses it to build then buildman will add toolchain B to the end of its path but will not necessarily use it since U-Boot will find toolchain A first in the PATH. Try to fix this by putting the toolchain first in the path instead of last. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
The assumption that the compiler name will always end in gcc is incorrect for clang and apparently on BSD. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Adjust the -b flag to permit a range expression as well as a branch. Signed-off-by:
Simon Glass <sjg@chromium.org> Suggested-by:
Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Tested-by:
Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
-
Simon Glass authored
When running tests the output directory is often wiped. This is only safe if a branch is being built. The output directory may contain other things besides the buildman test output. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
When building current source for a single board, buildman puts the output in <output_dir>/current/current/<board>. Add an option to make it use <output_dir>/<board> instead. This removes the unnecessary directories in that case, controlled by the --no-subdirs/-N option. Suggested-by:
Tom Rini <trini@ti.com> Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Buildman normally obtains the upstream commit by asking git. Provided that the branch was created with 'git checkout -b <branch> <some_upstream>' then this normally works. When there is no upstream, we can try to guess one, by looking up through the commits until we find a branch. Add a function to try this and print a warning if buildman ends up relying on it. Also update the documentation to match. Signed-off-by:
Simon Glass <sjg@chromium.org> Suggested-by:
Wolfgang Denk <wd@denx.de>
-
Simon Glass authored
This is not needed since we always do a full (non-incremental) build. Also it might be dangerous since it will try to delete everything below the base directory. Fix this potentially nasty bug. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Buildman currently puts current-source builds in a current/current subdirectory, but there is no need for the extra depth. Suggested-by:
Albert Aribaud <albert.u.boot@aribaud.net> Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Add a few tests of the output directory logic. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
- Jan 14, 2015
-
-
git://git.denx.de/u-boot-videoTom Rini authored
-
Michal Simek authored
Use phys_addr_t instead of int for addresses. Addresses can't be < 0. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Michal Simek authored
Trivial fix. Signed-off-by:
Michal Simek <michal.simek@xilinx.com>
-
Alexey Brodkin authored
It makes sense to specify CONFIG_SYS_CLK_FREQ in "configs/xx_defconfig" instead of "include/configs/xxx.h" because then header will be reusable across boards with different CPU clocks. Also this nice to have an ability for end user to tune this value himself via "menuconfig". For now I'm only applying this change to all ARC configs because otherwise scope of change will be huge. Signed-off-by:
Alexey Brodkin <abrodkin@synopsys.com> Cc: Tom Rini <trini@ti.com> Cc: Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Hans de Goede <hdegoede@redhat.com> cc: Simon Glass <sjg@chromium.org> Reviewed-by:
Tom Rini <trini@ti.com>
-
Masahiro Yamada authored
If CONFIG_SPL_NOR_SUPPORT is defined, spl_nor_load_image() requires spl_start_uboot(), CONFIG_SYS_OS_BASE, CONFIG_SYS_SPL_ARGS_ADDR, CONFIG_SYS_FDT_BASE to be defined even if users just want to run U-Boot, not Linux. This is inconvenient. This patch is following the codying style of common/spl/spl_nand.c. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Marek Vasut authored
Allow booting the OpenRTOS payloads via fitImage image type. Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@ti.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Marek Vasut authored
Add separate image type for the Wittenstein OpenRTOS . Signed-off-by:
Marek Vasut <marex@denx.de> Cc: Simon Glass <sjg@chromium.org> Cc: Tom Rini <trini@ti.com> Reviewed-by:
Simon Glass <sjg@chromium.org>
-
Evgeni Dobrev authored
Add support for Seagate BlackArmor NAS220 Signed-off-by:
Evgeni Dobrev <evgeni@studio-punkt.com>
-
Bill Pringlemeir authored
Some MTD defines are repeated twice; once with UBI and then with MTD. Remove the duplicate MTD defines from the UBI grouping. Signed-off-by:
Bill Pringlemeir <bpringlemeir@nbsps.com>
-
Simon Glass authored
This allows the caller to easily detect how much of the destination buffer has been used. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This allows the caller to easily detect how much of the destination buffer has been used. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
This allows the caller to easily detect how much of the destination buffer has been used. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Adjust the code so that the error reporting can all be done at the end, and is the same for each decompression method. Try to detect when decompression fails due to lack of space. Keep the behaviour of resetting on failure even though there should be no memory corruption now. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Refactor to allow this function to be used to announce the image being loaded regardless of compression type and even when there is no decompression. Signed-off-by:
Simon Glass <sjg@chromium.org>
-
Simon Glass authored
Use each compression method (including uncompressed). Test for normal operation, insufficient space and corrupted data. Signed-off-by:
Simon Glass <sjg@chromium.org>
-