├── debian ├── changelog ├── compat ├── control ├── raspberrypi-net-mods.install ├── raspberrypi-net-mods.postinst ├── rules └── source │ └── format ├── etc └── profile.d │ └── wifi-check.sh └── usr └── lib └── NetworkManager └── conf.d └── rpi-no-scan-rand-mac-address.conf /debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPi-Distro/raspberrypi-net-mods/HEAD/debian/changelog -------------------------------------------------------------------------------- /debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPi-Distro/raspberrypi-net-mods/HEAD/debian/control -------------------------------------------------------------------------------- /debian/raspberrypi-net-mods.install: -------------------------------------------------------------------------------- 1 | etc 2 | usr 3 | -------------------------------------------------------------------------------- /debian/raspberrypi-net-mods.postinst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPi-Distro/raspberrypi-net-mods/HEAD/debian/raspberrypi-net-mods.postinst -------------------------------------------------------------------------------- /debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPi-Distro/raspberrypi-net-mods/HEAD/debian/rules -------------------------------------------------------------------------------- /debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /etc/profile.d/wifi-check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RPi-Distro/raspberrypi-net-mods/HEAD/etc/profile.d/wifi-check.sh -------------------------------------------------------------------------------- /usr/lib/NetworkManager/conf.d/rpi-no-scan-rand-mac-address.conf: -------------------------------------------------------------------------------- 1 | [device] 2 | wifi.scan-rand-mac-address=no 3 | --------------------------------------------------------------------------------