Bug 68391 - booty tries to load edd module on non-x86
Summary: booty tries to load edd module on non-x86
Keywords:
Status: CLOSED RAWHIDE
Alias: None
Product: Red Hat Public Beta
Classification: Retired
Component: booty
Version: limbo
Hardware: i386
OS: Linux
medium
medium
Target Milestone: ---
Assignee: Jeremy Katz
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks: 67217
TreeView+ depends on / blocked
 
Reported: 2002-07-09 20:31 UTC by Dan Burcaw
Modified: 2008-05-01 15:38 UTC (History)
0 users

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 2002-07-09 20:57:18 UTC
Embargoed:


Attachments (Terms of Use)
Simple patch fixes this problem. (1.38 KB, patch)
2002-07-09 20:32 UTC, Dan Burcaw
no flags Details | Diff

Description Dan Burcaw 2002-07-09 20:31:39 UTC
Description of Problem:
The booty module tries to load edd on non-x86 archs
despite edd being an x86-only module.

The following is from bootloaderInfo.py, near line 30:

if butil.getArch() == "i386" and os.path.exists('edd'):
    sys.path.append('edd/')
    import edd
else:
    sys.path.append('/usr/lib/bootloader')
    import edd

This second import edd needs to be removed.

Comment 1 Dan Burcaw 2002-07-09 20:32:21 UTC
Created attachment 64444 [details]
Simple patch fixes this problem.

Comment 2 Jeremy Katz 2002-07-09 22:03:34 UTC
Commited slightly modified patch to CVS


Note You need to log in before you can comment on or make changes to this bug.