Skip to content
Snippets Groups Projects
Commit 71cf7f9d authored by Alper Nebi Yasak's avatar Alper Nebi Yasak
Browse files

download/u-boot: Remove support for deleting git folders


Removing the git dirs was part of deblobbing, which Libreboot no longer
cares about. The variable that triggers it is no more. Remove the dead
code.

Signed-off-by: default avatarAlper Nebi Yasak <alpernebiyasak@gmail.com>
parent 960af2d6
Branches
Tags
No related merge requests found
......@@ -235,11 +235,6 @@ if [ $# -eq 0 ] ; then
for board in $(list_supported_boards); do
download_uboot_board "${board}"
done
if [ "${deletegit}" = "true" ]; then
rm -rf u-boot/u-boot/ u-boot/.git*
fi
exit 0
elif [ $# -eq 1 -a "$1" == "--help" ] ; then
usage
......@@ -255,10 +250,6 @@ elif [ $# -eq 1 ] ; then
fi
done
if [ "${deletegit}" = "true" ]; then
rm -rf u-boot/u-boot/ u-boot/.git*
fi
printf "Error: Board '${1}' is not supported\n"
exit 1
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment