Revert "Generalize the naming of the bootfiles deploy directory"

This reverts commit a907c3261e.
This commit is contained in:
Andrei Gherzan
2020-08-06 11:53:27 +01:00
parent fc494a35b5
commit 7a2624d5ba
5 changed files with 78 additions and 82 deletions
+2 -2
View File
@@ -131,10 +131,10 @@ do_compile_append() {
do_deploy_append() {
# Deploy cmdline.txt
install -d ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}
install -d ${DEPLOYDIR}/bcm2835-bootfiles
PITFT="${@bb.utils.contains("MACHINE_FEATURES", "pitft", "1", "0", d)}"
if [ ${PITFT} = "1" ]; then
PITFT_PARAMS="fbcon=map:10 fbcon=font:VGA8x8"
fi
echo "${CMDLINE}${PITFT_PARAMS}" > ${DEPLOYDIR}/${BOOTFILES_DIR_NAME}/cmdline.txt
echo "${CMDLINE}${PITFT_PARAMS}" > ${DEPLOYDIR}/bcm2835-bootfiles/cmdline.txt
}