Displaying 2 results from an estimated 2 matches for "copy_exec".
Did you mean:
conf_exec
Processed: reassign 423006 to initramfs-tools, severity of 420754 is critical, merging 423006 420754
2007 Jun 30
0
Processed: reassign 423006 to initramfs-tools, severity of 420754 is critical, merging 423006 420754
...ts version 2.9.26
> reassign 423006 initramfs-tools 0.87b
Bug#423006: xen-hypervisor-3.0.3-1-i386-pae: /bin/sh : error while loading shared library libcrypt.so.1
Bug reassigned from package `xen-hypervisor-3.0.3-1-i386-pae' to `initramfs-tools'.
> severity 420754 critical
Bug#420754: copy_exec function mistakely uses xen optimised library with glibc 2.5 resulting in an unbootable image
Severity set to `critical' from `important'
> merge 423006 420754
Bug#420754: copy_exec function mistakely uses xen optimised library with glibc 2.5 resulting in an unbootable image
Bug#423006:...
2010 Apr 16
2
[RFC] btrfs, udev and btrfs
.../btrfs
#!/bin/sh
case $1 in
# get pre-requisites
prereqs)
echo "udev"
exit 0
;;
esac
. /usr/share/initramfs-tools/hook-functions
mkdir -p $DESTDIR/lib/udev/rules.d/
cp /etc/udev/rules.d/60-btrfs-scan.rules \
$DESTDIR/lib/udev/rules.d/
copy_exec /sbin/btrfsctl
manual_add_modules btrfs
manual_add_modules crc32c
Note #1) pay attention to the fact the btrfs (libcrc32c in reality) needs the
module crc32c even though there no is explicit dependency.
Note #2) init-top/btrfs has to start before init-top/udev: udev starts
"btrfsctl&...