diff options
author | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2010-03-14 15:32:02 +0100 |
---|---|---|
committer | Michael 'Mickey' Lauer <mickey@vanille-media.de> | 2010-03-14 15:32:02 +0100 |
commit | a2da6e643c38721d676ea6dfb31181da8f000522 (patch) | |
tree | 3b3e0b20c2b6e6015eed379269c0d785e6375551 /recipes/linux/linux-leviathan_git.bb | |
parent | e0a5c66df54995c23976707a157537a50d83fc4c (diff) |
linux-leviathan: remove bogus ' characters that disturb mkbootimg
Diffstat (limited to 'recipes/linux/linux-leviathan_git.bb')
-rw-r--r-- | recipes/linux/linux-leviathan_git.bb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/recipes/linux/linux-leviathan_git.bb b/recipes/linux/linux-leviathan_git.bb index a14fb21092..2510a90bdb 100644 --- a/recipes/linux/linux-leviathan_git.bb +++ b/recipes/linux/linux-leviathan_git.bb @@ -20,6 +20,6 @@ do_deploy_append() { touch -f empty mkbootimg --kernel ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.bin \ --ramdisk empty \ - --cmdline '"${CMDLINE}"' \ + --cmdline "${CMDLINE}" \ --output ${DEPLOY_DIR_IMAGE}/${KERNEL_IMAGE_BASE_NAME}.fastboot } |