- Nov 08, 2013
-
-
Mark Langsdorf authored
Let highbank users break into the autoboot script with ctrl-c. Signed-off-by:
Mark Langsdorf <mark.langsdorf@calxeda.com>
-
Mark Langsdorf authored
As originally implemented, setting the AUTOBOOT_KEYED config option will prevent users from breaking into the autoboot script with ctrl-c. Restore that option with a new config symbol. Signed-off-by:
Mark Langsdorf <mark.langsdorf@calxeda.com>
-
Axel Lin authored
Staticize local functions in xuartlite driver. Signed-off-by:
Axel Lin <axel.lin@ingics.com> Acked-by:
Stefan Roese <sr@denx.de> Tested-by:
Michal Simek <monstr@monstr.eu>
-
Axel Lin authored
Staticize local functions in mxs_auart driver. Signed-off-by:
Axel Lin <axel.lin@ingics.com> Acked-by:
Marek Vasut <marex@denx.de>
-
Piotr Wilczek authored
Curently memcpy copies string without null terminating char because function strlen returns only number of characters excluding null terminating character. Replace memcpy with strcpy. Signed-off-by:
Piotr Wilczek <p.wilczek@samsung.com> Signed-off-by:
Kyungmin Park <kyungmin.park@samsung.com> CC: Tom Rini <trini@ti.com>
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org>
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org>
-
Tim Harvey authored
Signed-off-by:
Tim Harvey <tharvey@gateworks.com>
-
Masahiro Yamada authored
Linux Kernel abolished include/linux/config.h long time ago. (around version v2.6.18..v2.6.19) We don't need to provide Linux copatibility any more. This commit deletes include/linux/config.h and fixes source files not to include this. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Egbert Eich authored
Signed-off-by:
Egbert Eich <eich@suse.com>
-
Egbert Eich authored
Signed-off-by:
Egbert Eich <eich@suse.com>
-
Egbert Eich authored
The gpt command was only implemented for mmc devices. There is no reason why this command should not be generalized and be applied all other storage device classes. This change both simplifies the implementation and eliminates a build failure for systems that don't support mmcs. Signed-off-by:
Egbert Eich <eich@suse.com> Tested-by:
Piotr Wilczek <p.wilczek@samsung.com> [trini: Change coding style slightly] Signed-off-by:
Tom Rini <trini@ti.com>
-
Masahiro Yamada authored
This commit omits non-existing drivers/net/netarm_eth.c from the list. This driver is deleted by commit b411eb30. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
The following serial drivers do not exist any more. - ns9750_serial.c: deleted by commit 4cfc611b - s3c4510b_uart.c: deleted by commit afad4029 - serial_clps7111.c: deleted by commit f2e08015 - serial_netarm.c: deleted by commit b411eb30 This commit cleans up UDM-serial.txt. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
Everytime a dead driver is removed from the list, we must re-number. This is a painful task. Try git show e5323225 -- doc/driver-model/UDM-serial.txt git show 6f62f420 -- doc/driver-model/UDM-serial.txt git show b9f4bc34 -- doc/driver-model/UDM-serial.txt to see what I mean. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Igor Grinberg authored
There is no CONFIG_PCA953X_INFO symbol. U-Boot uses CONFIG_CMD_PCA953X_INFO instead, which is described in "Monitor Functions" section and thus no need to be repeated in the "GPIO Support" section. Remove the whole line. Signed-off-by:
Igor Grinberg <grinberg@compulab.co.il>
-
Masahiro Yamada authored
Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Miao Yan authored
In commit "5c427e49: use BOOTM_STATE_OS_CMDLINE flag for plain bootm" and "3d187b39: Only pass BOOTM_STATE_OS_CMDLINE on PowerPC/MIPS", BOOTM_STATE_OS_CMDLINE was added to do_bootm for PowerPC and MIPS. This breaks other OSes (vxworks, netbsd, plan9,...) that don't support subcommand processing, e.g. they all contain the following code in their do_bootm_xxx(): if (flag & BOOTM_STATE_OS_PREP) return 0; if ((flag != 0) && (flag != BOOTM_STATE_OS_GO)) return 1; which will result a "subcommand not supported" error. This patch changes the above logic to: /* if not go command, pretend everything to be OK */ if (flag != BOOTM_STATE_OS_GO) return 0; Signed-off-by:
Miao Yan <miao.yan@windriver.com>
-
Masahiro Yamada authored
In-tree build: - Do not create a symbolic link from include/asm to arch/${ARCH}/include/asm - Add ${SRCTREE}/arch/arm/include into the header search path Out-of-tree build: - Do not create a directory ${OBJTREE}/include2 - Do not create a symbolic link from ${OBJTREE}/include2/asm to ${SRCTREE}/arch/${ARCH}/include/asm - Add ${SRCTREE}/arch/arm/include into the header search path Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Viktar Palstsiuk authored
Signed-off-by:
Viktar Palstsiuk <viktar.palstsiuk@promwad.com>
-
Luka Perkov authored
Remove 'HEAD' line which is most likely left there while rebasing. It was introduced in commit 877bfe37. Signed-off-by:
Luka Perkov <luka@openwrt.org>
-
Paul Burton authored
Commit 93e14596 "Coding Style cleanup: replace leading SPACEs by TABs" added trailing whitespace to a single line of boards.cfg. I presume this was unintentional, and it causes the file to change after running it through the reformat.py script. Remove the offending character. Signed-off-by:
Paul Burton <paul.burton@imgtec.com>
-
Andrew Ruder authored
env exists is a way to test (in hush) if an environment variable exists. A workaround existed using printenv but this new command doesn't require all the stdout/stderr redirection to prevent printing information to the screen. Example: $ set testexists 1 $ env exists testexists && echo "yes" yes $ env exists testexists || echo "no" $ set testexists $ env exists testexists && echo "yes" $ env exists testexists || echo "no" no $ Signed-off-by:
Andrew Ruder <andrew.ruder@elecsyscorp.com>
-
Masahiro Yamada authored
We expect boards_by_* function to return the 7th filed, 'Target', not the 6th field, 'Board name'. So the function names, boards_by_* are a little misleading, and should be renamed to targets_by_*. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
-
Masahiro Yamada authored
Commit 27af930e changed the boards.cfg format and it changed boards_by_field() function incorrectly. For tegra cpus it returned Board Name field, not Target field. This commit restores the behavior prior to 27af930e in the right way. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
-
Masahiro Yamada authored
Commit 27af930e changed the boards.cfg format but missed to change get_target_arch() fuction. This commit adjusts it for CROSS_COMPILE_<ARCH> to work correctly. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
-
Masahiro Yamada authored
If you do `./MAKEALL -M ` or `./MAKEALL -m` GNU awk would display warnings like follows: awk: warning: escape sequence `\ ' treated as plain ` ' In the first place, we do not explicitly set the field separator. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Albert ARIBAUD <albert.u.boot@aribaud.net>
-
Masahiro Yamada authored
arch/sparc/cpu/leon3/start.S requires CONFIG_SYS_SPARC_NWINDOES to be defined: #ifndef CONFIG_SYS_SPARC_NWINDOWS #error Must define number of SPARC register windows, default is 8 #endif But it missed to include <config.h>, which always ended up in compile error. This commit fixes this problem. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Daniel Hellstrom <daniel@gaisler.com>
-
Masahiro Yamada authored
Commit 1b0757ec deleted the EP88x entry from boards.cfg file. But it missed to remove include/configs/EP88x.h and board/ep88x/. This commit removes them and adds EP88x to README.scrapyard. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Wolfgang Denk <wd@denx.de>
-
Masahiro Yamada authored
Some tabs have been replaced with spaces because doc/README.scrapyard is consistently using spaces. Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com> Cc: Klaus Heydeck <heydeck@kieback-peter.de>
-
- Nov 06, 2013
-
-
jason authored
Signed-off-by:
Jason Jin <Jason.Jin@freescale.com>
-
Jens Scharsig (BuS Elektronik) authored
The malloc space is to small to boot, the current uboot 2013.10-rcX, This will fix the startup problems by increasing the mallog space to 4MiB. Signed-off-by:
Jens Scharsig (BuS Elektronik) <esw@bus-elektronik.de>
-
Masahiro Yamada authored
Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Masahiro Yamada authored
Signed-off-by:
Masahiro Yamada <yamada.m@jp.panasonic.com>
-
Michal Simek authored
Here is the set of command which has been performed to proof this feature. gzip < fpga.bin > fpga.bin.gz mkimage -A arm -O u-boot -T firmware -C gzip \ -a 20000000 -n "zc702_fpga_bin" -d fpga.bin.gz fpga.bin.gz.ub tftp 100000 fpga.bin.gz.ub fpga loadmk 0 100000 This flow should speedup loading bitstream data from external memory and save image footprint in non volatile memory. Signed-off-by:
Michal Simek <michal.simek@xilinx.com> Acked-by:
Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
-
Michal Simek authored
DMA doesn't work when src is placed below 1MB limit. Signed-off-by:
Michal Simek <michal.simek@xilinx.com> Acked-by:
Jagannadha Sutradharudu Teki <jaganna@xilinx.com>
-
Jagan Teki authored
Buffers must be cache and dma aligned. Signed-off-by:
Jagannadha Sutradharudu Teki <jaganna@xilinx.com> Signed-off-by:
Michal Simek <michal.simek@xilinx.com>