opkg update
opkg install wget
opkg install ca-certificates
replace http to https
opkg update
opkg install wget
opkg install ca-certificates
replace http to https
#!/bin/bash -x | |
IFS=$'\n' | |
for f in `find . -type f -name "*.mp4"` | |
do | |
basedir=$(dirname "$f") | |
echo $basedir | |
mkdir -p ./music/"$basedir" | |
filename="${f%.mp4}" | |
echo $filename |
#!/bin/sh -x | |
# setup cross toolchain | |
wget http://releases.linaro.org/archive/15.02/components/toolchain/binaries/aarch64-linux-gnu/gcc-linaro-4.9-2015.02-3-x86_64_aarch64-linux-gnu.tar.xz | |
wget http://releases.linaro.org/archive/15.02/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf.tar.xz | |
mkdir arm-tc arm64-tc | |
tar --strip-components=1 -C ${PWD}/arm-tc -xf gcc-linaro-4.9-*-x86_64_aarch64-linux-gnu.tar.xz | |
tar --strip-components=1 -C ${PWD}/arm64-tc -xf gcc-linaro-4.9-*-x86_64_arm-linux-gnueabihf.tar.xz | |
export PATH="${PWD}/arm-tc/bin:${PWD}/arm64-tc/bin:$PATH" |
#!/bin/sh -x | |
# setup cross toolchain | |
wget http://releases.linaro.org/archive/15.02/components/toolchain/binaries/aarch64-linux-gnu/gcc-linaro-4.9-2015.02-3-x86_64_aarch64-linux-gnu.tar.xz | |
wget http://releases.linaro.org/archive/15.02/components/toolchain/binaries/arm-linux-gnueabihf/gcc-linaro-4.9-2015.02-3-x86_64_arm-linux-gnueabihf.tar.xz | |
mkdir arm-tc arm64-tc | |
tar --strip-components=1 -C ${PWD}/arm-tc -xf gcc-linaro-4.9-*-x86_64_aarch64-linux-gnu.tar.xz | |
tar --strip-components=1 -C ${PWD}/arm64-tc -xf gcc-linaro-4.9-*-x86_64_arm-linux-gnueabihf.tar.xz | |
export PATH="${PWD}/arm-tc/bin:${PWD}/arm64-tc/bin:$PATH" |
diff --git a/Platforms/Hisilicon/HiKey/HiKey.dsc b/Platforms/Hisilicon/HiKey/HiKey.dsc | |
index 3b99cf5..621e383 100644 | |
--- a/Platforms/Hisilicon/HiKey/HiKey.dsc | |
+++ b/Platforms/Hisilicon/HiKey/HiKey.dsc | |
@@ -25,6 +25,7 @@ | |
BUILD_TARGETS = DEBUG|RELEASE | |
SKUID_IDENTIFIER = DEFAULT | |
FLASH_DEFINITION = OpenPlatformPkg/Platforms/Hisilicon/HiKey/HiKey.fdf | |
+ DEFINE HTTP_BOOT_ENABLE = TRUE | |
#!/bin/sh -x | |
# This script can rename KiCAD's gaber filename to elecrow's gaber filename format | |
# How to use | |
# ./renamer_elecrow.sh "PROJECT NAME(file name prefix)" | |
PROJECT=$1 | |
OUTPUT=elecrow |
This patch is disable U-Boot SPL mode for STM32F7 microcontroller.
Checkd at comit:aae6f016a7928edc79dff78d1235103fff282a34
please reffer following URL: https://patchwork.ozlabs.org/patch/764134/