Displaying 5 results from an estimated 5 matches for "lensuffix".
2016 Feb 17
0
[PATCH supermin v2 1/4] init: Uncompress modules before adding them to the mini initrd.
...quot; xz"
-#endif
"\n");
read_cmdline ();
@@ -283,20 +269,6 @@ main ()
exit (EXIT_FAILURE);
}
-#if HAVE_LZMA_STATIC
-static int
-ends_with (const char *str, const char *suffix)
-{
- if (!str || !suffix)
- return 0;
- size_t lenstr = strlen (str);
- size_t lensuffix = strlen (suffix);
- if (lensuffix > lenstr)
- return 0;
- return strncmp (str + lenstr - lensuffix, suffix, lensuffix) == 0;
-}
-#endif
-
static void
insmod (const char *filename)
{
@@ -305,118 +277,6 @@ insmod (const char *filename)
if (verbose)
fprintf (stderr, "supermin...
2016 Feb 17
2
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
Allow an alternate libc, such as dietlibc, to be used for the init
binary in the supermin appliance.
Rich.
2013 Aug 19
5
[PATCH v2 0/3 supermin] URPMI & xz support.
Joseph,
Please try my modified versions of these patches. These are
compile-tested on Fedora and they don't break any existing
functionality, but I don't have either urpmi nor a statically-linked
xz so I cannot fully test them.
I have also fixed detection of zlib (2/3).
Rich.
2016 Feb 17
8
[PATCH supermin 0/2] Allow an alternate libc to be used for init.
v1 -> v2:
- If we split out the init program into a separate init/ directory,
that makes it much easier to build against an alternate libc.
I tried to build against uClibc, but uClibc requires an entire build
chain, which looked like it was going to be a massive ballache.
Rich.
2014 Feb 25
2
[PATCH supermin v4] Supermin 5 rewrite.
...);
- show_directory ("/lib");
- show_directory ("/lib64");
- fflush (stderr);
-
- exit (EXIT_FAILURE);
-}
-
-#if HAVE_LZMA_STATIC
-static int
-ends_with (const char *str, const char *suffix)
-{
- if (!str || !suffix)
- return 0;
- size_t lenstr = strlen (str);
- size_t lensuffix = strlen (suffix);
- if (lensuffix > lenstr)
- return 0;
- return strncmp (str + lenstr - lensuffix, suffix, lensuffix) == 0;
-}
-#endif
-
-static void
-insmod (const char *filename)
-{
- size_t size;
-
- if (verbose)
- fprintf (stderr, "supermin: internal insmod %s\n", file...