From mboxrd@z Thu Jan 1 00:00:00 1970 From: Duncan Hare Date: Mon, 19 Mar 2018 15:03:22 -0700 Subject: [U-Boot] Fw: dhcp command not populating dnsip environment variable Message-ID: <20180319150322.33fa7d1c@raspberrypi> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 8bit To: u-boot@lists.denx.de Begin forwarded message: Date: Mon, 19 Mar 2018 14:57:59 -0700 From: Duncan Hare To: Duncan Hare Subject: Re: [U-Boot] dhcp command not populating dnsip environment variable > >On Sun, Mar 18, 2018 at 3:01 PM, Duncan Hare wrote: > > Cause: u-boot/Kconfig DISTRO_DEFAULTS missing variables in Kconfig > > files > > > >        BOOTP_BOOTPATH > >        BOOTP_DNS > >        BOOTP_GATEWAY > >        BOOTP_HOSTNAME > >        BOOTP_SUBNETMASK > > BOOTP_PXE > It seems like we should imply them. That means we always get good > defaults but can still disable them if desired. All of the above defined in net/KConfig? net/Kconfig adds config BOOTP_BOOTPATH config BOOTP_DNS config BOOTP_GATEWAY config BOOTP_HOSTNAME config BOOTP_SUBNETMASK config BOOTP_PXE and in the distro_defaults change the select verb to imply? Or imply them all under the cmd/net.c BOOTP command?