[PATCH master] firmware: use portable newline escape

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



We want to print `\n' literally into the *.gen.S file, so gas turns it
into a literal new line character. Depending on shell, the current
scheme might work, but let's play it safe and use single quotes. This
fixes a cosmetic issue of non-escaped `\n' making it into the missing
section on NixOS, which leads to slightly garbled output when firmware
is missing.

Signed-off-by: Ahmad Fatoum <a.fatoum@xxxxxxxxxxxxxx>
---
 firmware/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/firmware/Makefile b/firmware/Makefile
index 8d3bfb0752ff..5cdff8b85893 100644
--- a/firmware/Makefile
+++ b/firmware/Makefile
@@ -62,7 +62,7 @@ filechk_fwbin = { \
 	echo "\#ifdef __PBL__"					;\
 	echo "    .section .missing_fw,\"a\""			;\
 	echo "_fwname_$(FWSTR):"				;\
-	echo ".ascii \"firmware/$(FWNAME)\\\\n\""		;\
+	echo '.ascii "firmware/$(FWNAME)\n"'			;\
 	echo "\#endif" 						;\
 }
 
-- 
2.39.2





[Index of Archives]     [Linux Embedded]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]     [XFree86]

  Powered by Linux