Upstream status: Taken from Debian/upsream. https://salsa.debian.org/hurd-team/gnumach/-/blob/master/debian/patches/90_noide.patch This supports using `noide' on the gnumach command line, disabling gnumach IDE support and thus forcing use of rumdisk. --- linux/dev/glue/block.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) --- a/linux/dev/glue/block.c +++ b/linux/dev/glue/block.c @@ -207,7 +207,10 @@ int blk_dev_init () { #ifdef CONFIG_BLK_DEV_IDE - ide_init (); + extern char *kernel_cmdline; + if (strncmp(kernel_cmdline, "noide", 5) && + !strstr(kernel_cmdline, " noide")) + ide_init (); #endif #ifdef CONFIG_BLK_DEV_FD floppy_init (); ='hidden' name='id' value='7d26b017d89293822e30e899753fb3df4979c57f'/> Wojtek's customized Guix
aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/patches/pjproject-fix-pkg-config-ldflags.patch
AgeCommit message (Expand)Author
2020-08-05gnu: pjproject: Update the pkg-config patch....* gnu/packages/patches/pjproject-fix-pkg-config-ldflags.patch: Update patch. Maxim Cournoyer
2020-08-03gnu: pjproject: Fix problem in pkg-config file....* gnu/packages/patches/pjproject-correct-the-cflags-field.patch: Add patch. * gnu/packages/patches/pjproject-fix-pkg-config-ldflags.patch: Likewise. * gnu/local.mk (dist_patch_DATA): Register the new patches. * gnu/packages/telephony.scm (pjproject): Use them. * gnu/packages/jami.scm (pjproject-jami): Remove a patch from pjproject-jami that is already applied against pjproject. Maxim Cournoyer