Skip to content
Snippets Groups Projects
Unverified Commit c30dd812 authored by Oliver Smith's avatar Oliver Smith
Browse files

linux-postmarketos-exynos4: add V=1 to build (MR 3914)

Fix the build running silently, and running into the timeout for not
printing anything for a long time.

Related: https://builds.sr.ht/~postmarketos/job/948827#task-pmbootstrap_build-462
parent 264d171a
No related branches found
No related tags found
No related merge requests found
Pipeline #204599 passed
......@@ -4,7 +4,7 @@
pkgname=linux-postmarketos-exynos4
pkgver=6.1
pkgrel=1
pkgrel=2
pkgdesc="Mainline kernel fork for Samsung Exynos4 devices"
arch="armv7"
_carch="arm"
......@@ -71,8 +71,17 @@ prepare() {
build() {
unset LDFLAGS
# V=1: otherwise it compiles a lot of files silently
# https://builds.sr.ht/~postmarketos/job/948827#task-pmbootstrap_build-463
# pmbootstrap will kill the build for not printing any output after
# 15 minutes, as usually this means the build is in an infinite loop
# somewhere. Looks like the silent mode in linux' Makefile was
# refactored recently and this is a bug? Can be removed again after
# upgrading the kernel again and ensuring that it doesn't do a silent
# build anymore.
make ARCH="$_carch" CC="${CC:-gcc}" KCFLAGS="-Wno-array-bounds" \
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS"
KBUILD_BUILD_VERSION="$((pkgrel + 1 ))-postmarketOS" \
V=1
}
package() {
......
  • Administrator @root

    mentioned in commit 1411419e

    By Oliver Smith on 2023-04-07T10:53:13

    · Imported

    mentioned in commit 1411419e

    By Oliver Smith on 2023-04-07T10:53:13

    Edited by Ghost User
    Toggle commit list
  • Administrator @root

    mentioned in commit 45a1bc66

    By Oliver Smith on 2023-04-10T14:53:52

    · Imported

    mentioned in commit 45a1bc66

    By Oliver Smith on 2023-04-10T14:53:52

    Edited by Ghost User
    Toggle commit list
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment