From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott McNutt Date: Mon, 01 Aug 2005 11:24:36 -0400 Subject: [U-Boot-Users] mkconfig script & cygwin Message-ID: <42EE3EB4.20305@psyent.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de The mkconfig script does not execute properly in my cygwin environment, but is fine under linux. Changing line 35 solves the problem: from: if [ -z "$6" -o "$6" == "NULL" ] ; then to: if [ -z "$6" -o "$6" = "NULL" ] ; then The extra "=" is the culprit -- although I don't quite understand what's happening. Does this require a patch? Or is my cygwin environment screwed up? BTW: the bash version is the same in both environments. Regards, --Scott