aboutsummaryrefslogtreecommitdiff
path: root/tools/buildsteps
diff options
context:
space:
mode:
authorLukas Rusak <lorusak@gmail.com>2018-09-17 21:26:50 -0700
committerLukas Rusak <lorusak@gmail.com>2019-06-03 08:37:40 -0700
commit750b8c4b2408938ff0d0b26e732de4e6c8c692b0 (patch)
treee7cd239f732ff89e80162121fc0a4a55ae73836d /tools/buildsteps
parent926d2e30c4e6dfad1730229b71e36b1b5e80dbe7 (diff)
Remove amlogic platform
Amlogic developers are encouraged to move to the GBM platform
Diffstat (limited to 'tools/buildsteps')
-rw-r--r--tools/buildsteps/linux-aml/configure-depends9
-rw-r--r--tools/buildsteps/linux-aml/configure-xbmc5
-rw-r--r--tools/buildsteps/linux-aml/make-binary-addons28
-rw-r--r--tools/buildsteps/linux-aml/make-depends8
-rw-r--r--tools/buildsteps/linux-aml/make-native-depends9
-rw-r--r--tools/buildsteps/linux-aml/make-xbmc5
-rw-r--r--tools/buildsteps/linux-aml/package5
-rw-r--r--tools/buildsteps/linux-aml/prepare-depends15
-rw-r--r--tools/buildsteps/linux-aml/prepare-xbmc9
9 files changed, 0 insertions, 93 deletions
diff --git a/tools/buildsteps/linux-aml/configure-depends b/tools/buildsteps/linux-aml/configure-depends
deleted file mode 100644
index d8b798148d..0000000000
--- a/tools/buildsteps/linux-aml/configure-depends
+++ /dev/null
@@ -1,9 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ]
-then
- cd $WORKSPACE/tools/depends;./configure \
- --with-toolchain=/usr --prefix=$XBMC_DEPENDS_ROOT --host=aarch64-linux-gnu --with-platform=aml --with-tarballs=$TARBALLS $DEBUG_SWITCH
-fi
diff --git a/tools/buildsteps/linux-aml/configure-xbmc b/tools/buildsteps/linux-aml/configure-xbmc
deleted file mode 100644
index fb1f8b5e2b..0000000000
--- a/tools/buildsteps/linux-aml/configure-xbmc
+++ /dev/null
@@ -1,5 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-make -C $WORKSPACE/tools/depends/target/cmakebuildsys
diff --git a/tools/buildsteps/linux-aml/make-binary-addons b/tools/buildsteps/linux-aml/make-binary-addons
deleted file mode 100644
index fe5b4f07ea..0000000000
--- a/tools/buildsteps/linux-aml/make-binary-addons
+++ /dev/null
@@ -1,28 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-. $WORKSPACE/tools/buildsteps/$XBMC_PLATFORM_DIR/make-native-depends
-
-#clear the build failed file
-rm -f $WORKSPACE/cmake/$FAILED_BUILD_FILENAME
-
-ALL_BINARY_ADDONS_BUILT="1"
-#only build binary addons when requested by env/jenkins
-if [ "$BUILD_BINARY_ADDONS" == "true" ]
-then
- for addon in $BINARY_ADDONS
- do
- echo "building $addon"
- git clean -xffd $WORKSPACE/$BINARY_ADDONS_ROOT/$addon
- cd $WORKSPACE/$BINARY_ADDONS_ROOT/$addon;make -j $BUILDTHREADS V=99 VERBOSE=1 || ALL_BINARY_ADDONS_BUILT="0"
- done
-fi
-
-if [ "$ALL_BINARY_ADDONS_BUILT" == "1" ]
-then
- tagSuccessFulBuild $WORKSPACE/cmake
-else
- #mark the build failure in the filesystem but leave jenkins running
- tagFailedBuild $WORKSPACE/cmake
-fi
diff --git a/tools/buildsteps/linux-aml/make-depends b/tools/buildsteps/linux-aml/make-depends
deleted file mode 100644
index 6e2cc29a16..0000000000
--- a/tools/buildsteps/linux-aml/make-depends
+++ /dev/null
@@ -1,8 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ]
-then
- cd $WORKSPACE/tools/depends;make -j $BUILDTHREADS || make && tagSuccessFulBuild $WORKSPACE/tools/depends
-fi
diff --git a/tools/buildsteps/linux-aml/make-native-depends b/tools/buildsteps/linux-aml/make-native-depends
deleted file mode 100644
index 0ed2d5db08..0000000000
--- a/tools/buildsteps/linux-aml/make-native-depends
+++ /dev/null
@@ -1,9 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ] && [ "$BINARY_ADDONS_CLEAN_NATIVETOOLS" != "0" ]
-then
- git clean -xffd $WORKSPACE/tools/depends/native
- cd $WORKSPACE/tools/depends/native;make -j $BUILDTHREADS && tagSuccessFulBuild $WORKSPACE/tools/depends
-fi
diff --git a/tools/buildsteps/linux-aml/make-xbmc b/tools/buildsteps/linux-aml/make-xbmc
deleted file mode 100644
index b0a7fc5ee3..0000000000
--- a/tools/buildsteps/linux-aml/make-xbmc
+++ /dev/null
@@ -1,5 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-cd $WORKSPACE/build;make -j$BUILDTHREADS || make
diff --git a/tools/buildsteps/linux-aml/package b/tools/buildsteps/linux-aml/package
deleted file mode 100644
index 17c6abf7ba..0000000000
--- a/tools/buildsteps/linux-aml/package
+++ /dev/null
@@ -1,5 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-#nothing for linux atm
diff --git a/tools/buildsteps/linux-aml/prepare-depends b/tools/buildsteps/linux-aml/prepare-depends
deleted file mode 100644
index 9daea8cf45..0000000000
--- a/tools/buildsteps/linux-aml/prepare-depends
+++ /dev/null
@@ -1,15 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-#clean without depends for skipping depends build if possible
-#also skip binary addons (pvr, audioencoder) as long as they are deployed in tree
-cd $WORKSPACE;git clean -xfd -e "cmake/.last_success_revision" -e "tools/depends" ${DEPLOYED_BINARY_ADDONS}
-
-# if depends path has changed - cleanout everything and do a full rebuild
-if [ "$(pathChanged $WORKSPACE/tools/depends)" == "1" ]
-then
- #clean up the rest too
- cd $WORKSPACE;git clean -xffd
- cd $WORKSPACE/tools/depends/;./bootstrap
-fi
diff --git a/tools/buildsteps/linux-aml/prepare-xbmc b/tools/buildsteps/linux-aml/prepare-xbmc
deleted file mode 100644
index 4ffc93bf6d..0000000000
--- a/tools/buildsteps/linux-aml/prepare-xbmc
+++ /dev/null
@@ -1,9 +0,0 @@
-WORKSPACE=${WORKSPACE:-$( cd $(dirname $0)/../../.. ; pwd -P )}
-XBMC_PLATFORM_DIR=linux-aml
-. $WORKSPACE/tools/buildsteps/defaultenv
-
-#build binary addons before building xbmc...
-#make sure that binary_addons don't clean the native tools
-#here (e.x. on release builds where pathChanged always returns 1
-BINARY_ADDONS_CLEAN_NATIVETOOLS="0"
-. $WORKSPACE/tools/buildsteps/$XBMC_PLATFORM_DIR/make-binary-addons