diff options
Diffstat (limited to 'src/southbridge/amd/Makefile.inc')
-rw-r--r-- | src/southbridge/amd/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/southbridge/amd/Makefile.inc b/src/southbridge/amd/Makefile.inc index d7b5645ea8..9bc58cd358 100644 --- a/src/southbridge/amd/Makefile.inc +++ b/src/southbridge/amd/Makefile.inc @@ -20,7 +20,8 @@ ifeq ($(CONFIG_CPU_AMD_AGESA), y) $(obj)/s3.rom: echo " S3 NVRAM 0xffff0000 (S3 storage area)" - awk 'BEGIN {for (i=0; i<20480; i++) {printf "%c", 255}}' > $@.tmp + # force C locale, so cygwin awk doesn't try to interpret the 0xff below as UTF-8 (or worse) + LC_ALL=C awk 'BEGIN {for (i=0; i<20480; i++) {printf "%c", 255}}' > $@.tmp mv $@.tmp $@ cbfs-files-y += s3nv |