search for: lib_module

Displaying 5 results from an estimated 5 matches for "lib_module".

Did you mean: ldb_module
2006 Sep 07
2
Plugins for Dovecot at FreeBSD 6.0
Hi I met problem developing plug-in under FreeBSD 6.1. First I tried to use internal plugins like quota and acl but I got: IMAP(xxx): module /usr/local/lib/dovecot/imap/lib01_acl_plugin.so: dlsym(acl_plugin_init) failed: Shared object "nss_dns.so.1" not found, required by "imap" This library doesn't exist on FreeBSD 6.1 Same story when u mention any plugin in
2015 Feb 10
3
[PATCH 0/2] fix a couple cosmetic issues
Fixes some typos and missing newlines Jonathan Boeing (2): fix a few typos add missing '\n' to dprintf com32/include/sys/module.h | 2 +- com32/lib/sys/module/exec.c | 4 ++-- core/fs/fs.c | 2 +- core/lwip/src/netif/undiif.c | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) -- 2.3.0
2012 Mar 23
19
[PATCH 00/19][elflink] Improve compatibility with 4.x
From: Matt Fleming <matt.fleming at intel.com> The following patch series is available at, git://git.zytor.com/users/mfleming/syslinux.git elflink All patches are against the 'elflink' branch. This series fixes a few serious bugs and some behavioural incompatibilities with the 4.x series. Matt Fleming (19): ldlinux: Initialise 'p' before using it. ldlinux: Parse
2011 Mar 09
14
[PATCH 00/12] elflink shrinkage
From: Matt Fleming <matt.fleming at linux.intel.com> This is a series of patches that, * shrink the core by moving things into an ldlinux ELF module * begin wiring up some of the C versions of various functions The core now only contains essential code and loads the ldlinux module to do everything else, like providing a command line interface and loading kernels. The config file parsing
2012 Jun 26
2
[GIT PULL] elflink bug fixes
...free(gi); + return rv; } /* Try to detect disks from port 0x80 to 0xff */ diff --git a/com32/include/sys/module.h b/com32/include/sys/module.h index fb6a1eb..eabc9e0 100644 --- a/com32/include/sys/module.h +++ b/com32/include/sys/module.h @@ -27,6 +27,8 @@ #define EXEC_MODULE 0 #define LIB_MODULE 1 +#define MAX_NR_DEPS 64 + /* * Initialization and finalization function signatures */ @@ -118,6 +120,9 @@ struct elf_module { } x; } u; + // ELF DT_NEEDED entries for this module + int nr_needed; + Elf32_Word needed[MAX_NR_DEPS]; }; /** diff --git a/com32/include/syslin...