Displaying 7 results from an estimated 7 matches for "libcrc".
Did you mean:
libclc
2020 Apr 01
2
[PATCH] supermin: Fix IBM Virtual SCSI driver name
...7.
---
src/format_ext2_initrd.ml | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/format_ext2_initrd.ml b/src/format_ext2_initrd.ml
index b67bb55..38977e6 100644
--- a/src/format_ext2_initrd.ml
+++ b/src/format_ext2_initrd.ml
@@ -44,6 +44,7 @@ let kmods = [
"crc*.ko*";
"libcrc*.ko*";
"ibmvscsic.ko*";
+ "ibmvscsi.ko*";
"libnvdimm.ko*";
"nd_pmem.ko*";
"nd_btt.ko*";
--
2.21.1
2016 Mar 17
9
[PATCH supermin 0/5] Make supermin mini-initrd quieter and faster.
Various patches to make supermin quieter. By outputting fewer
messages on the fast path, we use the slow emulated UART less, and
this improves boot times.
Also remove some kernel modules that we cannot or should not be using,
which also improves boot times.
Rich.
2016 Mar 17
0
[PATCH supermin 5/5] init: Drop SCSI modules.
...[
"virtio*.ko*";
"libata*.ko*";
"piix*.ko*";
- "scsi_transport_spi.ko*";
- "scsi_mod.ko*";
- "sd_mod.ko*";
- "sym53c8xx.ko*";
"ata_piix.ko*";
- "sr_mod.ko*";
"crc*.ko*";
"libcrc*.ko*";
"ibmvscsic.ko*";
--
2.5.0
2020 Apr 01
0
Re: [PATCH] supermin: Fix IBM Virtual SCSI driver name
...1 file changed, 1 insertion(+)
>
> diff --git a/src/format_ext2_initrd.ml b/src/format_ext2_initrd.ml
> index b67bb55..38977e6 100644
> --- a/src/format_ext2_initrd.ml
> +++ b/src/format_ext2_initrd.ml
> @@ -44,6 +44,7 @@ let kmods = [
> "crc*.ko*";
> "libcrc*.ko*";
> "ibmvscsic.ko*";
> + "ibmvscsi.ko*";
> "libnvdimm.ko*";
> "nd_pmem.ko*";
> "nd_btt.ko*";
We could have used a wildcard here, but this works too. Anyway
I have pushed it upstream, thanks.
Rich.
--
Richar...
2010 Apr 22
1
[PATCH] Whitelist the loop kernel module
...appliance/kmod.whitelist.in | 2 ++
1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/appliance/kmod.whitelist.in b/appliance/kmod.whitelist.in
index 814b9d0..96fc4c3 100644
--- a/appliance/kmod.whitelist.in
+++ b/appliance/kmod.whitelist.in
@@ -62,3 +62,5 @@ reiserfs.ko
crc*.ko
libcrc*.ko
+
+loop.ko
--
1.6.6.1
2016 May 16
3
[PATCH supermin] Add support for a DAX root filesystem.
DAX is explained in detail here:
https://lwn.net/Articles/610174/
This patch adds support to supermin for using a DAX root filesystem.
The corresponding libguestfs patches will be posted shortly once I've
tested them a bit more.
This requires qemu >= 2.6.
Unfortunately it's not really a win for a few reasons:
- Requires enabling ACPI, which slows everything down by hundreds of
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...;,
- "libata*.ko*",
- "piix*.ko*",
- "scsi_transport_spi.ko*",
- "scsi_mod.ko*",
- "sd_mod.ko*",
- "sym53c8xx.ko*",
- "ata_piix.ko*",
- "sr_mod.ko*",
- "mbcache.ko*",
- "crc*.ko*",
- "libcrc*.ko*",
- "ibmvscsic.ko*",
- "megaraid*.ko*",
- NULL
-};
-
-/* Module dependencies. */
-struct module {
- struct module *next;
- struct moddep *deps;
- char *name;
- int visited;
-};
-struct module *modules = NULL;
-
-struct moddep {
- struct moddep *next;
- struct...