asrock/e350m1/4.3-463-gf14f640/2016-03-11T21_00_04Z

Built with gcc (Debian 5.3.1-11) 5.3.1 20160307.

Note, the regression since commit a25b5d2 (lzma: Port size-checking
ulzman() version to coreboot), causing the time to ramstage to be twice
as long, is partly fixed by commit acaf79b3 (cbfs: Add LZ4 in-place
decompression support for pre-RAM stages), but a 25 ms delay due to the
lzmadecode.c change is still present.

Note, since commit c49014e (timestamp: add tick frequency to exported
table), cbmem outputs only the milliseconds and not the microseconds. A
patched version is used instead.

```
        if (*endp == '\0' || *endp == '\n')
-               return rv;
+               /* cpuinfo_max_freq is in kHz. Convert it to MHz. */
+               return rv /1000;
```
10 files changed