- Improve and simplify mk_base_image script,

- Remove mbi_func_exec and recurive recall from mk_base_image.
- Add RX3_LIB_DIR env variable support,
- Now support rx3-base 1.1.1.
This commit is contained in:
2026-04-08 23:13:40 +02:00
parent d32423f917
commit 0bedce1135
15 changed files with 155 additions and 166 deletions

View File

@@ -22,13 +22,21 @@
#
#-----------------------------------------------------------------------------------------------------------------------------------
if [[ "${RX3_DOCKER_TOOLS}" != "" ]]
then
return
else
declare -g RX3_DOCKER_TOOLS=1
fi
#-----------------------------------------------------------------------------------------------------------------------------------
# Includes
#-----------------------------------------------------------------------------------------------------------------------------------
. /usr/lib/rx3/base.bash
: "${RX3_LIB_DIR:=/usr/lib/rx3}"
. "${RX3_LIB_DIR}/base.bash"