]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - wilink8-wlan/build-utilites.git/blob - setup-env.sample
imx6: decrease wilink8 sdio pins drive strength
[wilink8-wlan/build-utilites.git] / setup-env.sample
1 #                            \\\// 
2 #                           -(o o)- 
3 #========================oOO==(_)==OOo=======================
4 # This file contains the exports needed for automating the
5 # build process of WLAN components.
6 # Place this file in the same directory with wl18xx_build.sh
7 # build scripts. No need to run 'source setup-env', the build
8 # scripts will perfom it internaly. 
9 #===========================================================
10 # User specific environment settings - use full PATH
12 # if DEFAULT toolchain path is set toolchain will be downloaded to ./toolchain.
13 export TOOLCHAIN_PATH=DEFAULT
15 # if DEFAULT path to root filesystem is set ./fs folder will be used.
16 export ROOTFS=DEFAULT
18 #if DEFAULT kernel path is set - kernel will be downloaded (set branch to match kernel version)
19 export KERNEL_PATH=DEFAULT
21 # if KERNEL_VARIANT below is set the build script will look for kernel specific
22 # patches under the patches directory:
23 # - patches under the pathces/driver_patches/$KERNEL_VARIANT directory would be
24 #   applied during "modules" build.
25 # - patches under the patches/kernel_patches/$/$KERNEL_VARIANT directory would
26 #   be applied to the kernel pointed by KERNEL_PATH in case the "patch_kernel"
27 #   command is used.
28 #   Note: the kernel is not built automatically after the patches are applied
29 export KERNEL_VARIANT=DEFAULT
31 export CROSS_COMPILE=arm-linux-gnueabihf-
32 export ARCH=arm
33 [ "$TOOLCHAIN_PATH" != "DEFAULT" ] && export PATH=$TOOLCHAIN_PATH:$PATH