Package Details: linux-ck 6.12.1-1

Git Clone URL: https://aur.archlinux.org/linux-ck.git (read-only, click to copy)
Package Base: linux-ck
Description: The Linux kernel and modules with ck's hrtimer patches
Upstream URL: https://wiki.archlinux.org/index.php/Linux-ck
Licenses: GPL-2.0-only
Provides: KSMBD-MODULE, VIRTUALBOX-GUEST-MODULES, WIREGUARD-MODULE
Replaces: virtualbox-guest-modules-arch, wireguard-arch
Submitter: graysky
Maintainer: graysky
Last Packager: graysky
Votes: 459
Popularity: 0.24
First Submitted: 2011-07-22 14:51 (UTC)
Last Updated: 2024-11-23 13:58 (UTC)

Dependencies (14)

Required by (7)

Sources (6)

Latest Comments

« First ‹ Previous 1 .. 176 177 178 179 180 181 182 183 184 185 186 .. 308 Next › Last »

janck commented on 2014-05-29 09:39 (UTC)

After removing all dvb shit from kernel config, include/config/dvb does not exist in the source tree anymore, and consequently the build fails at line 432. This fixes my particular problem (have been testing that it works this time): if [ -d include/config/dvb/ ]; then mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/" cp include/config/dvb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/" fi

clfarron4 commented on 2014-05-29 09:29 (UTC)

Some has suggested this in the BBS, to fix something to do with SMP: https://bbs.archlinux.org/viewtopic.php?pid=1420124#p1420124

graysky commented on 2014-05-28 22:22 (UTC)

@janck - But again, the PKGBUILD as-is should accomplish this: mkdir -p "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/" cp include/config/dvb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/"

janck commented on 2014-05-28 22:13 (UTC)

Found a fix from a previous build. # this line will allow the package to build if a user disables the dvb shit find include/config/dvb -name '*.h' -exec cp {} "${pkgdir}/usr/src/linux-${_kernver}/include/config/dvb/" \;

graysky commented on 2014-05-28 18:55 (UTC)

@janck - Guess I'm confused... your statement says if include/config/dvb exists copy include/config/dvb/*.h to "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/" The current PKGBUILD just does that, first making the destination on line 432 and doing the same copy on line 433. What am I missing?

janck commented on 2014-05-28 04:58 (UTC)

sorry to confuse. What needs to be done is to repalce line 432 with this one: [[ -e include/config/dvb/ ]] && cp include/config/dvb/*.h "${pkgdir}/usr/lib/modules/${_kernver}/build/include/config/dvb/"

graysky commented on 2014-05-27 21:40 (UTC)

Yes, those lines are in the PKGBUILD. I am confused.

janck commented on 2014-05-27 20:52 (UTC)

yes... did you check?

graysky commented on 2014-05-27 20:03 (UTC)

@janck - That is contained in this PKGBUILD, no?