mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Merge pull request #1903 from henrygab/option_1902
Fix Makefile regression from #1894
This commit is contained in:
commit
db6243790e
2 changed files with 8 additions and 1 deletions
|
@ -3,6 +3,7 @@ All notable changes to this project will be documented in this file.
|
||||||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||||
|
|
||||||
## [unreleased][unreleased]
|
## [unreleased][unreleased]
|
||||||
|
- Fixed `Makefile` regression that broke `make install` (@henrygab)
|
||||||
- Fixed `lf em 4x70 brute` - now works as expected (@adite)
|
- Fixed `lf em 4x70 brute` - now works as expected (@adite)
|
||||||
- Fixed the lf sampling when bits_per_sample is less than 8 (@wh201906)
|
- Fixed the lf sampling when bits_per_sample is less than 8 (@wh201906)
|
||||||
- Added `lf em 4x70 brute` command (@adite)
|
- Added `lf em 4x70 brute` command (@adite)
|
||||||
|
|
8
Makefile
8
Makefile
|
@ -65,7 +65,13 @@ ifneq (,$(INSTALLSIMFW))
|
||||||
endif
|
endif
|
||||||
ifeq ($(platform),Linux)
|
ifeq ($(platform),Linux)
|
||||||
$(Q)$(INSTALLSUDO) $(MKDIR) $(DESTDIR)$(UDEV_PREFIX)
|
$(Q)$(INSTALLSUDO) $(MKDIR) $(DESTDIR)$(UDEV_PREFIX)
|
||||||
$(Q)$(INSTALLSUDO) $(CP) driver/77-pm3-usb-device-blacklist.rules $(DESTDIR)$(UDEV_PREFIX)/77-pm3-usb-device-blacklist.rules
|
# If user is running ArchLinux, use group 'uucp'
|
||||||
|
# Else, use group 'dialout'
|
||||||
|
ifneq ($(wildcard /etc/arch-release),)
|
||||||
|
$(Q)$(INSTALLSUDO) $(CP) driver/77-pm3-usb-device-blacklist-uucp.rules $(DESTDIR)$(UDEV_PREFIX)/77-pm3-usb-device-blacklist.rules
|
||||||
|
else
|
||||||
|
$(Q)$(INSTALLSUDO) $(CP) driver/77-pm3-usb-device-blacklist-dialout.rules $(DESTDIR)$(UDEV_PREFIX)/77-pm3-usb-device-blacklist.rules
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
uninstall: common/uninstall
|
uninstall: common/uninstall
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue