<html xmlns:v="urn:schemas-microsoft-com:vml" xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40"><head><META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=us-ascii"><meta name=Generator content="Microsoft Word 12 (filtered medium)"><style><!--
/* Font Definitions */
@font-face
        {font-family:SimSun;
        panose-1:2 1 6 0 3 1 1 1 1 1;}
@font-face
        {font-family:"Cambria Math";
        panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
        {font-family:Calibri;
        panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
        {font-family:Tahoma;
        panose-1:2 11 6 4 3 5 4 4 2 4;}
@font-face
        {font-family:"\@SimSun";
        panose-1:2 1 6 0 3 1 1 1 1 1;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
        {margin:0cm;
        margin-bottom:.0001pt;
        font-size:12.0pt;
        font-family:SimSun;}
a:link, span.MsoHyperlink
        {mso-style-priority:99;
        color:blue;
        text-decoration:underline;}
a:visited, span.MsoHyperlinkFollowed
        {mso-style-priority:99;
        color:purple;
        text-decoration:underline;}
p
        {mso-style-priority:99;
        mso-margin-top-alt:auto;
        margin-right:0cm;
        mso-margin-bottom-alt:auto;
        margin-left:0cm;
        font-size:12.0pt;
        font-family:SimSun;}
span.EmailStyle18
        {mso-style-type:personal-reply;
        font-family:"Calibri","sans-serif";
        color:#1F497D;}
.MsoChpDefault
        {mso-style-type:export-only;
        font-size:10.0pt;}
@page WordSection1
        {size:612.0pt 792.0pt;
        margin:70.85pt 70.85pt 70.85pt 70.85pt;}
div.WordSection1
        {page:WordSection1;}
--></style><!--[if gte mso 9]><xml>
<o:shapedefaults v:ext="edit" spidmax="1026" />
</xml><![endif]--><!--[if gte mso 9]><xml>
<o:shapelayout v:ext="edit">
<o:idmap v:ext="edit" data="1" />
</o:shapelayout></xml><![endif]--></head><body lang=EN-US link=blue vlink=purple><div class=WordSection1><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Hello Zheng,<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><br>Any suggestions where I can find this? I haven’t been able to locate it until now.<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'>Wim<o:p></o:p></span></p><p class=MsoNormal><span style='font-size:11.0pt;font-family:"Calibri","sans-serif";color:#1F497D'><o:p> </o:p></span></p><div><div style='border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm'><p class=MsoNormal><b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'>From:</span></b><span style='font-size:10.0pt;font-family:"Tahoma","sans-serif"'> Zheng Bao [mailto:fishbaoz@hotmail.com] <br><b>Sent:</b> dinsdag 7 mei 2013 11:12<br><b>To:</b> Wim Vervoorn; coreboot@coreboot.org<br><b>Subject:</b> Re: [coreboot] Building AMD Persimmon in MinGW<o:p></o:p></span></p></div></div><p class=MsoNormal><o:p> </o:p></p><div><p class=MsoNormal style='margin-bottom:12.0pt'><span style='font-family:"Calibri","sans-serif"'>You need to find a regex2.dll. Just putting it in folder coreboot is OK.<br><br>Zheng<o:p></o:p></span></p><div><p class=MsoNormal><span style='font-family:"Calibri","sans-serif"'>> Date: Tue, 7 May 2013 09:07:18 +0200<br>> From: <a href="mailto:wvervoorn@eltan.com">wvervoorn@eltan.com</a><br>> To: <a href="mailto:coreboot@coreboot.org">coreboot@coreboot.org</a><br>> Subject: Re: [coreboot] Building AMD Persimmon in MinGW<br>> <br>> Hello,<br>> <br>> This is the fragment where it fails:<br>> <br>> It seems that the call to regcomp is causing the issue.<br>> <br>> I don't think this has anything to do with direct access to the<br>> hardware. It seems to be some kind of pointer issue, the call seems to<br>> access data it can't reach.<br>> <br>> <br>> /***********************************************************************<br>> *****<br>> * compile_reg_expr<br>> *<br>> * Compile a regular expression.<br>> <br>> ************************************************************************<br>> ****/<br>> void compile_reg_expr(int cflags, const char *expr, regex_t *reg)<br>> {<br>> static const size_t ERROR_BUF_SIZE = 256;<br>> char error_msg[ERROR_BUF_SIZE];<br>> int result;<br>> <br>> -->>>> if ((result = regcomp(reg, expr, cflags)) != 0) { <<---------<br>> <br>> regerror(result, reg, error_msg, ERROR_BUF_SIZE);<br>> fprintf(stderr, "%s: %s\n", prog_name, error_msg);<br>> exit(1);<br>> }<br>> <br>> printf( "compile_reg_expr 3\n");<br>> <br>> }<br>> <br>> <br>> Regards,<br>> <br>> Wim<br>> <br>> -----Original Message-----<br>> From: <a href="mailto:coreboot-bounces@coreboot.org">coreboot-bounces@coreboot.org</a><br>> [<a href="mailto:coreboot-bounces@coreboot.org">mailto:coreboot-bounces@coreboot.org</a>] On Behalf Of Patrick Georgi<br>> Sent: dinsdag 7 mei 2013 8:51<br>> To: <a href="mailto:coreboot@coreboot.org">coreboot@coreboot.org</a><br>> Subject: Re: [coreboot] Building AMD Persimmon in MinGW<br>> <br>> Am 2013-05-07 01:56, schrieb Peter Stuge:<br>> > Sounds right. Would be great to find out more details about why and <br>> > how nvramtool is being used during the build!<br>> During the handling of cmos.layout and cmos.settings (if present and<br>> used).<br>> <br>> We don't need any special hardware access for that and should not use<br>> any such code while building coreboot.<br>> One place to look at is the win32mmap implementation, which _is_ used.<br>> <br>> <br>> Patrick<br>> <br>> -- <br>> coreboot mailing list: <a href="mailto:coreboot@coreboot.org">coreboot@coreboot.org</a><br>> <a href="http://www.coreboot.org/mailman/listinfo/coreboot">http://www.coreboot.org/mailman/listinfo/coreboot</a><br>> <br>> <br>> <br>> -- <br>> coreboot mailing list: <a href="mailto:coreboot@coreboot.org">coreboot@coreboot.org</a><br>> <a href="http://www.coreboot.org/mailman/listinfo/coreboot">http://www.coreboot.org/mailman/listinfo/coreboot</a><o:p></o:p></span></p></div></div></div></body></html>