aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJakob Odersky <jodersky@gmail.com>2012-03-31 02:34:48 +0200
committerJakob Odersky <jodersky@gmail.com>2012-03-31 02:35:22 +0200
commitf3bccd0aedac4ad430a86f0196a6a213402c7180 (patch)
tree8947e75c240c219a8d687caaf4e9859552c30705 /README.md
parent3148eda281da4c0dbb246329c555dc873dc8aad4 (diff)
downloadk8055-f3bccd0aedac4ad430a86f0196a6a213402c7180.tar.gz
k8055-f3bccd0aedac4ad430a86f0196a6a213402c7180.tar.bz2
k8055-f3bccd0aedac4ad430a86f0196a6a213402c7180.zip
fix udev rules in readme
Diffstat (limited to 'README.md')
-rw-r--r--README.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index cc98e8d..b5e92a0 100644
--- a/README.md
+++ b/README.md
@@ -17,11 +17,11 @@ Run ```make``` in the project root folder. Products are copied to `target' direc
### Udev Rules
If your system uses udev, you will probably have to configure it to allow access the k8055 boards. The following instructions show how to configure udev (you will need root privileges).
-1. Copy the file `k8055.rules' into the udev rules directory, typically /etc/udev/rules.d
+1. Copy the file `k8055.rules' into the udev rules directory, typically /etc/udev/rules.d
```cp k8055.rules /etc/udev/rules.d/k8055.rules```
-2. Create a group named k8055.
+2. Create a group named k8055.
```groupadd k8055```
-3. Add to the group yourself and/or other users whom you wish to grant access to the boards.
+3. Add to the group yourself and/or other users whom you wish to grant access to the boards.
```usermod -a -G k8055 $(USER)```
The previously described steps may be automated by running ```make install-rules``` to install just the rules or ```make install-permissions``` to also create the group and add the current user to it.