Move udev/ to hwilib/udev

This commit is contained in:
Andrew Chow 2019-08-23 17:53:51 -04:00
parent e4f2e80bd3
commit e4ec8f04f7
10 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,7 @@ Python software can use the provided library (`hwilib`). Software in other langu
## Prerequisites
Python 3 is required. The libraries and [udev rules](udev/README.md) for each device must also be installed. Some libraries will need to be installed
Python 3 is required. The libraries and [udev rules](hwilib/udev/README.md) for each device must also be installed. Some libraries will need to be installed
For Ubuntu/Debian:
```

View File

@ -27,7 +27,7 @@ a = Analysis(['hwi.py'],
noarchive=False)
if platform.system() == 'Linux':
a.datas += Tree('udev', prefix='udev')
a.datas += Tree('hwilib/udev', prefix='hwilib/udev')
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)

View File

@ -8,7 +8,7 @@ from hwilib.cli import process_commands
class TestUdevRulesInstaller(unittest.TestCase):
INSTALLATION_FOLDER = 'rules.d'
SOURCE_FOLDER = '../udev'
SOURCE_FOLDER = '../hwilib/udev'
@classmethod
def setUpClass(cls):