[U-Boot] [PATCH v2 3/3] mkconfig: also create CONFIG defines with BSD sed

2011-07-20 Thread Jeroen Hofstee
Parsing of boards.cfg fails on FreeBSD with the error: sed: 1: "/=/ {s/=/\t/;q } ; { s/ ...": extra characters at the end of q command BSD sed expects commands to be on seperate 'lines', hence it expects an additional ; before the closing brackets. BSD sed does not support \t, replaced by literal

Re: [U-Boot] [PATCH v2 3/3] mkconfig: also create CONFIG defines with BSD sed

2011-07-20 Thread Mike Frysinger
On Wed, Jul 20, 2011 at 14:38, Jeroen Hofstee wrote: > Parsing of boards.cfg fails on FreeBSD with the error: > > sed: 1: "/=/ {s/=/\t/;q } ; { s/ ...": extra characters at the end > of q command > > BSD sed expects commands to be on seperate 'lines', hence it expects > an additional ; before the c

Re: [U-Boot] [PATCH v2 3/3] mkconfig: also create CONFIG defines with BSD sed

2011-07-28 Thread Wolfgang Denk
Dear Jeroen Hofstee, In message <1311187101-6229-2-git-send-email-jer...@myspectrum.nl> you wrote: > Parsing of boards.cfg fails on FreeBSD with the error: > > sed: 1: "/=/ {s/=/\t/;q } ; { s/ ...": extra characters at the end > of q command > > BSD sed expects commands to be on seperate 'lines'