Bug 877
| Summary: | several typos in mkbootdisk script | ||
|---|---|---|---|
| Product: | [Retired] Red Hat Linux | Reporter: | Wissmann, Klaus <kw> |
| Component: | mkbootdisk | Assignee: | David Lawrence <dkl> |
| Status: | CLOSED CURRENTRELEASE | QA Contact: | |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 5.1 | ||
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | i386 | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 1999-01-19 17:44:56 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
This has been fixed in mkbootdisk-1.1-2 |
The mkbootdisk script contains several typos. Here is a patch: --- mkbootdisk.orig Thu Oct 8 14:50:25 1998 +++ mkbootdisk Sun Nov 8 11:18:04 1998 @@ -34,7 +34,7 @@ ;; --mkinitrdargs) shift - mkinitrdargs=#1 + mkinitrdargs=$1 ;; --help) usage 0 @@ -95,11 +95,11 @@ [ -f /lib/modules/$kernel/fs/isofs.o ] && withfs="$withfs --with isofs" [ -f /lib/modules/$kernel/fs/nfs.o ] && - withfs="$withfs --with isofs" + withfs="$withfs --with nfs" [ -f /lib/modules/$kernel/fs/fat.o ] && - withfs="$withfs --with isofs" + withfs="$withfs --with fat" [ -f /lib/modules/$kernel/fs/msdos.o ] && - withfs="$withfs --with isofs" + withfs="$withfs --with msdos"