1

Why do i get a black screen on boot (after installing the latest ubuntu 14.10 updates) with the following message.

[ 16.697414] Support for cores revision ox17 and ox18 disabled by module param allsupport=0. Try b43 allsupport =1

I can boot ok with the previous kernel

Charles Green
  • 21,859

1 Answers1

1

This is an odd one - I found a post in an Arch Linux forum indicating that this could be loaded with modprobe

If you cannot get your system to boot fully you will need to boot into recovery mode (terminal mode), mount your drive with RW permissions, and create the file /etc/modprobe.d/local-b43.conf

The contents of the file should be

# Activate experimental support for some hardware revisions
options b43 allhwsupport=1

Following this you will need to reboot.

If you can get into your system, then you still need to create the file as above, but you could force the module to reload with sudo rmmod b43 && sudo modprobe b43

Charles Green
  • 21,859