aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuis R. Rodriguez <mcgrof@winlab.rutgers.edu>2007-11-13 18:59:54 -0500
committerLuis R. Rodriguez <mcgrof@winlab.rutgers.edu>2007-11-13 18:59:54 -0500
commit11628fff3f75e4b9c7d9de11eea9b046907b3551 (patch)
tree0dd197bb34079e353ee3a1834afa795f9ff5d457
parent04c56da4c22df83021a4b16d561ea96c4d82ffc7 (diff)
downloadcompat-wireless-2.6-old-11628fff3f75e4b9c7d9de11eea9b046907b3551.tar.gz
We use patch -p0 now, so update docs on how to add a new driver
Signed-off-by: Luis R. Rodriguez <mcgrof@winlab.rutgers.edu>
-rw-r--r--README8
1 files changed, 6 insertions, 2 deletions
diff --git a/README b/README
index c83e20b..53d9bcf 100644
--- a/README
+++ b/README
@@ -156,15 +156,19 @@ To add new drivers:
2. Add new compat-wireless-2.6/ dir to obj-y on the local Makefile
3. Update compat patch:
- cp drivers/foo/Makefile drivers/Makefile.old
+ cd ..
+ cp -a compat-wireless-2.6/ compat-wireless-2.6.old
+ cp compat-wireless-2.6/drivers/foo/Makefile compat-wireless-2.6/.old/drivers/Makefile.old
# edit drivers/foo/Makefile and make necessary changes to enable module
- diff -u drivers/foo/Makefile.old drivers/foo/Makefile >> \
+ diff -u compat-wireless-2.6.old/drivers/foo/Makefile.old \
+ compat-wireless-2.6/drivers/foo/Makefile >> \
compat/compat.diff
# Append to compat/compat.[ch] any new changes needed
# to support the driver, please be specific about the reasons
# for your additions
4. Refresh and test:
+ cd compat-wireless-2.6/
./scripts/admin-refresh.sh
5. Send patches of the work