From b856007098c786692109867093d7c83440b848e2 Mon Sep 17 00:00:00 2001 From: Adrian Schmutzler Date: Wed, 3 Feb 2021 22:39:56 +0100 Subject: [PATCH] buildscript: remove obsolete template rewrite MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit We do not use any *.tpl files anymore, so remove the routine for installing them. Signed-off-by: Adrian Schmutzler Reviewed-by: Robert Langhammer Reviewed-by: Fabian Bläse --- buildscript | 7 ------- 1 file changed, 7 deletions(-) diff --git a/buildscript b/buildscript index aadc581a..7237bedf 100755 --- a/buildscript +++ b/buildscript @@ -190,13 +190,6 @@ prebuild() { cp -r ./bsp/default/root_file_system/* "$builddir"/files/ cp ./bsp/"$machine"/.config "$builddir"/.config - while IFS= read -r -d '' template - do - echo "Translating $template .." - $tpl_translate "$template" > "$(dirname "$template")"/"$(basename "$template" .tpl)" - /bin/rm "$template" - done < <(find "${builddir}/files" -name '*.tpl' -print0) - #insert actual firware version informations into release file variant=$(cat selected_variant) version=$(git describe --tags --dirty)