mirror of https://github.com/parazyd/arm-sdk.git
add /sbin to PATH
This commit is contained in:
parent
5bc8df29b0
commit
969b7d0395
|
|
@ -80,7 +80,7 @@ Devuan's SDK was originally conceived during a period of residency at the
|
|||
Schumacher college in Dartington, UK. Greatly inspired by the laborious and
|
||||
mindful atmosphere of its wonderful premises.
|
||||
|
||||
The Devuan SDK is Copyright (c) 2015-2016 by the Dyne.org Foundation
|
||||
The Devuan SDK is Copyright (c) 2015-2017 by the Dyne.org Foundation
|
||||
|
||||
Devuan SDK components were designed, and are written and maintained by:
|
||||
|
||||
|
|
|
|||
16
config
16
config
|
|
@ -1,5 +1,5 @@
|
|||
#!/usr/bin/env zsh
|
||||
# Copyright (c) 2016 Dyne.org Foundation
|
||||
# Copyright (c) 2016-2017 Dyne.org Foundation
|
||||
# arm-sdk is written and maintained by Ivan J. <parazyd@dyne.org>
|
||||
#
|
||||
# This file is part of arm-sdk
|
||||
|
|
@ -28,25 +28,25 @@ MAKEOPTS="-j$(expr $(grep -c 'processor' /proc/cpuinfo) + 1)"
|
|||
|
||||
## custom toolchain (armv7+armhf; gcc 4.9.3)
|
||||
## https://pub.parazyd.cf/mirror/
|
||||
compiler="armv7-devuan-linux-gnueabihf-"
|
||||
export PATH="$R/gcc/armv7-devuan-linux-gnueabihf/bin:$PATH:/sbin"
|
||||
#compiler="armv7-devuan-linux-gnueabihf-"
|
||||
#export PATH="$R/gcc/armv7-devuan-linux-gnueabihf/bin:$PATH:/usr/sbin:/sbin"
|
||||
|
||||
|
||||
## custom toolchain (armv6+armel; gcc 4.9.3)
|
||||
## https://pub.parazyd.cf/mirror/
|
||||
#compiler="armv6-devuan-linux-gnueabi-"
|
||||
#export PATH="$R/gcc/armv6-devuan-linux-gnueabi/bin:$PATH:/sbin"
|
||||
#export PATH="$R/gcc/armv6-devuan-linux-gnueabi/bin:$PATH:/usr/sbin:/sbin"
|
||||
|
||||
|
||||
## custom toolchain (aarch64+arm64; gcc 4.9.3)
|
||||
## https://pub.parazyd.cf/mirror/
|
||||
#compiler="aarch64-devuan-linux-gnueabi-"
|
||||
#export PATH="$R/gcc/aarch64-devuan-linux-gnueabi/bin:$PATH:/sbin"
|
||||
#export PATH="$R/gcc/aarch64-devuan-linux-gnueabi/bin:$PATH:/usr/sbin:/sbin"
|
||||
|
||||
|
||||
## devuan packaged toolchain
|
||||
#compiler="arm-none-eabi-"
|
||||
#export PATH="$PATH:/sbin"
|
||||
compiler="arm-none-eabi-"
|
||||
export PATH="$PATH:/usr/sbin:/sbin"
|
||||
|
||||
|
||||
## static qemu arm binary
|
||||
|
|
@ -66,7 +66,7 @@ purge_packages+=(rsyslog)
|
|||
linuxfirmware="https://git.kernel.org/pub/scm/linux/kernel/git/firmware/linux-firmware.git"
|
||||
|
||||
## linux mainline kernel
|
||||
linuxmainline="git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git"
|
||||
linuxmainline="git://git.kernel.org/pub/scm/linux/kernel/git/stable/linux-stable.git"
|
||||
|
||||
## u-boot mainline
|
||||
ubootmainline="git://git.denx.de/u-boot.git"
|
||||
|
|
|
|||
Loading…
Reference in New Issue