add /sbin to PATH

This commit is contained in:
parazyd 2017-02-24 03:46:54 +01:00
parent 5bc8df29b0
commit 969b7d0395
No known key found for this signature in database
GPG Key ID: F0CB28FCF78637DE
3 changed files with 10 additions and 10 deletions

View File

@ -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
View File

@ -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"

2
sdk
View File

@ -17,7 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with this source code. If not, see <http://www.gnu.org/licenses/>.
armsdk_version="0.6"
armsdk_version="0.7"
R=${ARM_SDK:-$PWD}