[U-Boot] New Oxford Semiconductor board with assertion fail in linker

2011-12-19 Thread Michael Kebe
Hi, I am trying to port support for a board from Oxford Semiconductor to the current head of the git repository. Medion released GPL Sources of their P89626 NAS [1]. In these sources there are using an old version 1.1.2 of U-Boot with some modification a board from Oxford Semiconductor. The

Re: [U-Boot] New Oxford Semiconductor board with assertion fail in linker

2011-12-19 Thread Michael Kebe
On Mon, Dec 19, 2011 at 18:58, Wolfgang Denk w...@denx.de wrote: Try a known to be working (with current code) tool chain? Dear Wolfgang, I can built other boards with the same toolchain. I think I know what I did wrong: #define CONFIG_SYS_UBOOT_BASE -1 #define CONFIG_SYS_TEXT_BASE -1 To

Re: [U-Boot] New Oxford Semiconductor board with assertion fail in linker

2011-12-19 Thread Michael Kebe
On Mon, Dec 19, 2011 at 21:01, Wolfgang Denk w...@denx.de wrote: Check the old sources for a board specific config.mk file ... There is this in the old include/configs/ox820.h: #define STATIC_CS0_BASE_PA 0x4100 #define CFG_NAND_BASE STATIC_CS0_BASE_PA Do you think that's the correct

Re: [U-Boot] New Oxford Semiconductor board with assertion fail in linker

2011-12-19 Thread Michael Kebe
On Mon, Dec 19, 2011 at 23:13, Wolfgang Denk w...@denx.de wrote: No.  As I mentioned, look for a config.mk file in the board directory, i. e. probably board/ox820/config.mk or similar. This should contain the definition of TEXT_BASE. Thanks, for the hint! There is TEXT_BASE = 0x60d0. Here