From mboxrd@z Thu Jan 1 00:00:00 1970 From: dh at synoia.com Date: Fri, 23 Mar 2018 11:12:57 -0700 Subject: [U-Boot] dhcp command not populating dnsip environment variable In-Reply-To: <1493032693.3427290.1521494690666@mail.yahoo.com> References: <20180317091527.5e6387b1@raspberrypi> <1493032693.3427290.1521494690666@mail.yahoo.com> Message-ID: <20180323110809.6a401829@raspberrypi> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Mon, 19 Mar 2018 21:24:50 +0000 (UTC) Duncan Hare wrote: Joe My approach with the bootp options was a submenu in the net/Kconfig file. coupled with imply directives as suggested in defaults_distro_config. However: The "if NET" directive in net/kconfig precludes menu...endmenu directives between the if...endif. The menu directive precludes if...endif directives in a menu. A submenu for bootp/dhcp options appears not possible. The NET directive is selected by the CMD_NET directive in cmd/Kconfig. One can create a menuu/submenu by removeing the if NET...end directive, but that appears to defeat the objective of excluding the net component. Suggestions? Guidance?