You've already forked dts-scripts
mirror of
https://github.com/Dasharo/dts-scripts.git
synced 2026-03-06 15:01:22 -08:00
This is to allow using some functions in source `$DTS_FUNCTIONS` without entering dts-boot first e.g. board_config. Signed-off-by: Michał Iwanicki <michal.iwanicki@3mdeb.com>
14 lines
395 B
Bash
14 lines
395 B
Bash
#!/bin/sh
|
|
|
|
# SPDX-FileCopyrightText: 2024 3mdeb <contact@3mdeb.com>
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
SBIN_DIR="/usr/sbin"
|
|
export DTS_FUNCS="$SBIN_DIR/dts-functions.sh"
|
|
export DTS_ENV="$SBIN_DIR/dts-environment.sh"
|
|
export DTS_SUBS="$SBIN_DIR/dts-subscription.sh"
|
|
export DTS_HAL="$SBIN_DIR/dts-hal.sh"
|
|
export DTS_MOCK_COMMON="$SBIN_DIR/common-mock-func.sh"
|
|
export ERR_LOG_FILE="/dev/null"
|