Closed pszkotak closed 5 years ago
The intention of with() or without() is to allow environment variables override the default values. For example, the default value on ubuntu DHCPV6_PD=0
, user can enable this by:
export DHCPV6_PD=1
How do you set DHCPV6_PD?
Thank you for a quick response. This can be an issue. We do not export it. The check-scripts approach has been taken instead. So we add appropriate flags in some places, like raspbian/default. Same flags are also added in _initrc during the build as a patch.
All of it worked fine till the change of the with()
implementation mentioned above.
I agree that going with the export
is cleaner. We will try to switch to this method before the next image generation.
If you do not have anything else to add here, I'm OK to close this issue.
Closing stale issue.
Current ot-br-posix is not generating a correct .deb package in our build environment. We have noticed that it happens because some files (e.g. for dhcpcd and tayga) are not present or available only in a default version. It seems that flags used with the
with()
orwithout()
functions (e.g.with NAT64
) are not interpreted correctly. We have observed that the following change effectively reverting the change made in #270 fixes the build for us:Did anyone else encountered any issues with it?
Expected behavior Proper dhcpcd config is installed when the DHCPV6_PD is set.