From 98291ccaed479d84beeaac6ae8ebe8a4e6c82d08 Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Thu, 16 Dec 2010 13:44:14 +0100 Subject: [PATCH] config/path: split variables for source dirs in a own config file Signed-off-by: Stephan Raue --- config/path | 3 ++- config/sources | 5 +++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 config/sources diff --git a/config/path b/config/path index acfd2f6757..02eec0a619 100644 --- a/config/path +++ b/config/path @@ -36,7 +36,6 @@ fi HOST_NAME=`$SCRIPTS/configtools/config.guess` TARGET_NAME=$TARGET_FAMILY-openelec-linux-gnu -OPENELEC_SRC=http://sources.openelec.tv/src/$OPENELEC_VERSION BUILD=$BUILD_BASE.$DISTRONAME-$PROJECT.$TARGET_ARCH.$OPENELEC_VERSION TARGET_IMG=$ROOT/$TARGET TARGET_ADDONS="$TARGET_IMG/$ADDONS/$ADDON_PATH" @@ -52,6 +51,8 @@ TARGET_PREFIX=$ROOT/$TOOLCHAIN/bin/$TARGET_NAME- FAKEROOT_SCRIPT=$ROOT/.fakeroot.$PROJECT.$TARGET_ARCH +. config/sources + if [ "$OPENELEC_VERSION" = devel ]; then DEBUG=no DEVTOOLS=yes diff --git a/config/sources b/config/sources new file mode 100644 index 0000000000..37ebea1958 --- /dev/null +++ b/config/sources @@ -0,0 +1,5 @@ +# OpenELEC Download site + OPENELEC_SRC="http://sources.openelec.tv/src/$OPENELEC_VERSION" + +# Sourceforge download site + SOURCEFORGE_SRC="http://prdownloads.sourceforge.net" \ No newline at end of file