diff options
author | memox_5 <memox_5@yahoo.com> | 2019-02-14 15:15:58 +0200 |
---|---|---|
committer | Andrei Gherzan <andrei@gherzan.ro> | 2019-02-15 17:17:57 +0000 |
commit | 6305aa7b693fb3423bd40921144666dadd7185b8 (patch) | |
tree | 38fffe779ca3f418fab6ab0b7bab050635a83c27 | |
parent | cbc7bee292b5bbc025995de96ed2de44be3adb3d (diff) | |
download | meta-raspberrypi-6305aa7b693fb3423bd40921144666dadd7185b8.tar.gz |
rpi-config: used printf to escape properly
Used printf command because on some systems bash doesn't escape
sequences consistently.
Signed-off-by: memox5 <memox_5@yahoo.com>
-rw-r--r-- | recipes-bsp/bootfiles/rpi-config_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes-bsp/bootfiles/rpi-config_git.bb b/recipes-bsp/bootfiles/rpi-config_git.bb index d0d1fba..b3356ed 100644 --- a/recipes-bsp/bootfiles/rpi-config_git.bb +++ b/recipes-bsp/bootfiles/rpi-config_git.bb | |||
@@ -190,7 +190,7 @@ do_deploy() { | |||
190 | fi | 190 | fi |
191 | 191 | ||
192 | # Append extra config if the user has provided any | 192 | # Append extra config if the user has provided any |
193 | echo "${RPI_EXTRA_CONFIG}" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt | 193 | printf "${RPI_EXTRA_CONFIG}\n" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt |
194 | } | 194 | } |
195 | 195 | ||
196 | do_deploy_append_raspberrypi3-64() { | 196 | do_deploy_append_raspberrypi3-64() { |