mirror of https://github.com/parazyd/arm-sdk.git
parent
c33c6bd2e5
commit
bd18f3afa2
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env zsh
|
||||
# Copyright (c) 2016 Dyne.org Foundation
|
||||
# Copyright (c) 2016-2018 Dyne.org Foundation
|
||||
# arm-sdk is written and maintained by Ivan J. <parazyd@dyne.org>
|
||||
#
|
||||
# This file is part of arm-sdk
|
||||
|
|
@ -35,6 +35,8 @@ gpt_boot=(8192 32768)
|
|||
gpt_root=(40960)
|
||||
bootfs="none"
|
||||
|
||||
export PATH="$R/gcc/linaro-armhf-unicorns/bin:$PATH"
|
||||
|
||||
extra_packages+=(abootimg cgpt u-boot-tools)
|
||||
extra_packages+=(vboot-utils vboot-kernel-utils)
|
||||
extra_packages+=(laptop-mode-tools usbutils)
|
||||
|
|
|
|||
10
init.sh
10
init.sh
|
|
@ -67,6 +67,16 @@ gettc "$tc" "arm64" || {
|
|||
exit 1
|
||||
}
|
||||
|
||||
damnunicorncompanyver="4.9.4-2017.01"
|
||||
damnunicorncompanyurl="https://releases.linaro.org/components/toolchain/binaries/4.9-2017.01"
|
||||
|
||||
tc="${damnunicorncompanyurl}/${armhftc}/gcc-linaro-${damnunicorncompanyver}-${_hostarch}_${armhftc}.tar.xz"
|
||||
gettc "$tc" "armhf-unicorns" || {
|
||||
echo "Something went wrong while downloading the toolchain for the damn
|
||||
unicorn company kernels."
|
||||
exit 1
|
||||
}
|
||||
|
||||
cat <<EOM
|
||||
|
||||
All done! Make sure you also install the required dependencies listed in
|
||||
|
|
|
|||
Loading…
Reference in New Issue