diff options
| author | memox_5 <memox_5@yahoo.com> | 2019-02-14 15:15:58 +0200 |
|---|---|---|
| committer | Andrei Gherzan <andrei@gherzan.ro> | 2019-02-19 18:16:40 +0000 |
| commit | 1bf03aef0949afb306cc62826eae511d1c241d7e (patch) | |
| tree | 019591b1e23781e16fdba4e8e8d6efdb7cba7802 | |
| parent | 7b191e3dcf8cf4f83d7862366ba9574d2aa1ad9a (diff) | |
| download | meta-raspberrypi-1bf03aef0949afb306cc62826eae511d1c241d7e.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 d92b8e4..fcc7771 100644 --- a/recipes-bsp/bootfiles/rpi-config_git.bb +++ b/recipes-bsp/bootfiles/rpi-config_git.bb | |||
| @@ -184,7 +184,7 @@ do_deploy() { | |||
| 184 | fi | 184 | fi |
| 185 | 185 | ||
| 186 | # Append extra config if the user has provided any | 186 | # Append extra config if the user has provided any |
| 187 | echo "${RPI_EXTRA_CONFIG}" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt | 187 | printf "${RPI_EXTRA_CONFIG}\n" >> ${DEPLOYDIR}/bcm2835-bootfiles/config.txt |
| 188 | } | 188 | } |
| 189 | 189 | ||
| 190 | do_deploy_append_raspberrypi3-64() { | 190 | do_deploy_append_raspberrypi3-64() { |
