25 Feb, 2014

1 commit


07 Feb, 2014

7 commits


05 Feb, 2014

1 commit


04 Feb, 2014

8 commits


30 Jan, 2014

1 commit

  • Commit cbe5cdfcd changed config.mk and arch/sandbox/cpu/Makefile
    to use -idirafter instead of -I and remove -nostdinc.

    But
    * Sandbox-specific code dirties config.mk
    * os.c is compiled without such compiler flags as:
    -Wall -Wstrict-prototypes -Wno-format-security
    -fno-builtin -ffreestanding -fno-stack-protector
    -fstack-usage -Wno-format-nonliteral

    This commit use -idirafter and remove the -nostdinc
    differently and more simply.

    Signed-off-by: Masahiro Yamada
    Acked-by: Simon Glass

    Masahiro Yamada
     

28 Jan, 2014

1 commit


25 Jan, 2014

15 commits


23 Jan, 2014

1 commit

  • On BSC9131, BSC9132, P1010 : For High Capacity SD Cards (> 2 GBytes), the
    32-bit source address specifies the memory address in block address
    format. Block length is fixed to 512 bytes as per the SD High Capacity
    specification. So we need to convert the block address format
    to byte address format to calculate the envaddr.

    If there is no enough space for environment variables or envaddr
    is larger than 4GiB, we relocate the envaddr to 0x400. The address
    relocated is in the front of the first partition that is assigned
    for sdboot only.

    Signed-off-by: Haijun Zhang
    Acked-by: Pantelis Antoniou
    Reviewed-by: York Sun

    Haijun.Zhang
     

22 Jan, 2014

4 commits


21 Jan, 2014

1 commit

  • My original intention was to have a 100ms timeout. However, the timer
    operations used return values in ms not us, so we ended up with a 100s
    timeout instead. Fixing this exposes that some operations need longer
    to operate than 100ms, so bump the timeout up to a whole second.

    Reported-by: Andre Heider
    Reviewed-by: Andre Heider
    Signed-off-by: Stephen Warren

    Stephen Warren