beagleboard / customizations

Moved to: https://git.beagleboard.org/beagleboard/usr-customizations
https://git.beagleboard.org/beagleboard/usr-customizations
MIT License
6 stars 7 forks source link

USE_GENERATED_DNSMASQ=no #14

Open MaBecker opened 3 years ago

MaBecker commented 3 years ago

Shouldn't bb_dnsmasq_config.sh exit if USE_GENERATED_DNSMASQ=no is set in /etc/default/bb-wl18xx before rewriting /etc/dnsmasq.d/SoftAp0?


# workaround - added before line wfile= 
if [ "x${USE_GENERATED_DNSMASQ}" = "xno" ] ; then
        exit
fi

Or is there something else that Ii missed about that setting?

RobertCNelson commented 3 years ago

Hi @MaBecker you are correct, we should drop out if USE_GENERATED_DNSMASQ is disabled..

Regards,

MaBecker commented 3 years ago

@RobertCNelson Let me know if you want me to send a pr with the coding above.