mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 22:03:42 -07:00
Merge pull request #1840 from mooey5775/master
Fix `make accessrights` for Fedora
This commit is contained in:
commit
b8ef82e517
2 changed files with 5 additions and 0 deletions
|
@ -24,6 +24,7 @@ This project uses the changelog in accordance with [keepchangelog](http://keepac
|
||||||
- Fixed `pm3` shell script now automatically detects WSL2 with USBIPD serial ports (@iceman1001)
|
- Fixed `pm3` shell script now automatically detects WSL2 with USBIPD serial ports (@iceman1001)
|
||||||
- Fixed `trace list -c` - annotation of CRC bytes now is colored or squared if no ansi colors is supported (@iceman1001)
|
- Fixed `trace list -c` - annotation of CRC bytes now is colored or squared if no ansi colors is supported (@iceman1001)
|
||||||
- Fixed `trace list -t mf` - now also finds UID if anticollision is partial captured, to be used for mfkey (@iceman1001)
|
- Fixed `trace list -t mf` - now also finds UID if anticollision is partial captured, to be used for mfkey (@iceman1001)
|
||||||
|
- Fixed `make accessrights` on Fedora (@mooey5775)
|
||||||
|
|
||||||
## [Radium.4.15864][2022-10-29]
|
## [Radium.4.15864][2022-10-29]
|
||||||
- Changed `lf indala sim` - now accepts fc / cn (@iceman1001)
|
- Changed `lf indala sim` - now accepts fc / cn (@iceman1001)
|
||||||
|
|
4
Makefile
4
Makefile
|
@ -267,6 +267,10 @@ ifneq ($(wildcard /etc/arch-release),)
|
||||||
#If user is running ArchLinux, use specific command and group
|
#If user is running ArchLinux, use specific command and group
|
||||||
$(Q)$(SUDO) $(USERMOD) uucp $(USER)
|
$(Q)$(SUDO) $(USERMOD) uucp $(USER)
|
||||||
$(Q)$(GETENT_BL) >/dev/null && $(SUDO) $(USERMOD) bluetooth $(USER) || true
|
$(Q)$(GETENT_BL) >/dev/null && $(SUDO) $(USERMOD) bluetooth $(USER) || true
|
||||||
|
else ifneq ($(wildcard /etc/fedora-release),)
|
||||||
|
# If the user is running Fedora, use `usermod` with the dialout group
|
||||||
|
$(Q)$(SUDO) $(USERMOD) dialout $(USER)
|
||||||
|
$(Q)$(GETENT_BL) >/dev/null && $(SUDO) $(USERMOD) bluetooth $(USER) || true
|
||||||
else
|
else
|
||||||
$(Q)$(SUDO) $(ADDUSER) $(USER) dialout
|
$(Q)$(SUDO) $(ADDUSER) $(USER) dialout
|
||||||
$(Q)$(GETENT_BL) >/dev/null && $(SUDO) $(ADDUSER) $(USER) bluetooth || true
|
$(Q)$(GETENT_BL) >/dev/null && $(SUDO) $(ADDUSER) $(USER) bluetooth || true
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue