I am trying to install the driver for the Broadcom BCM43142 on Tails 1.1. I am trying to follow the guide at Linux World. My laptop (Sony Vaio Flip SVF14N13CXB) has an Intel i5, 64-bit processer, so I downloaded the files from the Broadcom website for linux. I gunzip
'd and untar
'd the files. I got a Makefile and the lib and src folders. I ran chmod +x ./Makefile
then ./Makefile
. Here is what I got back.
./Makefile: line 21: syntax error near unexpected token `$()KERNELRELEASE'
./Makefile: line 21: `ifneq ($()KERNELRELEASE)'
Here is some conext from the Makefile.
ifneq ($(KERNELRELEASE),)
LINUXVER_GOODFOR_CFG80211:=$(strip $(shell \
if [ "$(VERSION)" -ge "2" -a "$(PATCHLEVEL)" -ge "6" -a "$(SUBLEVEL)" -ge "32" -o "$(VERSION)" -ge "3" ]; then \
echo TRUE; \
else \
echo FALSE; \
fi \
))
Any ideas? Thanks.