buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
setup_toolchain() {
|
2016-09-23 14:29:49 -07:00
|
|
|
case "$1" in
|
2016-09-23 14:29:49 -07:00
|
|
|
target|init)
|
2016-09-23 14:29:49 -07:00
|
|
|
export DESTIMAGE="target"
|
2016-09-23 14:29:49 -07:00
|
|
|
export CC="${TARGET_PREFIX}gcc"
|
|
|
|
export CXX="${TARGET_PREFIX}g++"
|
|
|
|
export CPP="${TARGET_PREFIX}cpp"
|
|
|
|
export LD="${TARGET_PREFIX}ld"
|
|
|
|
export AS="${TARGET_PREFIX}as"
|
|
|
|
export AR="${TARGET_PREFIX}ar"
|
|
|
|
export NM="${TARGET_PREFIX}nm"
|
|
|
|
export RANLIB="${TARGET_PREFIX}ranlib"
|
|
|
|
export OBJCOPY="${TARGET_PREFIX}objcopy"
|
|
|
|
export OBJDUMP="${TARGET_PREFIX}objdump"
|
|
|
|
export STRIP="${TARGET_PREFIX}strip"
|
2016-09-23 14:29:49 -07:00
|
|
|
export CPPFLAGS="$TARGET_CPPFLAGS"
|
|
|
|
export CFLAGS="$TARGET_CFLAGS"
|
|
|
|
export CXXFLAGS="$TARGET_CXXFLAGS"
|
|
|
|
export LDFLAGS="$TARGET_LDFLAGS"
|
2017-02-17 06:40:16 +00:00
|
|
|
export PKG_CONFIG="$TOOLCHAIN/bin/pkg-config"
|
2016-09-23 14:29:49 -07:00
|
|
|
export PKG_CONFIG_PATH=""
|
|
|
|
export PKG_CONFIG_LIBDIR="$SYSROOT_PREFIX/usr/lib/pkgconfig:$SYSROOT_PREFIX/usr/share/pkgconfig"
|
|
|
|
export PKG_CONFIG_SYSROOT_DIR="$SYSROOT_PREFIX"
|
2017-01-04 22:36:56 +01:00
|
|
|
export PKG_CONFIG_ALLOW_SYSTEM_CFLAGS=1
|
|
|
|
export PKG_CONFIG_ALLOW_SYSTEM_LIBS=1
|
2017-02-17 06:40:16 +00:00
|
|
|
export CMAKE_CONF=$TOOLCHAIN/etc/cmake-$TARGET_NAME.conf
|
2016-09-23 14:29:49 -07:00
|
|
|
export CMAKE="cmake -DCMAKE_TOOLCHAIN_FILE=$CMAKE_CONF -DCMAKE_INSTALL_PREFIX=/usr"
|
|
|
|
if [ ! -f $CMAKE_CONF ] ; then
|
2017-02-17 06:40:16 +00:00
|
|
|
mkdir -p $TOOLCHAIN/etc
|
2016-09-23 14:29:49 -07:00
|
|
|
echo "SET(CMAKE_SYSTEM_NAME Linux)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_SYSTEM_VERSION 1)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_SYSTEM_PROCESSOR $TARGET_ARCH)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_C_COMPILER $CC)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_CXX_COMPILER $CXX)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_CPP_COMPILER $CPP)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH $SYSROOT_PREFIX)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY)" >> $CMAKE_CONF
|
2017-01-03 21:20:57 +01:00
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE ONLY)" >> $CMAKE_CONF
|
2016-09-23 14:29:49 -07:00
|
|
|
fi
|
2017-10-07 12:32:39 -07:00
|
|
|
export MESON_CONF=$TOOLCHAIN/etc/meson-$TARGET_NAME.conf
|
|
|
|
if [ ! -f $MESON_CONF ] ; then
|
|
|
|
mkdir -p $TOOLCHAIN/etc
|
|
|
|
echo "[binaries]" >> $MESON_CONF
|
|
|
|
echo "c = '$CC'" >> $MESON_CONF
|
|
|
|
echo "cpp = '$CXX'" >> $MESON_CONF
|
|
|
|
echo "ar = '$AR'" >> $MESON_CONF
|
|
|
|
echo "strip = '$STRIP'" >> $MESON_CONF
|
|
|
|
echo "pkgconfig = '$PKG_CONFIG'" >> $MESON_CONF
|
|
|
|
echo "" >> $MESON_CONF
|
|
|
|
echo "[host_machine]" >> $MESON_CONF
|
|
|
|
echo "system = 'linux'" >> $MESON_CONF
|
|
|
|
echo "cpu_family = '$TARGET_ARCH'" >> $MESON_CONF
|
|
|
|
echo "cpu = '$TARGET_SUBARCH'" >> $MESON_CONF
|
|
|
|
echo "endian = 'little'" >> $MESON_CONF
|
|
|
|
echo "" >> $MESON_CONF
|
|
|
|
echo "[properties]" >> $MESON_CONF
|
|
|
|
echo "root = '$SYSROOT_PREFIX/usr'" >> $MESON_CONF
|
|
|
|
python -c "import os; print('c_args = {}'.format([x for x in os.getenv('CFLAGS').split()]))" >> $MESON_CONF
|
|
|
|
python -c "import os; print('c_link_args = {}'.format([x for x in os.getenv('LDFLAGS').split()]))" >> $MESON_CONF
|
|
|
|
fi
|
2017-02-17 06:40:16 +00:00
|
|
|
export HOST_CC="$TOOLCHAIN/bin/host-gcc"
|
|
|
|
export HOST_CXX="$TOOLCHAIN/bin/host-g++"
|
2016-09-23 14:29:49 -07:00
|
|
|
export HOSTCC="$HOST_CC"
|
|
|
|
export HOSTCXX="$HOST_CXX"
|
|
|
|
export CC_FOR_BUILD="$HOST_CC"
|
|
|
|
export CXX_FOR_BUILD="$HOST_CXX"
|
|
|
|
export BUILD_CC="$HOST_CC"
|
|
|
|
export BUILD_CXX="$HOST_CXX"
|
2016-09-23 14:29:49 -07:00
|
|
|
export _python_sysroot="$SYSROOT_PREFIX"
|
|
|
|
export _python_prefix=/usr
|
|
|
|
export _python_exec_prefix=/usr
|
|
|
|
;;
|
2016-09-23 14:29:49 -07:00
|
|
|
host|bootstrap)
|
2016-09-23 14:29:49 -07:00
|
|
|
export DESTIMAGE="host"
|
2016-09-23 14:29:49 -07:00
|
|
|
export AWK="gawk"
|
2017-02-17 06:40:16 +00:00
|
|
|
export CC="$TOOLCHAIN/bin/host-gcc"
|
|
|
|
export CXX="$TOOLCHAIN/bin/host-g++"
|
2016-09-23 14:29:49 -07:00
|
|
|
export CPP="cpp"
|
|
|
|
export LD="ld"
|
|
|
|
export AS="as"
|
|
|
|
export AR="ar"
|
|
|
|
export NM="nm"
|
|
|
|
export RANLIB="ranlib"
|
|
|
|
export OBJCOPY="objcopy"
|
|
|
|
export OBJDUMP="objdump"
|
|
|
|
export STRIP="strip"
|
2016-09-23 14:29:49 -07:00
|
|
|
export CPPFLAGS="$HOST_CPPFLAGS"
|
|
|
|
export CFLAGS="$HOST_CFLAGS"
|
|
|
|
export CXXFLAGS="$HOST_CXXFLAGS"
|
|
|
|
export LDFLAGS="$HOST_LDFLAGS"
|
2017-02-17 06:40:16 +00:00
|
|
|
export PKG_CONFIG="$TOOLCHAIN/bin/pkg-config"
|
2016-09-23 14:29:49 -07:00
|
|
|
export PKG_CONFIG_PATH=""
|
2017-02-17 06:40:16 +00:00
|
|
|
export PKG_CONFIG_LIBDIR="$TOOLCHAIN/lib/pkgconfig:$TOOLCHAIN/share/pkgconfig"
|
2016-09-23 14:29:49 -07:00
|
|
|
export PKG_CONFIG_SYSROOT_DIR=""
|
2017-01-04 22:36:56 +01:00
|
|
|
unset PKG_CONFIG_ALLOW_SYSTEM_CFLAGS
|
|
|
|
unset PKG_CONFIG_ALLOW_SYSTEM_LIBS
|
2017-02-17 06:40:16 +00:00
|
|
|
export CMAKE_CONF=$TOOLCHAIN/etc/cmake-$HOST_NAME.conf
|
|
|
|
export CMAKE="cmake -DCMAKE_TOOLCHAIN_FILE=$CMAKE_CONF -DCMAKE_INSTALL_PREFIX=$TOOLCHAIN"
|
2016-09-23 14:29:49 -07:00
|
|
|
if [ ! -f $CMAKE_CONF ] ; then
|
|
|
|
mkdir -p $TOOLCHAIN/etc
|
|
|
|
echo "SET(CMAKE_SYSTEM_NAME Linux)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_SYSTEM_VERSION 1)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_C_COMPILER $CC)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_CXX_COMPILER $CXX)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_CPP_COMPILER $CXX)" >> $CMAKE_CONF
|
2016-09-23 14:29:49 -07:00
|
|
|
echo "SET(CMAKE_AR $AR CACHE FILEPATH "Archiver")" >> $CMAKE_CONF # hum?
|
2017-02-17 06:40:16 +00:00
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH $TOOLCHAIN)" >> $CMAKE_CONF
|
2016-09-23 14:29:49 -07:00
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM BOTH)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY BOTH)" >> $CMAKE_CONF
|
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE BOTH)" >> $CMAKE_CONF
|
2017-01-03 21:20:57 +01:00
|
|
|
echo "SET(CMAKE_FIND_ROOT_PATH_MODE_PACKAGE BOTH)" >> $CMAKE_CONF
|
2016-09-23 14:29:49 -07:00
|
|
|
fi
|
2017-10-07 12:32:39 -07:00
|
|
|
export MESON_CONF=$TOOLCHAIN/etc/meson-$HOST_NAME.conf
|
|
|
|
if [ ! -f $MESON_CONF ] ; then
|
|
|
|
mkdir -p $TOOLCHAIN/etc
|
|
|
|
echo "[binaries]" >> $MESON_CONF
|
|
|
|
echo "c = '$CC'" >> $MESON_CONF
|
|
|
|
echo "cpp = '$CXX'" >> $MESON_CONF
|
|
|
|
echo "ar = '$AR'" >> $MESON_CONF
|
|
|
|
echo "strip = '$STRIP'" >> $MESON_CONF
|
|
|
|
echo "pkgconfig = '$PKG_CONFIG'" >> $MESON_CONF
|
|
|
|
echo "" >> $MESON_CONF
|
|
|
|
echo "[host_machine]" >> $MESON_CONF
|
|
|
|
echo "system = 'linux'" >> $MESON_CONF
|
|
|
|
echo "cpu_family = '$TARGET_ARCH'" >> $MESON_CONF
|
|
|
|
echo "cpu = '$TARGET_SUBARCH'" >> $MESON_CONF
|
|
|
|
echo "endian = 'big'" >> $MESON_CONF
|
|
|
|
echo "" >> $MESON_CONF
|
|
|
|
echo "[properties]" >> $MESON_CONF
|
|
|
|
echo "root = '$TOOLCHAIN'" >> $MESON_CONF
|
|
|
|
python -c "import os; print('c_args = {}'.format([x for x in os.getenv('CFLAGS').split()]))" >> $MESON_CONF
|
|
|
|
python -c "import os; print('c_link_args = {}'.format([x for x in os.getenv('LDFLAGS').split()]))" >> $MESON_CONF
|
|
|
|
fi
|
2016-11-04 21:35:39 +01:00
|
|
|
export HOST_CC="$CC"
|
|
|
|
export HOST_CXX="$CXX"
|
|
|
|
export HOSTCC="$CC"
|
|
|
|
export HOSTCXX="$CXX"
|
|
|
|
export CC_FOR_BUILD="$CC"
|
|
|
|
export CXX_FOR_BUILD="$CXX"
|
|
|
|
export BUILD_CC="$CC"
|
|
|
|
export BUILD_CXX="$CXX"
|
2017-11-10 09:05:59 -08:00
|
|
|
export _python_sysroot="$TOOLCHAIN"
|
|
|
|
export _python_prefix=/
|
|
|
|
export _python_exec_prefix=/
|
2016-09-23 14:29:49 -07:00
|
|
|
;;
|
|
|
|
esac
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
}
|
|
|
|
|
2017-10-06 09:21:45 +01:00
|
|
|
# unset all PKG_* vars apart from those exported by setup_toolchain, then set default values
|
|
|
|
reset_pkg_vars() {
|
|
|
|
local vars var
|
|
|
|
|
|
|
|
for var in ${!PKG_*}; do
|
|
|
|
if [ "${var}" = "PKG_CONFIG" ] || \
|
|
|
|
[ "${var}" = "PKG_CONFIG_PATH" ] || \
|
|
|
|
[ "${var}" = "PKG_CONFIG_LIBDIR" ] || \
|
|
|
|
[ "${var}" = "PKG_CONFIG_SYSROOT_DIR" ] || \
|
|
|
|
[ "${var}" = "PKG_CONFIG_ALLOW_SYSTEM_CFLAGS" ] || \
|
|
|
|
[ "${var}" = "PKG_CONFIG_ALLOW_SYSTEM_LIBS" ]; then
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
vars+="${var} "
|
|
|
|
done
|
|
|
|
[ -n "${vars}" ] && unset -v ${vars}
|
|
|
|
|
|
|
|
if [ -n "$1" ]; then
|
|
|
|
PKG_NAME="$1"
|
|
|
|
PKG_SHORTDESC="$1 (autogenerated)"
|
|
|
|
PKG_LONGDESC="$1 (autogenerated)"
|
|
|
|
fi
|
|
|
|
PKG_VERSION="0.0invalid"
|
|
|
|
PKG_REV="0"
|
|
|
|
PKG_ARCH="any"
|
|
|
|
PKG_LICENSE="unknown"
|
2017-10-27 14:07:29 +02:00
|
|
|
PKG_TOOLCHAIN="auto"
|
2017-10-06 09:21:45 +01:00
|
|
|
PKG_IS_ADDON="no"
|
2017-10-08 23:50:38 +01:00
|
|
|
PKG_PYTHON_VERSION="python2.7"
|
2017-10-06 09:21:45 +01:00
|
|
|
}
|
|
|
|
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
kernel_path() {
|
2017-01-31 22:09:30 +00:00
|
|
|
get_build_dir linux
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
}
|
|
|
|
|
2013-12-21 08:42:05 +01:00
|
|
|
kernel_version() {
|
2017-01-31 22:09:30 +00:00
|
|
|
get_pkg_version linux
|
2013-12-21 08:42:05 +01:00
|
|
|
}
|
|
|
|
|
2014-01-13 09:22:11 +01:00
|
|
|
# get kernel module dir
|
|
|
|
get_module_dir() {
|
2017-09-05 09:17:30 +02:00
|
|
|
basename $(ls -d $(get_build_dir linux)/.install_pkg/usr/lib/kernel-overlays/base/lib/modules/*)
|
|
|
|
}
|
|
|
|
|
|
|
|
# get base path to kernel modules and firmware
|
|
|
|
get_kernel_overlay_dir() {
|
|
|
|
echo "/usr/lib/kernel-overlays/${1:-base}"
|
2014-01-13 09:22:11 +01:00
|
|
|
}
|
|
|
|
|
2017-09-05 09:17:30 +02:00
|
|
|
# get full path to kernel module dir
|
2017-09-05 09:17:30 +02:00
|
|
|
# optional parameter specifies overlay level (default is base)
|
2017-09-05 09:17:30 +02:00
|
|
|
get_full_module_dir() {
|
2017-09-05 09:17:30 +02:00
|
|
|
echo "$(get_kernel_overlay_dir $1)/lib/modules/$(get_module_dir)"
|
2017-09-05 09:17:30 +02:00
|
|
|
}
|
|
|
|
|
2017-09-05 09:17:30 +02:00
|
|
|
# get full path to firmware dir
|
2017-09-05 09:17:30 +02:00
|
|
|
# optional parameter specifies overlay level (default is base)
|
2017-09-05 09:17:30 +02:00
|
|
|
get_full_firmware_dir() {
|
2017-09-05 09:17:30 +02:00
|
|
|
echo "$(get_kernel_overlay_dir $1)/lib/firmware"
|
2017-09-05 09:17:30 +02:00
|
|
|
}
|
|
|
|
|
2013-12-13 13:18:38 +02:00
|
|
|
# get package's build dir
|
|
|
|
get_build_dir() {
|
2017-01-31 22:09:30 +00:00
|
|
|
local _PKG_NAME="$(get_pkg_variable "$1" PKG_NAME)" _PKG_VERSION="$(get_pkg_version "$1")"
|
|
|
|
if [ -n "$_PKG_NAME" -a -n "$_PKG_VERSION" ]; then
|
2017-02-17 06:40:16 +00:00
|
|
|
echo $BUILD/${_PKG_NAME}-${_PKG_VERSION}
|
2013-12-13 13:18:38 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-11-18 14:01:23 +01:00
|
|
|
get_pkg_version() {
|
2017-01-31 22:09:30 +00:00
|
|
|
get_pkg_variable "$1" PKG_VERSION
|
|
|
|
}
|
|
|
|
|
|
|
|
get_pkg_directory() {
|
|
|
|
get_pkg_variable "$1" PKG_DIR
|
|
|
|
}
|
|
|
|
|
|
|
|
# get variable ($2) for package ($1)
|
|
|
|
get_pkg_variable() {
|
|
|
|
if [ -n "$1" -a -n "$2" ] ; then
|
2016-11-18 14:01:23 +01:00
|
|
|
cd $ROOT
|
|
|
|
. config/options $1
|
2017-01-31 22:09:30 +00:00
|
|
|
echo "${!2}"
|
2016-11-18 14:01:23 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2017-10-11 09:10:00 +01:00
|
|
|
# return 0 if $2 in space-separated list $1, otherwise return 1
|
|
|
|
listcontains() {
|
2017-10-17 22:48:27 +01:00
|
|
|
if [ -n "$1" -a -n "$2" ]; then
|
|
|
|
[[ ${1} =~ (^|[[:space:]])${2}($|[[:space:]]) ]] && return 0 || return 1
|
|
|
|
else
|
|
|
|
return 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
target_has_feature() {
|
|
|
|
listcontains "$TARGET_FEATURES" "$1"
|
2017-10-11 09:10:00 +01:00
|
|
|
}
|
|
|
|
|
2017-07-19 00:47:49 +01:00
|
|
|
install_binary_addon() {
|
2017-09-05 09:17:30 +02:00
|
|
|
local addon_id="$1" addon_so
|
2017-07-19 00:47:49 +01:00
|
|
|
|
|
|
|
mkdir -p $ADDON_BUILD/$addon_id/
|
2017-09-05 09:17:30 +02:00
|
|
|
cp -R $PKG_BUILD/.install_pkg/usr/share/$MEDIACENTER/addons/$addon_id/* $ADDON_BUILD/$addon_id/
|
2017-07-19 00:47:49 +01:00
|
|
|
|
2017-09-05 09:17:30 +02:00
|
|
|
addon_so=$(xmlstarlet sel -t -v "/addon/extension/@library_linux" $ADDON_BUILD/$addon_id/addon.xml || :)
|
2017-07-19 00:47:49 +01:00
|
|
|
if [ -n "$addon_so" ]; then
|
2017-09-05 09:17:30 +02:00
|
|
|
cp -L $PKG_BUILD/.install_pkg/usr/lib/$MEDIACENTER/addons/$addon_id/$addon_so $ADDON_BUILD/$addon_id/
|
2017-07-19 00:47:49 +01:00
|
|
|
chmod +x $ADDON_BUILD/$addon_id/$addon_so
|
|
|
|
fi
|
2017-09-05 09:17:30 +02:00
|
|
|
|
|
|
|
if [ -d $PKG_BUILD/.install_pkg/usr/lib/kernel-overlays/$addon_id ] ; then
|
|
|
|
mkdir -p $ADDON_BUILD/$addon_id/kernel-overlay
|
|
|
|
cp -PR $PKG_BUILD/.install_pkg/usr/lib/kernel-overlays/$addon_id/* $ADDON_BUILD/$addon_id/kernel-overlay
|
|
|
|
fi
|
2017-07-19 00:47:49 +01:00
|
|
|
}
|
|
|
|
|
2017-09-05 09:17:30 +02:00
|
|
|
install_addon_source() {
|
|
|
|
if [ -d $PKG_DIR/source ]; then
|
|
|
|
cp -R $PKG_DIR/source/* "$1"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
install_addon_images() {
|
|
|
|
local dest_dir="$1"
|
|
|
|
|
|
|
|
if [ -f "$PKG_DIR/icon/icon.png" ]; then
|
|
|
|
mkdir -p "$dest_dir/resources"
|
|
|
|
cp "$PKG_DIR/icon/icon.png" "$dest_dir/resources"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f "$DISTRO_DIR/$DISTRO/addons/fanart.png" ]; then
|
|
|
|
mkdir -p "$dest_dir/resources"
|
|
|
|
cp "$DISTRO_DIR/$DISTRO/addons/fanart.png" "$dest_dir/resources"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
create_addon_xml() {
|
|
|
|
local addon_xml addon_version addon_name provider_name requires requires_addonname requires_addonversion screenshots
|
|
|
|
|
|
|
|
addon_xml="$1/addon.xml"
|
|
|
|
|
|
|
|
IFS=" "
|
|
|
|
for i in $PKG_ADDON_REQUIRES; do
|
|
|
|
requires_addonname=`echo $i | cut -f1 -d ":"`
|
|
|
|
requires_addonversion=`echo $i | cut -f2 -d ":"`
|
|
|
|
requires="$requires\n <import addon=\"$requires_addonname\" version=\"$requires_addonversion\" />"
|
|
|
|
done
|
|
|
|
unset IFS
|
|
|
|
|
|
|
|
if [ ! -f "$addon_xml" ] ; then
|
|
|
|
cp $ROOT/config/addon/${PKG_ADDON_TYPE}.xml "$addon_xml"
|
|
|
|
addon_version=${PKG_ADDON_VERSION:-${ADDON_VERSION}.${PKG_REV}}
|
|
|
|
else
|
|
|
|
if [ ! $(which xmlstarlet) ]; then
|
|
|
|
echo "*** ERROR: $ADDON has addon.xml shipped, you need 'xmlstarlet' ***"
|
|
|
|
exit 255
|
|
|
|
fi
|
|
|
|
addon_version="${PKG_ADDON_VERSION:-$(xmlstarlet sel -t -v "/addon/@version" "$addon_xml").$PKG_REV}"
|
|
|
|
xmlstarlet ed --inplace -u "/addon[@version]/@version" -v "$addon_version" "$addon_xml"
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -f $PKG_DIR/changelog.txt ]; then
|
|
|
|
sed -e "/@PKG_ADDON_NEWS@/ \
|
|
|
|
{
|
|
|
|
r $PKG_DIR/changelog.txt
|
|
|
|
d
|
|
|
|
}" -i "$addon_xml"
|
|
|
|
else
|
|
|
|
sed -e "s|@PKG_ADDON_NEWS@||g" -i "$addon_xml"
|
|
|
|
fi
|
|
|
|
|
|
|
|
provider_name=${PKG_MAINTAINER:-"Team LibreELEC"}
|
|
|
|
addon_name=${PKG_ADDON_NAME:-"$PKG_NAME"}
|
|
|
|
|
|
|
|
for f in $PKG_DIR/source/resources/screenshot-*.{jpg,png}; do
|
|
|
|
if [ -f "$f" ]; then
|
|
|
|
screenshots+="<screenshot>resources/$(basename $f)</screenshot>\n"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
|
|
|
$SED -e "s|@PKG_ADDON_ID@|$PKG_ADDON_ID|g" \
|
|
|
|
-e "s|@ADDON_NAME@|$addon_name|g" \
|
|
|
|
-e "s|@ADDON_VERSION@|$addon_version|g" \
|
|
|
|
-e "s|@REQUIRES@|$requires|g" \
|
|
|
|
-e "s|@PKG_SHORTDESC@|$PKG_SHORTDESC|g" \
|
|
|
|
-e "s|@OS_VERSION@|$OS_VERSION|g" \
|
|
|
|
-e "s|@PKG_LONGDESC@|$PKG_LONGDESC|g" \
|
|
|
|
-e "s|@PKG_DISCLAIMER@|$PKG_DISCLAIMER|g" \
|
|
|
|
-e "s|@PROVIDER_NAME@|$provider_name|g" \
|
|
|
|
-e "s|@PKG_ADDON_PROVIDES@|$PKG_ADDON_PROVIDES|g" \
|
|
|
|
-e "s|@PKG_ADDON_SCREENSHOT@|$screenshots|g" \
|
|
|
|
-e "s|@PKG_ADDON_BROKEN@|$PKG_ADDON_BROKEN|g" \
|
|
|
|
-i "$addon_xml"
|
|
|
|
}
|
|
|
|
|
|
|
|
install_addon_files() {
|
|
|
|
install_addon_source "$1"
|
|
|
|
install_addon_images "$1"
|
|
|
|
create_addon_xml "$1"
|
|
|
|
}
|
|
|
|
|
2017-01-31 22:09:30 +00:00
|
|
|
tolower() {
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
echo "$@" | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ abcdefghijklmnopqrstuvwxyz
|
|
|
|
}
|
|
|
|
|
|
|
|
require_eglibc() {
|
|
|
|
if [ "$TARGET_LIBC" != eglibc ]; then
|
|
|
|
echo "$1 requires eglibc, aborting."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
add_user() {
|
|
|
|
# Usage: add_user "username" "password" "userid" "groupid" "description" "home" "shell"
|
|
|
|
mkdir -p ${INSTALL}/etc
|
|
|
|
touch ${INSTALL}/etc/passwd
|
2017-12-07 21:05:51 +00:00
|
|
|
if ! grep -q "^$1:" ${INSTALL}/etc/passwd; then
|
2011-08-08 11:22:17 +02:00
|
|
|
echo "$1:x:$3:$4:$5:$6:$7" >> ${INSTALL}/etc/passwd
|
|
|
|
fi
|
|
|
|
|
2017-12-07 21:40:45 +00:00
|
|
|
mkdir -p ${INSTALL}/usr/cache
|
|
|
|
touch ${INSTALL}/usr/cache/shadow
|
|
|
|
ln -sf /storage/.cache/shadow ${INSTALL}/etc/shadow
|
2017-09-11 20:19:21 -07:00
|
|
|
|
2011-08-08 11:22:17 +02:00
|
|
|
PASSWORD="$2"
|
|
|
|
if [ "$PASSWORD" = "x" ]; then
|
|
|
|
PASSWORD="*"
|
|
|
|
fi
|
2017-12-07 21:40:45 +00:00
|
|
|
if ! grep -q "^$1:" ${INSTALL}/usr/cache/shadow; then
|
|
|
|
echo "$1:$PASSWORD:::::::" >> ${INSTALL}/usr/cache/shadow
|
buildsystem: big rework & cleanup - PART-1: split functions from 'config/path' to an seperate file 'config/functions', rework and cleanup some build scripts, remove references to $TARGET_PLATFORM, add support for more then one downloadurl for $PKG_URL (partially done), remove support for: $PKG_DIR/arch, $PKG_DIR/platform, $PKG_DIR/url files, remove support for *.diff patches, create download-stampfiles in sources/$PKG_NAME, create md5 files after download, add support to download all sources at once with './scripts/get'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-11-19 22:01:08 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
add_group() {
|
|
|
|
# Usage: add_group "groupname" "groupid" ("members")
|
|
|
|
mkdir -p ${INSTALL}/etc
|
|
|
|
touch ${INSTALL}/etc/group
|
|
|
|
if [ -z "`grep "$1:" ${INSTALL}/etc/group`" ]; then
|
|
|
|
echo "$1:x:$2:$3" >> ${INSTALL}/etc/group
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2010-11-25 18:27:02 +01:00
|
|
|
do_autoreconf() {
|
2011-10-06 21:13:02 +02:00
|
|
|
export ACLOCAL_DIR=$SYSROOT_PREFIX/usr/share/aclocal
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/autoconf" ]; then
|
|
|
|
export AUTOCONF=$TOOLCHAIN/bin/autoconf
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/automake" ]; then
|
|
|
|
export AUTOMAKE=$TOOLCHAIN/bin/automake
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/autopoint" ]; then
|
|
|
|
export AUTOPOINT=$TOOLCHAIN/bin/autopoint
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/libtoolize" ]; then
|
|
|
|
export LIBTOOLIZE=$TOOLCHAIN/bin/libtoolize
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/intltoolize" ]; then
|
|
|
|
export INTLTOOLIZE=$TOOLCHAIN/bin/intltoolize
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/aclocal" ]; then
|
|
|
|
export ACLOCAL="$TOOLCHAIN/bin/aclocal -I $ACLOCAL_DIR"
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/autoheader" ]; then
|
|
|
|
export AUTOHEADER=$TOOLCHAIN/bin/autoheader
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/libtool" ]; then
|
|
|
|
export LIBTOOL=$TOOLCHAIN/bin/libtool
|
2011-10-06 21:13:02 +02:00
|
|
|
fi
|
|
|
|
|
2017-02-17 06:40:16 +00:00
|
|
|
if [ -e "$TOOLCHAIN/bin/autoreconf" -a -e "$INTLTOOLIZE" ]; then
|
2011-10-06 21:13:02 +02:00
|
|
|
mkdir -p $ACLOCAL_DIR
|
2017-10-15 01:50:19 +01:00
|
|
|
if [ -e "$LIBTOOLIZE" ]; then
|
|
|
|
export AUTORECONF="$TOOLCHAIN/bin/autoreconf --verbose --force --install -I $ACLOCAL_DIR"
|
|
|
|
else
|
|
|
|
export AUTORECONF="$TOOLCHAIN/bin/autoreconf --verbose --force -I $ACLOCAL_DIR"
|
|
|
|
fi
|
2011-10-06 21:13:02 +02:00
|
|
|
$AUTORECONF $@
|
2010-11-25 18:27:02 +01:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
strip_lto() {
|
|
|
|
# strip out LTO optimization from *FLAGS
|
2014-08-31 20:01:54 +03:00
|
|
|
if [ -n "$GCC_OPTIM_LTO" ] ; then
|
|
|
|
CFLAGS=`echo $CFLAGS | sed -e "s|$GCC_OPTIM_LTO||g"`
|
|
|
|
CXXFLAGS=`echo $CXXFLAGS | sed -e "s|$GCC_OPTIM_LTO||g"`
|
2016-07-23 09:28:46 +02:00
|
|
|
TARGET_CFLAGS=`echo $TARGET_CFLAGS | sed -e "s|$GCC_OPTIM_LTO||g"`
|
|
|
|
TARGET_CXXFLAGS=`echo $TARGET_CXXFLAGS | sed -e "s|$GCC_OPTIM_LTO||g"`
|
2014-08-31 20:01:54 +03:00
|
|
|
fi
|
|
|
|
if [ -n "$LD_OPTIM_LTO" ] ; then
|
|
|
|
LDFLAGS=`echo $LDFLAGS | sed -e "s|$LD_OPTIM_LTO||g"`
|
2016-07-23 09:28:46 +02:00
|
|
|
TARGET_LDFLAGS=`echo $TARGET_LDFLAGS | sed -e "s|$LD_OPTIM_LTO||g"`
|
2014-08-31 20:01:54 +03:00
|
|
|
fi
|
2010-11-25 18:27:02 +01:00
|
|
|
}
|
|
|
|
|
2013-05-12 14:10:00 +02:00
|
|
|
strip_gold() {
|
|
|
|
# strip out usage from GOLD linker
|
|
|
|
LDFLAGS=`echo $LDFLAGS | sed -e "s|-fuse-ld=gold||g"`
|
2016-07-23 13:27:34 +02:00
|
|
|
TARGET_LDFLAGS=`echo $TARGET_LDFLAGS | sed -e "s|-fuse-ld=gold||g"`
|
2013-05-12 14:10:00 +02:00
|
|
|
}
|
|
|
|
|
2011-11-08 20:29:34 +01:00
|
|
|
fix_module_depends() {
|
|
|
|
# modify .modinfo section in kernel module to depends on other required modules
|
|
|
|
local MODULE="$1"
|
|
|
|
local DEPENDS="$2"
|
2012-01-02 10:58:19 +01:00
|
|
|
local OLD_DEPENDS=""
|
2011-11-08 20:29:34 +01:00
|
|
|
cp ${MODULE} ${MODULE}_orig
|
|
|
|
$OBJDUMP -s -j .modinfo ${MODULE}_orig | awk 'BEGIN{v=0;} /Contents/ {v=1; next;} {if (v==1) print $0;}' >new.modinfo1
|
|
|
|
cat new.modinfo1 | cut -c7-41 | awk '{printf($0);}' | sed 's/ //g;s/../\\\x&/g;' >new.modinfo2
|
2012-01-02 10:58:19 +01:00
|
|
|
/bin/echo -ne `cat new.modinfo2` | tr '\000' '\n' >new.modinfo3
|
|
|
|
cat new.modinfo3 | awk '/^depends=/ {next;} {print $0;}' | tr '\n' '\000' >new.modinfo
|
|
|
|
OLD_DEPENDS=$(awk '{FS="="} /depends=/ {print $2}' new.modinfo3)
|
|
|
|
[ -n "$OLD_DEPENDS" ] && DEPENDS="$OLD_DEPENDS,$DEPENDS"
|
|
|
|
/bin/echo -ne "depends=$DEPENDS\0" >>new.modinfo
|
|
|
|
$OBJCOPY --remove-section=.modinfo --add-section=.modinfo=new.modinfo --set-section-flags .modinfo=contents,alloc,load,readonly,data ${MODULE}_orig ${MODULE}
|
2011-11-08 20:29:34 +01:00
|
|
|
rm new.modinfo*
|
|
|
|
}
|
2012-01-30 23:13:30 +01:00
|
|
|
|
2013-08-04 14:09:42 +02:00
|
|
|
# Usage: enable_service <unit> [target]
|
|
|
|
enable_service () {
|
|
|
|
local unit="$1"
|
2014-02-20 17:03:09 +01:00
|
|
|
local unit_dir="/usr/lib/systemd/system"
|
2013-08-04 14:09:42 +02:00
|
|
|
local target="$2"
|
|
|
|
local target_dir=$INSTALL
|
|
|
|
|
|
|
|
[ -f "$target_dir/$unit_dir/$unit" ] || exit 1
|
2016-02-19 18:01:24 -06:00
|
|
|
if [ -z "$target" ] ; then
|
|
|
|
for target in `grep '^WantedBy' $target_dir/$unit_dir/$unit | cut -f2 -d=` ; do
|
|
|
|
if [ -n "$target" ]; then
|
|
|
|
mkdir -p ${target_dir}/$unit_dir/${target}.wants
|
|
|
|
ln -sf ../${unit} ${target_dir}/$unit_dir/${target}.wants/
|
|
|
|
fi
|
|
|
|
done
|
2013-08-04 14:09:42 +02:00
|
|
|
fi
|
2016-12-27 21:40:37 +01:00
|
|
|
for target in `grep '^Alias' $target_dir/$unit_dir/$unit | cut -f2 -d=` ; do
|
|
|
|
if [ -n "$target" ]; then
|
|
|
|
ln -sf ${unit} ${target_dir}/$unit_dir/${target}
|
|
|
|
fi
|
|
|
|
done
|
2013-08-04 14:09:42 +02:00
|
|
|
}
|
|
|
|
|
2012-07-11 16:25:54 +02:00
|
|
|
check_path() {
|
|
|
|
dashes="==========================="
|
|
|
|
if [ "${PWD##/usr}" != "${PWD}" ]; then
|
|
|
|
check_pathmessage="$check_pathmessage\n $dashes$dashes$dashes"
|
|
|
|
check_pathmessage="$check_pathmessage\n ERROR: You try to build inside /usr"
|
|
|
|
check_pathmessage="$check_pathmessage\n $dashes$dashes$dashes"
|
|
|
|
check_pathmessage="$check_pathmessage\n This is not supported with our buildsystem."
|
|
|
|
check_pathmessage="$check_pathmessage\n Please use another dir (for example your \$HOME) to build $DISTRONAME"
|
|
|
|
|
|
|
|
echo -e $check_pathmessage
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
check_config() {
|
2012-01-30 22:06:36 +01:00
|
|
|
dashes="==========================="
|
2016-11-18 22:09:36 +01:00
|
|
|
if [ ! -d $PROJECT_DIR/$PROJECT ]; then
|
2012-01-30 23:13:30 +01:00
|
|
|
check_project="$check_project\n $dashes$dashes$dashes"
|
|
|
|
check_project="$check_project\n ERROR: Project not found, use a valid project or create a new config"
|
|
|
|
check_project="$check_project\n $dashes$dashes$dashes"
|
|
|
|
check_project="$check_project\n\n Valid projects:"
|
|
|
|
|
2016-11-18 22:09:36 +01:00
|
|
|
for projects in $PROJECT_DIR/*; do
|
2012-01-30 23:13:30 +01:00
|
|
|
check_project="$check_project\n - $(basename $projects)"
|
|
|
|
done
|
|
|
|
echo -e $check_project
|
|
|
|
exit 1
|
|
|
|
fi
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2016-10-15 21:53:49 +02:00
|
|
|
if [ \( -z "$DEVICE" -a -d "$PROJECT_DIR/$PROJECT/devices" \) -o \( -n "$DEVICE" -a ! -d "$PROJECT_DIR/$PROJECT/devices/$DEVICE" \) ]; then
|
|
|
|
check_device="$check_device\n $dashes$dashes$dashes"
|
|
|
|
check_device="$check_device\n ERROR: You need to specify a valid device for the $PROJECT project"
|
|
|
|
check_device="$check_device\n $dashes$dashes$dashes"
|
|
|
|
check_device="$check_device\n\n Valid devices for project: $PROJECT"
|
|
|
|
|
|
|
|
for device in $PROJECT_DIR/$PROJECT/devices/*; do
|
|
|
|
check_device="$check_device\n - $(basename $device)"
|
|
|
|
done
|
|
|
|
echo -e $check_device
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [ -d $PROJECT_DIR/$PROJECT/devices/$DEVICE/linux ]; then
|
|
|
|
linux_config_dir="$PROJECT_DIR/$PROJECT/devices/$DEVICE/linux"
|
|
|
|
else
|
|
|
|
linux_config_dir="$PROJECT_DIR/$PROJECT/linux"
|
|
|
|
fi
|
|
|
|
|
2016-11-24 09:36:06 +01:00
|
|
|
if [ ! -e $linux_config_dir/linux.${TARGET_PATCH_ARCH:-$TARGET_ARCH}.conf ] &&
|
|
|
|
! ls $linux_config_dir/*/linux.${TARGET_PATCH_ARCH:-$TARGET_ARCH}.conf &>/dev/null; then
|
2012-01-30 23:13:30 +01:00
|
|
|
check_arch="$check_arch\n $dashes$dashes$dashes"
|
|
|
|
check_arch="$check_arch\n ERROR: Architecture not found, use a valid Architecture"
|
|
|
|
check_arch="$check_arch\n for your project or create a new config"
|
|
|
|
check_arch="$check_arch\n $dashes$dashes$dashes"
|
|
|
|
check_arch="$check_arch\n\n Valid Architectures for your project: $PROJECT"
|
|
|
|
|
2016-10-15 21:53:49 +02:00
|
|
|
for arch in $linux_config_dir/*.conf $linux_config_dir/*/linux.$TARGET_ARCH.conf; do
|
2017-07-14 19:25:23 +01:00
|
|
|
[[ ${arch} =~ .*\*.* ]] && continue #ignore unexpanded wildcard
|
2012-02-02 14:27:19 +01:00
|
|
|
check_arch="$check_arch\n - $(basename $arch | cut -f2 -d".")"
|
2012-01-30 23:13:30 +01:00
|
|
|
done
|
|
|
|
echo -e $check_arch
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
}
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
show_config() {
|
2014-11-09 02:19:53 +01:00
|
|
|
# load graphic configuration
|
|
|
|
get_graphicdrivers
|
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
dashes="==========================="
|
|
|
|
config_message="$config_message\n $dashes$dashes$dashes"
|
2016-01-07 04:09:45 +01:00
|
|
|
config_message="$config_message\n Configuration for $DISTRONAME ($([ "$OFFICIAL" = "yes" ] && echo "official" || echo "community"))"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n $dashes$dashes$dashes"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
# Build options
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n\n Buildoptions:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - CPU (ARCH):\t\t\t\t $TARGET_CPU ($TARGET_ARCH)"
|
2012-03-08 08:11:31 +01:00
|
|
|
config_message="$config_message\n - FLOAT:\t\t\t\t $TARGET_FLOAT"
|
2012-02-02 14:27:19 +01:00
|
|
|
config_message="$config_message\n - FPU:\t\t\t\t\t $TARGET_FPU"
|
2012-07-29 15:19:25 +02:00
|
|
|
config_message="$config_message\n - SIMD support:\t\t\t $SIMD_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - LTO (Link Time Optimization) support: $LTO_SUPPORT"
|
2013-05-12 14:10:00 +02:00
|
|
|
config_message="$config_message\n - GOLD (Google Linker) Support:\t $GOLD_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - LLVM support:\t\t\t $LLVM_SUPPORT"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
# config_message="$config_message\n - CFLAGS:\t $TARGET_CFLAGS"
|
|
|
|
# config_message="$config_message\n - LDFLAGS:\t $TARGET_LDFLAGS"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
# Graphic configuration
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n\n Graphic configuration:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2015-01-27 22:32:54 +02:00
|
|
|
if [ "$DISPLAYSERVER" = "x11" ] ; then
|
|
|
|
config_message="$config_message\n - Xorg Graphic Drivers:\t\t $GRAPHIC_DRIVERS"
|
|
|
|
config_message="$config_message\n - XORG Composite support:\t\t $COMPOSITE_SUPPORT"
|
|
|
|
config_message="$config_message\n - WindowManager:\t\t\t $WINDOWMANAGER"
|
|
|
|
fi
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - OpenGL (GLX) support (provider):\t $OPENGL_SUPPORT ($OPENGL)"
|
|
|
|
config_message="$config_message\n - OpenGLES support (provider):\t\t $OPENGLES_SUPPORT ($OPENGLES)"
|
2014-11-09 13:25:27 +01:00
|
|
|
config_message="$config_message\n - uvesafb support:\t\t\t $UVESAFB_SUPPORT"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
# Hardware decoder support
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n\n Hardware decoder configuration:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
|
|
|
|
2014-10-21 14:01:41 +02:00
|
|
|
config_message="$config_message\n - Kodi Player driver:\t\t\t $KODIPLAYER_DRIVER"
|
2014-11-09 02:19:53 +01:00
|
|
|
config_message="$config_message\n - VAAPI Support:\t\t\t $VAAPI_SUPPORT"
|
|
|
|
config_message="$config_message\n - VDPAU Support:\t\t\t $VDPAU_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
|
|
|
|
# Input device configuration
|
|
|
|
|
|
|
|
config_message="$config_message\n\n Input device configuration:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
|
|
|
|
|
|
|
config_message="$config_message\n - Remote support:\t\t\t $REMOTE_SUPPORT"
|
|
|
|
config_message="$config_message\n - ATV Remote support:\t\t\t $ATVCLIENT_SUPPORT"
|
|
|
|
config_message="$config_message\n - CEC Adapter support:\t\t\t $CEC_SUPPORT"
|
2017-10-14 11:55:27 +02:00
|
|
|
config_message="$config_message\n - CEC Framework support:\t\t\t $CEC_FRAMEWORK_SUPPORT"
|
2014-10-21 14:01:41 +02:00
|
|
|
config_message="$config_message\n - Kodi Joystick support:\t\t $JOYSTICK_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
|
|
|
|
# Misc. hardware configuration
|
|
|
|
|
|
|
|
config_message="$config_message\n\n Misc. hardware configuration:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-02-02 19:41:50 +01:00
|
|
|
config_message="$config_message\n - ALSA support:\t\t\t $ALSA_SUPPORT"
|
2015-10-16 11:42:39 -07:00
|
|
|
config_message="$config_message\n - Pulseaudio support:\t\t\t $PULSEAUDIO_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - Bluetooth support:\t\t\t $BLUETOOTH_SUPPORT"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
for config_driver in $ADDITIONAL_DRIVERS; do
|
|
|
|
config_message="$config_message\n - Include driver:\t\t\t $config_driver"
|
|
|
|
done
|
|
|
|
|
|
|
|
for config_firmware in $FIRMWARE; do
|
|
|
|
config_message="$config_message\n - Include firmware:\t\t\t $config_firmware"
|
|
|
|
done
|
|
|
|
|
2014-11-09 13:25:27 +01:00
|
|
|
for config_modules in $INITRAMFS_MODULES; do
|
|
|
|
config_message="$config_message\n - Initramfs modules:\t\t\t $config_modules"
|
|
|
|
done
|
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
# Network service configuration
|
|
|
|
|
|
|
|
config_message="$config_message\n\n Network service configuration:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
|
|
|
|
|
|
|
config_message="$config_message\n - Avahi (Zeroconf) support:\t\t $AVAHI_DAEMON"
|
2014-11-09 12:44:01 +01:00
|
|
|
config_message="$config_message\n - NFS mounting support:\t\t $NFS_SUPPORT"
|
2014-11-09 12:55:21 +01:00
|
|
|
config_message="$config_message\n - SAMBA mounting support:\t\t $SAMBA_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - SAMBA server support:\t\t $SAMBA_SERVER"
|
|
|
|
config_message="$config_message\n - SFTP server support:\t\t\t $SFTP_SERVER"
|
2016-03-15 14:20:42 +04:00
|
|
|
config_message="$config_message\n - OpenVPN support:\t\t\t $OPENVPN_SUPPORT"
|
2012-01-30 23:13:30 +01:00
|
|
|
|
|
|
|
# OS configuration
|
|
|
|
|
|
|
|
config_message="$config_message\n\n OS configuration:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - OEM Support:\t\t\t\t $OEM_SUPPORT"
|
|
|
|
config_message="$config_message\n - Default ROOT Password:\t\t $ROOT_PASSWORD"
|
|
|
|
config_message="$config_message\n - Bootloader:\t\t\t\t $BOOTLOADER"
|
2015-01-12 19:44:08 +02:00
|
|
|
if [ "$BOOTLOADER" = "u-boot" ]; then
|
|
|
|
config_message="$config_message\n - U-Boot configuration:\t\t $UBOOT_CONFIG"
|
|
|
|
config_message="$config_message\n - U-Boot config file:\t\t $UBOOT_CONFIGFILE"
|
|
|
|
fi
|
2013-08-22 18:40:35 +02:00
|
|
|
config_message="$config_message\n - UDevil support:\t\t\t $UDEVIL"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - Installer support:\t\t\t $INSTALLER_SUPPORT"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
# Misc. Filesystems
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n\n Misc. Filesystems:"
|
|
|
|
config_message="$config_message\n $dashes$dashes"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2012-05-19 02:28:16 +02:00
|
|
|
config_message="$config_message\n - Swap Support:\t\t\t $SWAP_SUPPORT"
|
2015-01-12 19:44:08 +02:00
|
|
|
if [ "$SWAP_SUPPORT" = "yes" ]; then
|
|
|
|
config_message="$config_message\n - Swapfile default size:\t\t $SWAPFILESIZE"
|
|
|
|
fi
|
2012-07-04 19:35:05 +02:00
|
|
|
config_message="$config_message\n - exFAT Support (via Fuse):\t\t $EXFAT"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n - NTFS Support (via Fuse):\t\t $NTFS3G"
|
|
|
|
config_message="$config_message\n - Install HFS Tools:\t\t\t $HFSTOOLS"
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2014-10-21 14:01:41 +02:00
|
|
|
# Kodi configuration
|
2012-01-30 22:06:36 +01:00
|
|
|
|
2014-10-21 14:01:41 +02:00
|
|
|
config_message="$config_message\n\n Kodi configuration:"
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n $dashes$dashes"
|
|
|
|
|
2014-10-21 14:01:41 +02:00
|
|
|
config_message="$config_message\n - Kodi version:\t\t\t $MEDIACENTER"
|
2014-11-09 12:28:55 +01:00
|
|
|
config_message="$config_message\n - Kodi nonfree support:\t\t $KODI_NONFREE_SUPPORT"
|
2014-11-09 13:25:27 +01:00
|
|
|
config_message="$config_message\n - Kodi Blu-Ray support:\t\t $KODI_BLURAY_SUPPORT"
|
2015-01-12 19:44:08 +02:00
|
|
|
if [ "$KODI_BLURAY_SUPPORT" = "yes" ] ; then
|
|
|
|
config_message="$config_message\n - Bluray BD+ support:\t\t $BLURAY_BDPLUS_SUPPORT"
|
|
|
|
config_message="$config_message\n - Bluray AACS support:\t\t $BLURAY_AACS_SUPPORT"
|
|
|
|
fi
|
2014-11-09 12:29:44 +01:00
|
|
|
config_message="$config_message\n - Kodi DVDCSS support:\t\t\t $KODI_DVDCSS_SUPPORT"
|
2014-11-09 13:25:27 +01:00
|
|
|
config_message="$config_message\n - Kodi Airplay support:\t\t $KODI_AIRPLAY_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi Airtunes support:\t\t $KODI_AIRTUNES_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi NFS support:\t\t\t $KODI_NFS_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi MySQL support:\t\t\t $KODI_MYSQL_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi Optical Drive support:\t\t $KODI_OPTICAL_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi SAMBA client support:\t\t $KODI_SAMBA_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi SSH client support:\t\t $KODI_SSHLIB_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi UPNP support:\t\t\t $KODI_UPNP_SUPPORT"
|
|
|
|
config_message="$config_message\n - Kodi Webserver support:\t\t $KODI_WEBSERVER_SUPPORT"
|
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
|
|
|
|
for config_skin in $SKINS; do
|
|
|
|
config_message="$config_message\n - Include Skin:\t\t\t $config_skin"
|
|
|
|
done
|
|
|
|
|
|
|
|
config_message="$config_message\n - Default Skin:\t\t\t $SKIN_DEFAULT"
|
2014-10-18 22:49:40 +02:00
|
|
|
config_message="$config_message\n - Include extra fonts:\t\t\t $KODI_EXTRA_FONTS"
|
2012-01-30 23:13:30 +01:00
|
|
|
|
2017-10-08 20:56:58 +02:00
|
|
|
if [ "$(type -t show_distro_config)" = "function" ]; then
|
|
|
|
show_distro_config
|
|
|
|
fi
|
|
|
|
|
2012-01-30 23:13:30 +01:00
|
|
|
config_message="$config_message\n"
|
|
|
|
config_message="$config_message\n $dashes$dashes$dashes"
|
|
|
|
config_message="$config_message\n End Configuration for $DISTRONAME"
|
|
|
|
config_message="$config_message\n $dashes$dashes$dashes"
|
|
|
|
config_message="$config_message\n\n\n"
|
|
|
|
|
2015-01-12 19:44:08 +02:00
|
|
|
echo -e "$config_message"
|
2012-01-30 23:13:30 +01:00
|
|
|
}
|
2016-01-31 00:22:02 +01:00
|
|
|
|
|
|
|
# strip
|
|
|
|
debug_strip() {
|
|
|
|
if [ ! "$DEBUG" = yes ]; then
|
2017-02-09 00:03:44 +01:00
|
|
|
find $* -type f -executable | xargs $STRIP 2>/dev/null || :
|
2016-01-31 00:22:02 +01:00
|
|
|
fi
|
|
|
|
}
|
2016-04-12 13:06:08 +02:00
|
|
|
|
2017-08-11 01:57:26 +01:00
|
|
|
print_color() {
|
|
|
|
local clr_name="$1" clr_text="$2" clr_actual
|
|
|
|
|
|
|
|
if [ "$DISABLE_COLORS" == "yes" ]; then
|
2017-08-15 23:09:58 +01:00
|
|
|
[ $# -eq 2 ] && echo -en "${clr_text}"
|
2017-08-11 01:57:26 +01:00
|
|
|
return 0
|
|
|
|
fi
|
|
|
|
|
|
|
|
clr_actual="${!clr_name}"
|
|
|
|
|
|
|
|
# If $clr_name isn't another colour variable (boldgreen etc.), then
|
|
|
|
# assume it's an actual colour escape sequence.
|
|
|
|
#
|
|
|
|
# Otherwise if $clr_name isn't defined, or doesn't exist, then use
|
|
|
|
# standard colours.
|
|
|
|
#
|
2017-08-15 23:09:58 +01:00
|
|
|
if [[ -n "${clr_actual}" ]] && [[ -z "${!clr_actual}" ]]; then
|
2017-08-11 01:57:26 +01:00
|
|
|
clr_actual="${clr_name}"
|
2017-08-15 23:09:58 +01:00
|
|
|
elif [[ -z "${clr_actual}" ]] || [[ -z "${!clr_actual}" ]]; then
|
2017-08-11 01:57:26 +01:00
|
|
|
case "${clr_name}" in
|
|
|
|
CLR_ERROR) clr_actual="boldred";;
|
|
|
|
CLR_WARNING) clr_actual="boldred";;
|
|
|
|
CLR_WARNING_DIM) clr_actual="red";;
|
|
|
|
|
|
|
|
CLR_APPLY_PATCH) clr_actual="boldgreen";;
|
|
|
|
CLR_AUTORECONF) clr_actual="boldmagenta";;
|
|
|
|
CLR_BUILD) clr_actual="boldyellow";;
|
2017-10-27 14:07:29 +02:00
|
|
|
CLR_TOOLCHAIN) clr_actual="boldmagenta";;
|
2017-08-11 01:57:26 +01:00
|
|
|
CLR_CLEAN) clr_actual="boldred";;
|
|
|
|
CLR_FIXCONFIG) clr_actual="boldyellow";;
|
|
|
|
CLR_GET) clr_actual="boldcyan";;
|
|
|
|
CLR_INFO) clr_actual="boldgreen";;
|
|
|
|
CLR_INSTALL) clr_actual="boldgreen";;
|
|
|
|
CLR_PATCH_DESC) clr_actual="boldwhite";;
|
|
|
|
CLR_TARGET) clr_actual="boldwhite";;
|
|
|
|
CLR_UNPACK) clr_actual="boldcyan";;
|
|
|
|
|
|
|
|
CLR_ENDCOLOR) clr_actual="endcolor";;
|
|
|
|
|
|
|
|
*) clr_actual="endcolor";;
|
|
|
|
esac
|
|
|
|
fi
|
|
|
|
|
2017-08-15 23:09:58 +01:00
|
|
|
if [ $# -eq 2 ]; then
|
2017-08-11 01:57:26 +01:00
|
|
|
echo -en "${!clr_actual}${clr_text}${endcolor}"
|
|
|
|
else
|
|
|
|
echo -en "${!clr_actual}"
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
2016-04-12 13:06:08 +02:00
|
|
|
# Use distribution functions if any
|
|
|
|
if [ -f "distributions/$DISTRO/config/functions" ]; then
|
|
|
|
. distributions/$DISTRO/config/functions
|
|
|
|
fi
|