From e380b0f858bd85724ecd7ffdbabd071986446c43 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Thu, 12 Apr 2012 15:03:22 +0200 Subject: More portable s3 scratch space creation echo -n isn't portable. echo -e isn't portable. that bash loop isn't portable. So let's try something else. Change-Id: Ie73aa1c09d90c11a5c4952a332d4c2058390b5db Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/889 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer Reviewed-by: Zheng Bao Reviewed-by: Patrick Georgi --- src/southbridge/amd/Makefile.inc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/southbridge') diff --git a/src/southbridge/amd/Makefile.inc b/src/southbridge/amd/Makefile.inc index 2cdca290bf..f4a9cbb69d 100644 --- a/src/southbridge/amd/Makefile.inc +++ b/src/southbridge/amd/Makefile.inc @@ -17,8 +17,8 @@ subdirs-$(CONFIG_SOUTHBRIDGE_AMD_CIMX_SB900) += cimx $(obj)/s3.rom: echo " S3 NVRAM 0xffff0000 (S3 storage area)" - echo -ne '\xFF' > $@ - for ((i=0;i<20479;i++)) do echo -ne '\xFF' >> $@ ; done + awk 'BEGIN {for (i=0; i<20480; i++) {printf "%c", 255}}' > $@.tmp + mv $@.tmp $@ ifeq ($(CONFIG_HAVE_ACPI_RESUME), y) cbfs-files-y += s3nv -- cgit v1.2.3