Package Base Details: linux-next-git

Git Clone URL: https://aur.archlinux.org/linux-next-git.git (read-only, click to copy)
Submitter: Nefelim4ag
Maintainer: sir_lucjan (ptr1337)
Last Packager: sir_lucjan
Votes: 17
Popularity: 0.004635
First Submitted: 2014-10-12 19:04 (UTC)
Last Updated: 2024-05-02 18:42 (UTC)

Latest Comments

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

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.

fpqc commented on 2016-11-28 00:59 (UTC) (edited on 2016-11-28 01:08 (UTC) by fpqc)

@Nefelim4ag It looks like you forgot to include 99-linux.hook as a sourcefile. Also, the patch of printk.h is failing.

Nefelim4ag commented on 2016-11-27 14:07 (UTC)

@fpqc, done

fpqc commented on 2016-11-27 04:53 (UTC)

Hiya, you need to add the new libalpm hook for this kernel.

desaparecido commented on 2016-05-17 10:56 (UTC)

hi, after a successfully build when I install it I have this issue when kernel image is created: $ sudo mkinitcpio -p linux-next-git ==> Building image from preset: /etc/mkinitcpio.d/linux-next-git.preset: 'default' -> -k /boot/vmlinuz-linux-next-git -c /etc/mkinitcpio.conf -g /boot/initramfs-linux-next-git.img ==> Starting build: 4.6.0-next-20160517-1136-ARCH -> Running build hook: [consolefont] -> Running build hook: [base] -> Running build hook: [udev] -> Running build hook: [autodetect] -> Running build hook: [modconf] -> Running build hook: [block] -> Running build hook: [filesystems] -> Running build hook: [keyboard] -> Running build hook: [fsck] ==> WARNING: No modules were added to the image. This is probably not what you want. ==> Creating gzip-compressed initcpio image: /boot/initramfs-linux-next-git.img ==> Image generation successful the important line is this: "==> WARNING: No modules were added to the image. This is probably not what you want." I have this problem only with this package, when I install linux, o another kernel from repos all works fine, so is not mkinitcpio, filesystem or kmod packaged than are corrupted or missed (in some arch forum usually the solution was to reinstall that packages, but in my case is not that problem) so I don't know if is a problem in the PKGBUILD or in my system, thanks for any tips ;-)