From 862bc821433b3b597e3c9d416f166551165806ce Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 10 Oct 2023 13:14:03 -0700 Subject: [PATCH 1/2] patches: Drop 5.1 drm/mediatek fixup patch It has been released as part of 5.10.198: https://git.kernel.org/stable/c/d0952ce316d133fffc7a632c7ce0ab254702070a Signed-off-by: Nathan Chancellor --- ...-backport-issue-in-mtk_drm_gem_prime.patch | 42 ------------------- patches/5.10/series | 1 - 2 files changed, 43 deletions(-) delete mode 100644 patches/5.10/0001-drm-mediatek-Fix-backport-issue-in-mtk_drm_gem_prime.patch delete mode 100644 patches/5.10/series diff --git a/patches/5.10/0001-drm-mediatek-Fix-backport-issue-in-mtk_drm_gem_prime.patch b/patches/5.10/0001-drm-mediatek-Fix-backport-issue-in-mtk_drm_gem_prime.patch deleted file mode 100644 index c3d19631..00000000 --- a/patches/5.10/0001-drm-mediatek-Fix-backport-issue-in-mtk_drm_gem_prime.patch +++ /dev/null @@ -1,42 +0,0 @@ -From 509ac9ae49796cdf94ecc565c66216d8200dea8b Mon Sep 17 00:00:00 2001 -From: Nathan Chancellor -Date: Fri, 22 Sep 2023 08:51:17 -0700 -Subject: [PATCH] drm/mediatek: Fix backport issue in mtk_drm_gem_prime_vmap() - -When building with clang: - - drivers/gpu/drm/mediatek/mtk_drm_gem.c:255:10: error: incompatible integer to pointer conversion returning 'int' from a function with result type 'void *' [-Wint-conversion] - 255 | return -ENOMEM; - | ^~~~~~~ - 1 error generated. - -GCC reports the same issue as a warning, rather than an error. - -Prior to commit 7e542ff8b463 ("drm/mediatek: Use struct dma_buf_map in -GEM vmap ops"), this function returned a pointer rather than an integer. -This function is indirectly called in drm_gem_vmap(), which treats NULL -as -ENOMEM through an error pointer. Return NULL in this block to -resolve the warning but keep the same end result. - -Fixes: 43f561e809aa ("drm/mediatek: Fix potential memory leak if vmap() fail") -Signed-off-by: Nathan Chancellor ---- - drivers/gpu/drm/mediatek/mtk_drm_gem.c | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/drivers/gpu/drm/mediatek/mtk_drm_gem.c b/drivers/gpu/drm/mediatek/mtk_drm_gem.c -index fe64bf2176f3..b20ea58907c2 100644 ---- a/drivers/gpu/drm/mediatek/mtk_drm_gem.c -+++ b/drivers/gpu/drm/mediatek/mtk_drm_gem.c -@@ -252,7 +252,7 @@ void *mtk_drm_gem_prime_vmap(struct drm_gem_object *obj) - if (!mtk_gem->kvaddr) { - kfree(sgt); - kfree(mtk_gem->pages); -- return -ENOMEM; -+ return NULL; - } - out: - kfree(sgt); --- -2.42.0.582.g8ccd20d70d-goog - diff --git a/patches/5.10/series b/patches/5.10/series deleted file mode 100644 index 6b55486f..00000000 --- a/patches/5.10/series +++ /dev/null @@ -1 +0,0 @@ -0001-drm-mediatek-Fix-backport-issue-in-mtk_drm_gem_prime.patch From 9b0e025fc9dbfa63a4f2331649862d58fe3cd5be Mon Sep 17 00:00:00 2001 From: Nathan Chancellor Date: Tue, 10 Oct 2023 13:17:55 -0700 Subject: [PATCH 2/2] ci: Regenerate GitHub Actions workflow and TuxSuite files Signed-off-by: Nathan Chancellor --- .github/workflows/5.10-clang-11.yml | 4 ++-- .github/workflows/5.10-clang-12.yml | 4 ++-- .github/workflows/5.10-clang-13.yml | 4 ++-- .github/workflows/5.10-clang-14.yml | 4 ++-- .github/workflows/5.10-clang-15.yml | 4 ++-- .github/workflows/5.10-clang-16.yml | 4 ++-- .github/workflows/5.10-clang-17.yml | 4 ++-- .github/workflows/5.10-clang-18.yml | 4 ++-- tuxsuite/5.10-clang-11.tux.yml | 3 +-- tuxsuite/5.10-clang-12.tux.yml | 3 +-- tuxsuite/5.10-clang-13.tux.yml | 3 +-- tuxsuite/5.10-clang-14.tux.yml | 3 +-- tuxsuite/5.10-clang-15.tux.yml | 3 +-- tuxsuite/5.10-clang-16.tux.yml | 3 +-- tuxsuite/5.10-clang-17.tux.yml | 3 +-- tuxsuite/5.10-clang-18.tux.yml | 3 +-- 16 files changed, 24 insertions(+), 32 deletions(-) diff --git a/.github/workflows/5.10-clang-11.yml b/.github/workflows/5.10-clang-11.yml index 3e8a886e..0bced508 100644 --- a/.github/workflows/5.10-clang-11.yml +++ b/.github/workflows/5.10-clang-11.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-11.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-11.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -315,7 +315,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-11.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-11.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-12.yml b/.github/workflows/5.10-clang-12.yml index 127dcfc1..b3ea1dfa 100644 --- a/.github/workflows/5.10-clang-12.yml +++ b/.github/workflows/5.10-clang-12.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-12.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-12.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -363,7 +363,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-12.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-12.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-13.yml b/.github/workflows/5.10-clang-13.yml index 4fdd050c..5b12a0cb 100644 --- a/.github/workflows/5.10-clang-13.yml +++ b/.github/workflows/5.10-clang-13.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-13.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-13.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -411,7 +411,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-13.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-13.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-14.yml b/.github/workflows/5.10-clang-14.yml index 79d819f0..b79cda59 100644 --- a/.github/workflows/5.10-clang-14.yml +++ b/.github/workflows/5.10-clang-14.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-14.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-14.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -411,7 +411,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-14.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-14.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-15.yml b/.github/workflows/5.10-clang-15.yml index 4d3aa4d6..dc3a1044 100644 --- a/.github/workflows/5.10-clang-15.yml +++ b/.github/workflows/5.10-clang-15.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-15.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-15.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -411,7 +411,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-15.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-15.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-16.yml b/.github/workflows/5.10-clang-16.yml index 27ac9047..81dc4b58 100644 --- a/.github/workflows/5.10-clang-16.yml +++ b/.github/workflows/5.10-clang-16.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-16.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-16.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -411,7 +411,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-16.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-16.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-17.yml b/.github/workflows/5.10-clang-17.yml index 53c49231..dde6a4bd 100644 --- a/.github/workflows/5.10-clang-17.yml +++ b/.github/workflows/5.10-clang-17.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-17.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-17.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -411,7 +411,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-17.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-17.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/.github/workflows/5.10-clang-18.yml b/.github/workflows/5.10-clang-18.yml index 6b328959..885a4e6d 100644 --- a/.github/workflows/5.10-clang-18.yml +++ b/.github/workflows/5.10-clang-18.yml @@ -26,7 +26,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-18.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-18.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: @@ -411,7 +411,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: tuxsuite - run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-18.tux.yml || true + run: tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name allconfigs --json-out builds.json tuxsuite/5.10-clang-18.tux.yml || true - name: save builds.json uses: actions/upload-artifact@v3 with: diff --git a/tuxsuite/5.10-clang-11.tux.yml b/tuxsuite/5.10-clang-11.tux.yml index d153d438..2b199c96 100644 --- a/tuxsuite/5.10-clang-11.tux.yml +++ b/tuxsuite/5.10-clang-11.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-11.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-11.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-11.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-12.tux.yml b/tuxsuite/5.10-clang-12.tux.yml index 28cfc572..cd4bb9b1 100644 --- a/tuxsuite/5.10-clang-12.tux.yml +++ b/tuxsuite/5.10-clang-12.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-12.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-12.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-12.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-13.tux.yml b/tuxsuite/5.10-clang-13.tux.yml index 3cf65d23..2d47d5b6 100644 --- a/tuxsuite/5.10-clang-13.tux.yml +++ b/tuxsuite/5.10-clang-13.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-13.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-13.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-13.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-14.tux.yml b/tuxsuite/5.10-clang-14.tux.yml index bcf6ef4f..01d37958 100644 --- a/tuxsuite/5.10-clang-14.tux.yml +++ b/tuxsuite/5.10-clang-14.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-14.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-14.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-14.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-15.tux.yml b/tuxsuite/5.10-clang-15.tux.yml index 487926ac..ff8d34dc 100644 --- a/tuxsuite/5.10-clang-15.tux.yml +++ b/tuxsuite/5.10-clang-15.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-15.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-15.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-15.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-16.tux.yml b/tuxsuite/5.10-clang-16.tux.yml index 1099abf8..6a081123 100644 --- a/tuxsuite/5.10-clang-16.tux.yml +++ b/tuxsuite/5.10-clang-16.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-16.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-16.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-16.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-17.tux.yml b/tuxsuite/5.10-clang-17.tux.yml index 7e880bbe..02cdaa46 100644 --- a/tuxsuite/5.10-clang-17.tux.yml +++ b/tuxsuite/5.10-clang-17.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-17.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-17.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-17.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y diff --git a/tuxsuite/5.10-clang-18.tux.yml b/tuxsuite/5.10-clang-18.tux.yml index 1bf12b1e..37a55a1e 100644 --- a/tuxsuite/5.10-clang-18.tux.yml +++ b/tuxsuite/5.10-clang-18.tux.yml @@ -2,10 +2,9 @@ # This file has been autogenerated by invoking: # $ ./generate_tuxsuite.py 5.10 # Invoke tuxsuite via: -# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json --patch-series patches/5.10 tuxsuite/5.10-clang-18.tux.yml +# $ tuxsuite plan --git-repo https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git --git-ref linux-5.10.y --job-name defconfigs --json-out builds.json tuxsuite/5.10-clang-18.tux.yml # Invoke locally via: # $ git clone -b linux-5.10.y --depth=1 https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git linux -# $ git -C linux quiltimport --patches ../patches/5.10 # $ scripts/build-local.py -C linux -f tuxsuite/5.10-clang-18.tux.yml -j defconfigs version: 1 name: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git at linux-5.10.y