Re: [U-Boot] [PATCH v6] socfpga: Add socfpga preloader signing to mkimage

2014-03-04 Thread Charles Manning
Hello Wolfgang Further to my last response On Friday 28 February 2014 11:43:47 Charles Manning wrote: On Friday 28 February 2014 10:57:21 Wolfgang Denk wrote: +static uint32_t get_le32(const uint8_t *buf) +{ + uint32_t retval; + + retval = (((uint32_t) buf[0]) 0) | +

Re: [U-Boot] [PATCH v6] socfpga: Add socfpga preloader signing to mkimage

2014-02-27 Thread Wolfgang Denk
Dear Charles, In message 1393472979-7522-1-git-send-email-cdhmann...@gmail.com you wrote: Like many platforms, the Altera socfpga platform requires that the preloader be signed in a certain way or the built-in boot ROM will not boot the code. ... diff --git a/include/crc32_alt.h

Re: [U-Boot] [PATCH v6] socfpga: Add socfpga preloader signing to mkimage

2014-02-27 Thread Chin Liang See
Hi Charles, I hit error when trying to apply the patch bash-3.2$ git apply signing.patch fatal: corrupt patch at line 205 On Thu, 2014-02-27 at 16:49 +1300, Charles Manning wrote: Like many platforms, the Altera socfpga platform requires that the preloader be signed in a certain way or the

Re: [U-Boot] [PATCH v6] socfpga: Add socfpga preloader signing to mkimage

2014-02-27 Thread Charles Manning
On Friday 28 February 2014 10:57:21 Wolfgang Denk wrote: Dear Charles, In message 1393472979-7522-1-git-send-email-cdhmann...@gmail.com you wrote: Like many platforms, the Altera socfpga platform requires that the preloader be signed in a certain way or the built-in boot ROM will not

[U-Boot] [PATCH v6] socfpga: Add socfpga preloader signing to mkimage

2014-02-26 Thread Charles Manning
Like many platforms, the Altera socfpga platform requires that the preloader be signed in a certain way or the built-in boot ROM will not boot the code. This change automatically creates an appropriately signed preloader from an SPL image. The signed image includes a CRC which must, of course,