forked from artisan-roaster-scope/artisan
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- updates Yocto udev rule to restrict it to users of group sudo and a…
…djust the udev related documentation in the Installation.md on the Wiki - adds -deb-no-default-config-files option to deb package creation to resolve an issue on re-installation of Artisan complaining about overwriting existing udev rules config file
- Loading branch information
Showing
3 changed files
with
4 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -53,7 +53,7 @@ flavor." \ | |
|
||
# Allow FPM to write some temporary files | ||
sudo chmod o+w . | ||
fpm -s dir -t deb -n artisan --license GPL3 -m "Marko Luther <[email protected]>" -p .. \ | ||
fpm --deb-no-default-config-files -s dir -t deb -n artisan --license GPL3 -m "Marko Luther <[email protected]>" -p .. \ | ||
--vendor "Artisan GitHub" \ | ||
--no-auto-depends \ | ||
--url "https://github.com/artisan-roaster-scope/artisan" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# udev rule to allow write access to all users for Aillio USB devices | ||
SUBSYSTEMS=="usb", ATTRS{idVendor}=="0483", ATTRS{idProduct}=="5741", MODE="0660", GROUP="sudo" | ||
# udev rule to allow write access to all users for Yoctopuce USB devices | ||
SUBSYSTEM=="usb", ATTR{idVendor}=="24e0", MODE="0666" | ||
SUBSYSTEM=="usb", ATTR{idVendor}=="24e0", MODE="0666" GROUP="sudo" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters