Bug 481341
| Summary: | loader does not find tg3 NIC for network install | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Will Woods <wwoods> |
| Component: | anaconda | Assignee: | Anaconda Maintenance Team <anaconda-maint-list> |
| Status: | CLOSED RAWHIDE | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | rawhide | CC: | anaconda-maint-list, jlaska |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2009-02-02 17:34:23 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: | |||
| Bug Depends On: | |||
| Bug Blocks: | 446452 | ||
|
Description
Will Woods
2009-01-23 16:31:28 UTC
Err, sorry - it breaks test-install automation stuff, but only for certain hardware. Reconsidered a bit - moving it to F11Blocker. I think I figured this one out. tg3 requires firmware now, and it's not in the anaconda initrd. [root@brinstar ~]# dmesg | grep tigon tg3 0000:04:00.0: firmware: requesting tigon/tg3_tso.bin [root@brinstar ~]# ls /lib/firmware/tigon/tg3_tso.bin /lib/firmware/tigon/tg3_tso.bin [root@brinstar ~]# lsinitrd /boot/snake-initrd.img.1ySoez | grep tg3_tso.bin init cpio: premature end of file [root@brinstar ~]# anaconda patch coming soon. The patch should add something like this to mk-images' makemoduletree():
echo "Copying required firmware..."
find $MMB_DIR/lib/modules/ -name *.ko | while read module ; do
for fw in $(modinfo -F firmware $module); do
cp $KERNELROOT/lib/firmware/$fw $MBD_DIR/firmware
done
done
I'll send a real patch along once I've actually tested it.
Is there a workaround for alpha testers impacted by this? Short of rebuilding the initrd to include the firmware, no. We'll try to get a patch into Alpha if possible. I've pushed Will's patch for this that was sent to anaconda-devel-list, so this should be fixed in the next build of anaconda. Worth a test before declaring victory, though. Tested with current Rawhide / F11Alpha RC images. tg3 works as expected. |