diff options
| author | maximilian attems <maks@debian.org> | 2006-06-24 13:22:44 +0200 |
|---|---|---|
| committer | maximilian attems <maks@debian.org> | 2006-06-24 13:22:44 +0200 |
| commit | b7618c8e038c6e9a671ef62578bf79327fbc00be (patch) | |
| tree | 3fb30c9cc93bfa4f74a743824b747cce905a54be /debian | |
| parent | 16d9f24976ebbb165e5e8aae17a17ddaeca90a8d (diff) | |
| download | initramfs-tools-b7618c8e038c6e9a671ef62578bf79327fbc00be.tar.gz initramfs-tools-b7618c8e038c6e9a671ef62578bf79327fbc00be.zip | |
- no longer need to remove initramfs-tools/modules on postrm
ubuntu sync:
- change prereqs policy
- add check_minver
- use it in update-initramfs
- fix version to use in update-initramfs
Diffstat (limited to 'debian')
| -rw-r--r-- | debian/changelog | 23 | ||||
| -rw-r--r-- | debian/initramfs-tools.postrm | 1 |
2 files changed, 22 insertions, 2 deletions
diff --git a/debian/changelog b/debian/changelog index 2e939e9..82983ae 100644 --- a/debian/changelog +++ b/debian/changelog @@ -17,7 +17,28 @@ initramfs-tools (0.65) unstable; urgency=low * update-initramfs: Show by default which initramfs gets generated. (closes: #364301) - -- maximilian attems <maks@sternwelten.at> Sat, 24 Jun 2006 10:46:40 +0200 + * Resync with 0.40ubuntu32: + - Make prereqs conditional on the script/hook actually existing. From + now on, this means that 'PREREQ="udev"' means "run udev first, iff it + happens to be installed". Having the files exist on the filesystem if + you have a HARD dependency should be enforced with package dependencies. + (closes: #369617) + - Make "update-initramfs -u" try to find the running kernel *after* it + attempts to search the symbolic link list and its own sha1 list. + Using this as a fallback, rather than the default, should solve most + upgrade issues, where people found their initramfs was half-baked. + - Abstract out the kernel minversion checking stuff into the function + library, so we can reuse it to check minversion requirements for hook + scripts as well (such as udev, which requires >= 2.6.15 in dapper) + - Bump the kernel minversion to 2.6.15 on hppa and ia64, since they used + initrd-tools with their 2.6.12 kernels in breezy, not initramfs-tools. + - If mkinitramfs fails due to minversion not being met, don't bail out + of update-initramfs, but just exit 0, so upgrades don't halt on it. + + * debian/initramfs-tools.postrm: We no longer need to explicitly remove + /etc/initramfs-tools/modules. + + -- maximilian attems <maks@sternwelten.at> Sat, 24 Jun 2006 11:42:07 +0200 initramfs-tools (0.64) unstable; urgency=low diff --git a/debian/initramfs-tools.postrm b/debian/initramfs-tools.postrm index b711f2c..b2f40bd 100644 --- a/debian/initramfs-tools.postrm +++ b/debian/initramfs-tools.postrm @@ -1,7 +1,6 @@ #!/bin/sh if [ "x${1}" = "xpurge" ]; then - rm -f /etc/initramfs-tools/modules rm -f /etc/initramfs-tools/conf.d/resume fi |
