summaryrefslogtreecommitdiff
path: root/pcr/crosstool-ng-git/ctng-libre.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2020-06-19 19:45:01 -0400
committerDavid P <megver83@parabola.nu>2020-06-22 10:42:44 -0400
commita09b34620af4083210a7d29adeea9c8aadb7f04b (patch)
treea71b897de2141fc0fc308600c98d28f818c4cede /pcr/crosstool-ng-git/ctng-libre.patch
parentea8f6b147f4e43a5532157c06aef46f94eb32679 (diff)
downloadabslibre-a09b34620af4083210a7d29adeea9c8aadb7f04b.tar.gz
abslibre-a09b34620af4083210a7d29adeea9c8aadb7f04b.tar.bz2
abslibre-a09b34620af4083210a7d29adeea9c8aadb7f04b.zip
remove pcr/crosstool-ng-git
the non-git version is more up to date, we don't need this one Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'pcr/crosstool-ng-git/ctng-libre.patch')
-rw-r--r--pcr/crosstool-ng-git/ctng-libre.patch41
1 files changed, 0 insertions, 41 deletions
diff --git a/pcr/crosstool-ng-git/ctng-libre.patch b/pcr/crosstool-ng-git/ctng-libre.patch
deleted file mode 100644
index f0e92ecad..000000000
--- a/pcr/crosstool-ng-git/ctng-libre.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-diff --git a/scripts/build/kernel/linux.sh b/scripts/build/kernel/linux.sh
-index 49fe613..957f369 100644
---- a/scripts/build/kernel/linux.sh
-+++ b/scripts/build/kernel/linux.sh
-@@ -44,13 +44,8 @@ do_kernel_get() {
- k_ver="${CT_KERNEL_VERSION}"
- ;;
- esac
-- case "${CT_KERNEL_VERSION}" in
-- 2.6.*) rel_dir=v2.6;;
-- 3.*) rel_dir=v3.x;;
-- 4.*) rel_dir=v4.x;;
-- esac
-- korg_base="http://www.kernel.org/pub/linux/kernel/${rel_dir}"
-- CT_GetFile "linux-${CT_KERNEL_VERSION}" \
-+ korg_base="http://linux-libre.fsfla.org/pub/linux-libre/releases/${CT_KERNEL_VERSION}-gnu"
-+ CT_GetFile "linux-libre-${CT_KERNEL_VERSION}-gnu" \
- "${korg_base}" \
- "${korg_base}/longterm/v${k_ver}" \
- "${korg_base}/longterm"
-@@ -66,13 +61,18 @@ do_kernel_extract() {
-
- # If using a custom directory location, nothing to do
- if [ "${CT_KERNEL_LINUX_CUSTOM}" = "y" \
-- -a -d "${CT_SRC_DIR}/linux-${CT_KERNEL_VERSION}" ]; then
-+ -a -d "${CT_SRC_DIR}/linux-libre-${CT_KERNEL_VERSION}-gnu" ]; then
- return 0
- fi
-
- # Otherwise, we're using either a mainstream tarball, or a custom
- # tarball; in either case, we need to extract
-- CT_Extract "linux-${CT_KERNEL_VERSION}"
-+ CT_Extract "linux-libre-${CT_KERNEL_VERSION}-gnu"
-+
-+ # The following IF statement is a hack, it renames the source directory so that CT_Patch will work on the libre kernel.
-+ if [ -d "${CT_SRC_DIR}/linux-libre-${CT_KERNEL_VERSION}-gnu" ]; then
-+ mv "${CT_SRC_DIR}/linux-libre-${CT_KERNEL_VERSION}-gnu" "${CT_SRC_DIR}/linux-${CT_KERNEL_VERSION}"
-+ fi
-
- # If using a custom tarball, no need to patch
- if [ "${CT_KERNEL_LINUX_CUSTOM}" = "y" ]; then