From 7deaa4a49b1d0fb2112a69719141709b9c261c7c Mon Sep 17 00:00:00 2001 From: guowenxue <guowenxue@gmail.com> Date: Wed, 21 Aug 2024 16:05:07 +0800 Subject: [PATCH] Update leds source code --- 3rdparty/build.sh | 4 +++- 1 files changed, 3 insertions(+), 1 deletions(-) diff --git a/3rdparty/build.sh b/3rdparty/build.sh index 370b986..435dea1 100755 --- a/3rdparty/build.sh +++ b/3rdparty/build.sh @@ -1,12 +1,14 @@ #!/bin/bash -REP_CROSSTOOL=/opt/buildroot/cortex-a5/bin/arm-linux- +REP_CROSSTOOL=/opt/gcc-aarch32-10.3-2021.07/bin/arm-none-linux-gnueabihf- +REP_LYFTP=http://master.weike-iot.com:2211/src/ function replace_crosstool() { for f in `find -iname "build*.sh"` do sed -i -e "s|^CROSSTOOL=.*|CROSSTOOL=$REP_CROSSTOOL|g" $f + sed -i -e "s|^LYFTP_SRC=.*|LYFTP_SRC=$REP_LYFTP|g" $f done } -- Gitblit v1.9.1