Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/aa6f6d171a1f9f46ee4f03ad6acb97a6bfb71855
You should set ROOT_URL correctly, otherwise the web may not work correctly.
Modify the RTC API to provide one a status for the time reported by
the rtc_get() function:
0 - a reliable time is guaranteed,
< 0 - a reliable time isn't guaranteed (power fault, clock issues,
and so on).
The RTC chip drivers are responsible for providing this info if the
corresponding chip supports such functionality. If not - always
report that the time is reliable.
The POST RTC test was modified to detect the RTC faults utilizing
this new rtc_get() feature.
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit a5cc5555ccee596908a7d8cf22a104f6b993bfd5
Author: Martin Krause <martin.krause@tqs.de>
Date: Wed Mar 19 14:25:14 2008 +0100
TQM5200B: update MTD partition layout
- insert partition for dtb blob to TQM5200B MTD layout
- set env variables dependent on the configured board
(TQM5200 or TQM5200B)
Signed-off-by: Martin Krause <martin.krause@tqs.de>
commit f0105727d132f56a21fa3ed8b162309cca6cac44
Author: Stefan Roese <sr@denx.de>
Date: Wed Mar 19 07:09:26 2008 +0100
CFI: Small cleanup for FLASH_SHOW_PROGRESS
With this patch we don't need that many #ifdef's in the code. It moves
the subtraction into the macro and defines a NOP-macro when
CONFIG_FLASH_SHOW_PROGRESS is not defined.
Signed-off-by: Stefan Roese <sr@denx.de>
Acked-by: Gerald Van Baren <vanbaren@cideas.com>
commit 9a042e9ca512beaaa2cb450274313fc477141241
Author: Jerry Van Baren <gvb.uboot@gmail.com>
Date: Sat Mar 8 13:48:01 2008 -0500
Flash programming progress countdown.
Signed-off-by: Gerald Van Baren <vanbaren@cideas.com>
commit 11abe45c48ec3485a6c1a5168ce8d79c3288adc1
Author: David Gibson <david@gibson.dropbear.id.au>
Date: Mon Feb 18 18:09:04 2008 +1100
libfdt: Remove no longer used code from fdt_node_offset_by_compatible()
Since fdt_node_offset_by_compatible() was converted to the new
fdt_next_node() iterator, a chunk of initialization code became
redundant, but was not removed by oversight. This patch cleans it up.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
commit d0ccb9b140b472039732de102fc14597eedb14df
Author: David Gibson <david@gibson.dropbear.id.au>
Date: Mon Feb 18 18:06:31 2008 +1100
libfdt: Trivial cleanup for CHECK_HEADER)
Currently the CHECK_HEADER() macro is defined local to fdt_ro.c.
However, there are a handful of functions (fdt_move, rw_check_header,
fdt_open_into) from other files which could also use it (currently
they open-code something more-or-less identical). Therefore, this
patch moves CHECK_HEADER() to libfdt_internal.h and uses it in those
places.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
commit fe30a354cdbb808b5f15366a935b151a4ccee74f
Author: Kumar Gala <galak@kernel.crashing.org>
Date: Wed Feb 20 14:32:36 2008 -0600
Fix fdt boardsetup command parsing
The introduciton of the 'fdt bootcpu' broke parsing for 'fdt boardsetup'.
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
commit 804887e6001e2f00bea11431bf34d6d472512cda
Author: Kumar Gala <galak@kernel.crashing.org>
Date: Fri Feb 15 03:34:36 2008 -0600
Add sub-commands to fdt
fdt header - Display header info
fdt bootcpu <id> - Set boot cpuid
fdt memory <addr> <size> - Add/Update memory node
fdt rsvmem print - Show current mem reserves
fdt rsvmem add <addr> <size> - Add a mem reserve
fdt rsvmem delete <index> - Delete a mem reserves
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
commit f84d65f9b085ffbed464d1d58e8aaa8f5a2efc07
Author: David Gibson <david@gibson.dropbear.id.au>
Date: Thu Feb 14 16:50:34 2008 +1100
libfdt: Fix NOP handling bug in fdt_add_subnode_namelen()
fdt_add_subnode_namelen() has a bug if asked to add a subnode to a
node which has NOP tags interspersed with its properties. In this
case fdt_add_subnode_namelen() will put the new subnode before the
first NOP tag, even if there are properties after it, which will
result in an invalid blob.
This patch fixes the bug, and adds a testcase for it.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
commit ae0b5908de3b9855f8931bc9b32c9fc4962df5a9
Author: David Gibson <david@gibson.dropbear.id.au>
Date: Tue Feb 12 11:58:31 2008 +1100
libfdt: Add and use a node iteration helper function.
This patch adds an fdt_next_node() function which can be used to
iterate through nodes of the tree while keeping track of depth. This
function is used to simplify the iteration code in a lot of other
functions, and is also exported for use by library users.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
commit 9eaeb07a7185d852c7aa10735ecd4e9edf24fb5d
Author: David Gibson <david@gibson.dropbear.id.au>
Date: Fri Jan 11 14:55:05 2008 +1100
libfdt: Add fdt_set_name() function
This patch adds an fdt_set_name() function to libfdt, mirroring
fdt_get_name(). This is a r/w function which alters the name of a
given device tree node.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
commit 23e20aa6488e6c0622496549861bfdc74108debe
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Tue Mar 18 13:33:30 2008 +0100
lwmon5: Fix register test logic to match the specific GDC h/w.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit 46bc0a938779aa1d664b847d36b08aa00f22e539
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Tue Mar 18 13:27:57 2008 +0100
Fix backlight in the lwmon5 POST.
Backlight was switched on even when temperature was too low.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit 3d61018643a2cd38c145aa6dde53f3f5f1a0e9cf
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Wed Feb 6 18:48:36 2008 +0100
The patch introduces the alternative configuration of the log buffer for the lwmon5 board: the storage for the log-buffer itself is OCM(on-chip memory), the log-buffer header is moved to six GPT registers (PPC440EPX_GPT0_COMP1, ..., PPC440EPX_GPT0_COMP5).
To enable this, alternative, configuration the U-Boot board configuration
file for lwmon5 includes the definitions of alternative addresses for header
(CONFIG_ALT_LH_ADDR) and buffer (CONFIG_ALT_LB_ADDR).
The Linux shall be configured with the CONFIG_ALT_LB_LOCATION option set,
and has the BOARD_ALT_LH_ADDR and BOARD_ALT_LB_ADDR constants defined in the
Add support for the lwmon5 board reset via GPIO58.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit f694e32f93565ec1fa8d0226c584d6b89e931ed9
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Mon Feb 4 17:09:55 2008 +0100
Some fixes to dspic, fpga, and gdc post tests for lwmon5. Disable external watch-dog for now.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit b428f6a8c65c5303e5f96db8d24f2f699d94a98c
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Mon Feb 4 14:11:03 2008 +0100
The patch introduces the CRITICAL feature of POST tests. If the test marked as POST_CRITICAL fails then the alternative, post_critical, boot-command is used. If this command is not defined then U-Boot enters into interactive mode.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit 8f15d4addd49c956412e1e3bfc764a0c8b1f3184
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Mon Feb 4 14:10:42 2008 +0100
The patch adds new POST tests for the Lwmon5 board. These are:
* External Watchdog test;
* dsPIC tests;
* FPGA test;
* GDC test;
* Sysmon tests.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
Signed-off-by: Yuri Tikhonov <yur@emcraft.com>
commit c2ed33efbfff5767bca236828e021c55fd547b6c
Author: Yuri Tikhonov <yur@pollux.denx.de>
Date: Mon Feb 4 14:10:01 2008 +0100
Enable CODEC POST with CFG_POST_CODEC rather than with CFG_POST_DSP.
Signed-off-by: Dmitry Rakhchev <rda@emcraft.com>
commit 3515fd18d4e8e44f863ac7142b55e22b109e9af2
Author: Wolfgang Denk <wd@denx.de>
Date: Tue Mar 18 17:35:51 2008 +0100
HMI1001: fix compile problem.
Signed-off-by: Wolfgang Denk <wd@denx.de>
commit 1f2a9970109cebf7446e0503b10b71f8673045ee
Author: Mike Frysinger <vapier@gentoo.org>
Date: Mon Feb 18 05:32:30 2008 -0500
Blackfin: BF537-stamp: drop board-specific flash driver for CFI
The parallel flash on the BF537-STAMP is CFI compliant, so there is no need
for the board specific driver at all. Just use the common CFI driver.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
commit 5b22163fef865af2b6bfb6b75f1b7bf443ce170c
Author: Mike Frysinger <vapier@gentoo.org>
Date: Tue Feb 19 00:36:14 2008 -0500
Blackfin: add proper ELF markings to some assembly functions
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
commit cf675d3b2b9c3511c1d99bc8f8f38fd2f08bfcaf
Author: Mike Frysinger <vapier@gentoo.org>
Date: Tue Feb 19 00:35:17 2008 -0500
Blackfin: new cplbinfo command for viewing cplb tables
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
commit aadb72503cd1602349a5fe53356d5f55ecc1b900
Author: Mike Frysinger <vapier@gentoo.org>
Date: Mon Feb 18 05:37:51 2008 -0500
Blackfin: update MAINTAINERS list
Add maintainer information for the Blackfin boards.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
commit f7ce12cb65a30c6e152eecf26f0304b7d78cf39d
Author: Mike Frysinger <vapier@gentoo.org>
Date: Mon Feb 18 05:26:48 2008 -0500
Blackfin: convert BFIN_CPU to CONFIG_BFIN_CPU
Stop tying things to the processor that should be tied to other defines and
change BFIN_CPU to CONFIG_BFIN_CPU so that it can be used in the build
system to select the -mcpu option.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
commit 86a20fb920bd198105acf7b1191117f566d637ed
Author: Mike Frysinger <vapier@gentoo.org>
Date: Sat Feb 16 07:40:36 2008 -0500
Blackfin: move bootldr command to common code
This moves the Blackfin-common bootldr command out of the BF537-STAMP
specific board directory and into the common directory so that all Blackfin