diff options
| author | Jeff Bailey <jbailey@ubuntu.com> | 2005-08-17 00:01:51 -0400 |
|---|---|---|
| committer | Jeff Bailey <jbailey@ubuntu.com> | 2005-08-17 00:01:51 -0400 |
| commit | 9a9de97229d09d9876575775a080a4056fcffcb5 (patch) | |
| tree | b8c66a8648a65d6ccb892e7d1154cbd33c822abf /debian | |
| parent | f903a759dea3c85c88bbec151337efd2c64ba3bf (diff) | |
| download | initramfs-tools-9a9de97229d09d9876575775a080a4056fcffcb5.tar.gz initramfs-tools-9a9de97229d09d9876575775a080a4056fcffcb5.zip | |
initramfs-tools (0.21) breezy; urgency=low
"All that I desire to point out is the general principle that
life imitates art far more than art imitates life."
- Oscar Wilde
* mkinitramfs: Define MODULESDIR and use it.
* hook-functions: Use MODULESDIR
(add_modules_from_file): Do not add .ko extension to file lists.
Call force_load instead of twiddling conf/modules directly.
(Ubuntu #13372)
(force_load): New function.
(copy_exec): Attempt to use non-optimsed libraries if available.
(Ubuntu #13470)
(auto_add_modules) Include forcedeth (Ubuntu #13448)
* hooks/kernelextras: New file. (Ubuntu #13414)
* debian/initramfs-tools.postinst: Preserve /etc/mkinitrd/modules if
possible on new install. (Ubuntu #13372)
-- Jeff Bailey <jbailey@ubuntu.com> Tue, 16 Aug 2005 15:56:00 -0400
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 24 | ||||
| -rw-r--r-- | debian/initramfs-tools.postinst | 4 |
2 files changed, 28 insertions, 0 deletions
diff --git a/debian/changelog b/debian/changelog index 445d581..aaa2dba 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +initramfs-tools (0.21) breezy; urgency=low + + "All that I desire to point out is the general principle that + life imitates art far more than art imitates life." + - Oscar Wilde + + * mkinitramfs: Define MODULESDIR and use it. + + * hook-functions: Use MODULESDIR + (add_modules_from_file): Do not add .ko extension to file lists. + Call force_load instead of twiddling conf/modules directly. + (Ubuntu #13372) + (force_load): New function. + (copy_exec): Attempt to use non-optimsed libraries if available. + (Ubuntu #13470) + (auto_add_modules) Include forcedeth (Ubuntu #13448) + + * hooks/kernelextras: New file. (Ubuntu #13414) + + * debian/initramfs-tools.postinst: Preserve /etc/mkinitrd/modules if + possible on new install. (Ubuntu #13372) + + -- Jeff Bailey <jbailey@ubuntu.com> Tue, 16 Aug 2005 15:56:00 -0400 + initramfs-tools (0.20) breezy; urgency=low * Depend on cpio. diff --git a/debian/initramfs-tools.postinst b/debian/initramfs-tools.postinst index ea92067..fe734cf 100644 --- a/debian/initramfs-tools.postinst +++ b/debian/initramfs-tools.postinst @@ -13,6 +13,10 @@ if [ "$1" = configure ]; then . /etc/mkinitrd/mkinitrd.conf fi + if [ -e /etc/mkinitrd/modules ]; then + cp /etc/mkinitrd/modules /etc/mkinitramfs + fi + if [ -e ${RESUME} ]; then sed -i -e "s@#RESUME=@RESUME=${RESUME}@" /etc/mkinitramfs/initramfs.conf fi |
