19 lines
371 B
Plaintext
19 lines
371 B
Plaintext
|
#
|
||
|
# Common environment variables for build scripts
|
||
|
#
|
||
|
|
||
|
DOWNLOAD_DIR="downloads"
|
||
|
|
||
|
BUILDROOT_VERSION="buildroot-2023.02.8"
|
||
|
BUILDROOT_DIR="$BUILDROOT_VERSION"
|
||
|
TOOLCHAIN_DIR="$(realpath -m "$BUILDROOT_DIR/output/host/bin")"
|
||
|
|
||
|
UBOOT_VERSION="v2023.10"
|
||
|
UBOOT_DIR="u-boot"
|
||
|
|
||
|
LINUX_VERSION="linux-6.6.10"
|
||
|
LINUX_DIR="$LINUX_VERSION"
|
||
|
|
||
|
BOOTIMG_DIR="boot_img"
|
||
|
SDCARD_DIR="sdcard_files"
|