Package Details: linux-next-git 20250123.r0.g853d1f41ba73-1

Git Clone URL: https://aur.archlinux.org/linux-next-git.git (read-only, click to copy)
Package Base: linux-next-git
Description: The Linux NEXT kernel and modules
Upstream URL: http://www.kernel.org/
Licenses: GPL-2.0-only
Provides: KSMBD-MODULE, VIRTUALBOX-GUEST-MODULES, WIREGUARD-MODULE
Submitter: Nefelim4ag
Maintainer: sir_lucjan (ptr1337)
Last Packager: sir_lucjan
Votes: 18
Popularity: 0.24
First Submitted: 2014-10-12 19:04 (UTC)
Last Updated: 2025-01-23 07:49 (UTC)

Dependencies (16)

Required by (8)

Sources (4)

Latest Comments

« First ‹ Previous 1 .. 4 5 6 7 8 9 10 11 12 13 Next › Last »

Raansu commented on 2018-05-29 09:24 (UTC)

Will this package be updated to include the below fixes?

jwhickman commented on 2017-10-28 21:49 (UTC)

The 'makedepends' for 'xmlto' 'docbook-xsl' can be removed. I modified the dvb config (since I disabled that subsystem) to add an if statement: ---------------- msg "Checking for DVB config to add to kernel headers" if [ -d include/config/dvb/ ]; then msg "DVB config found, adding to kernel headers" 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

sevkard commented on 2017-09-06 05:24 (UTC) (edited on 2017-09-06 05:27 (UTC) by sevkard)

Previous comments have been helpful in building this package successfully. In case anyone needs a how-to: a)Open the PKGBUILD in your preferred editor. b)Remove change-default-console-loglevel.patch from "source=" and its corresponding "md5sum=" entry. This patch is redundant as you now get to specify a loglevel during config. c)Comment out the "add docbook makefile" part (lines 230-231), otherwise the build will fail at the end because the file is no longer in the tree. I hope this helps you save time and avoid frustration.

parkerlreed commented on 2017-01-20 19:43 (UTC)

It prints a lot of errors because of the redefined DEFAULT_CONSOLE_LOGLEVEL (They actually fixed it upstream it seems) # set DEFAULT_CONSOLE_LOGLEVEL to 4 (same value as the 'quiet' kernel param) # remove this when a Kconfig knob is made available by upstream /* * Default used to be hard-coded at 7, we're now allowing it to be set from * kernel config. */ #define CONSOLE_LOGLEVEL_DEFAULT CONFIG_CONSOLE_LOGLEVEL_DEFAULT extern int console_printk[]; #define console_loglevel (console_printk[0]) #define default_message_loglevel (console_printk[1]) #define minimum_console_loglevel (console_printk[2]) #define default_console_loglevel (console_printk[3]) So the K config exists and this patch is no longer needed.

dequis commented on 2017-01-19 19:25 (UTC)

==> Starting prepare()... patching file include/linux/printk.h patch: **** malformed patch at line 10: Looks like the last revision of this package removed one line from the patch file without updating the @@ part.

Nefelim4ag commented on 2016-12-01 20:37 (UTC) (edited on 2016-12-01 20:37 (UTC) by Nefelim4ag)

@fpqc, i add you maintainer rights to the package %) And i did try modify patch by your suggestion.

fpqc commented on 2016-11-30 05:58 (UTC) (edited on 2016-11-30 05:59 (UTC) by fpqc)

diff --git a/include/linux/printk.h b/include/linux/printk.h index 3472cc6..4b4986e 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h @@ -50,6 +50,7 @@ static inline const char *printk_skip_headers(const char *buffer) #define CONSOLE_LOGLEVEL_SILENT 0 /* Mum's the word */ #define CONSOLE_LOGLEVEL_MIN 1 /* Minimum loglevel we let people use */ #define CONSOLE_LOGLEVEL_QUIET 4 /* Shhh ..., when booted with "quiet" */ +#define CONSOLE_LOGLEVEL_DEFAULT 4 /* Arch modified loglevel */ #define CONSOLE_LOGLEVEL_DEBUG 10 /* issue debug messages */ #define CONSOLE_LOGLEVEL_MOTORMOUTH 15 /* You can't shut this one up */ That's my modified change-default-console-loglevel. It builds with this but spits out tons of error messages you have to edit the patch to move it somewhere else.

fpqc commented on 2016-11-30 05:41 (UTC)

@nefelim4ag you also need to fix the change-default-console-loglevel patch. It doesn't work right now.

Nefelim4ag commented on 2016-11-29 11:35 (UTC)

@fpqc, you right, i forget to add file to source array.