|
Bugzilla – Full Text Bug Listing |
| Summary: | mkinitrd bugs for root filesystem on LVM | ||
|---|---|---|---|
| Product: | [openSUSE] SUSE Linux 10.1 | Reporter: | Carl-Daniel Hailfinger <kernel01> |
| Component: | Installation | Assignee: | Hannes Reinecke <hare> |
| Status: | RESOLVED FIXED | QA Contact: | Klaus Kämpf <kkaempf> |
| Severity: | Normal | ||
| Priority: | P5 - None | CC: | hare |
| Version: | Beta 2 | ||
| Target Milestone: | --- | ||
| Hardware: | i686 | ||
| OS: | Other | ||
| Whiteboard: | |||
| Found By: | Development | Services Priority: | |
| Business Priority: | Blocker: | --- | |
| Marketing QA Status: | --- | IT Deployment: | --- |
| Bug Depends on: | 145928 | ||
| Bug Blocks: | |||
|
Description
Carl-Daniel Hailfinger
2006-01-27 06:25:10 UTC
I've fixed up mkinitrd to now read:
major=$(devmajor $devn)
driver=$(cat /proc/devices | sed -n "s/^[ ]*$major \(.*\)/\1/p;/Block/p" | tail -1)
case "$driver" in
Block*)
return 1
;;
*)
echo $driver
return 0
;;
esac
And I'v added a call to vgchange even for the LVM2 case. dmsetup is now also included. Great! Could you attach the current mkinitrd to this bug so I can test it? |