takaswie / linux-firewire-dkms

Currently this repository is maintained for Linux firewire subsystem and unit drivers.
http://ieee1394.docs.kernel.org/
39 stars 8 forks source link

Readme Slightly Wrong #2

Closed teburd closed 10 years ago

teburd commented 10 years ago

The readme install sections gives

ln -s $(pwd)/snd-firewire-improve /usr/src/alsa-firewire-3.11

but then uses snd-firewire/3.11 for dkms install.

These need to match

takaswie commented 10 years ago

What you wish is this patch?

diff --git a/README b/README
index 403a8df..7e9e055 100644
--- a/README
+++ b/README
@@ -59,14 +59,14 @@ Then you need to install 'linux-headers' package to make dri

 Install:
 1. $ git clone https://github.com/takaswie/snd-firewire-improve.git
-2. $ ln -s $(pwd)/snd-firewire-improve/ /usr/src/alsa-firewire-3.11
+2. $ ln -s $(pwd)/snd-firewire-improve/ /usr/src/snd-firewire-3.11
 (superuser)
 3. $ dkms install snd-firewire/3.11 (superuser)

 Uninstall
 1. $ modprobe -r snd-bebob snd-fireworks snd-firewire-lib (superuser)
 2. $ dkms remove ans-firewire/3.11 --all (superuser)
-3. $ rm /usr/src/alsa-firewire-3.11 (superuser)
+3. $ rm /usr/src/snd-firewire-3.11 (superuser)
 4. $ rm snd-firewire-improve
teburd commented 10 years ago

Yeah thats perfect, thank you!