Robert, A further update. I can now get the udhcpd implementation to work on console image by applying a patch to /opt/scripts/boot/autoconfigure_usb.sh. Patch is simply to use standard location for updated udhcpd.conf rather than a /tmp one.
I'm assuming there was a reason that this was done. I found it when I realised that https:// raw.github.com/RobertCNelson/tools/master/scripts/beaglebone-black-g-ether-load.sh worked. Iain On 2 July 2015 at 11:50, <[email protected]> wrote: > Robert, > I now have the console image working with usb over ethernet with both > Linux and Windows PCs. > > The change I had to make was to remove udhcpd and its conf files and then > install dnsmasq > > #apt-get remove udhcpd > #rm /etc/default/udhcp* > #apt-get install dnsmasq > > #reboot > > This change then makes /opt/scripts/boot/autoconfigure_usb0.sh in the > console image follow same path as LXQT image. > > Thanks, > Iain > > > > > > On Thursday, July 2, 2015 00:05:37 UTC + 1 William Hermans wrote: >> >> apt-get install sysv && apt-get remove --purge systemd) >> >> Or just wait for them to iron it out hehe. , .yeah. >> >> On Wed, July 1, 2015 at 2:31 PM, Robert Nelson < robert ... @ gmail.com > >> wrote: >> >>> On Wed, July 1, 2015 at 4:28 PM, William Hermans < yyr ... @ gmail.com >>> > wrote: >>> > No way to force g_ether to ethx DEPENDING ON Whether Ethernet is >>> connected >>> > or not? ? Hack >>> >>> Nope, that's debian's systemd in stretch / testing (9) .. systemd >>> (220-7) unstable; urgency = medium [Martin Pitt] * Switch to >>> net.ifnames persistant Network Interfaces (on new installations / >>> for new hardware), and deprecate the old "Proposal: enable stateless >>> persistant network interface names" https://lists.debian.org/ >>> <https://lists.debian.org/debian-devel/2015/05/msg00170.html>debian-devel >>> / 2015/05 / msg00170. >>> <https://lists.debian.org/debian-devel/2015/05/msg00170.html>html >>> <https://lists.debian.org/debian-devel/2015/05/msg00170.html> >>> >>> >>> >>> >>> >>> >>> >>> >>> >>> <https://lists.debian.org/debian-devel/2015/05/msg00170.html> >>> >>> Regards, - Robert Nelson https://rcn-ee.com/ - For more options, visit >>> http://beagleboard.org/discuss --- You received this message Because >>> You are subscribed to the Google Groups "BeagleBoard" group. To >>> unsubscribe from this group and stop receiving emails from it, send an >>> email to BeagleBoard ... @ googlegroups.com . For more options, visit >>> https://groups.google.com/d/ >>> <https://groups.google.com/d/optout>OptOut >>> <https://groups.google.com/d/optout> . >>> >>> >>> >>> <https://rcn-ee.com/> >>> >>> >>> <http://beagleboard.org/discuss> >>> >>> >>> >>> <https://groups.google.com/d/optout> >>> >> >> -- > For more options, visit http://beagleboard.org/discuss > --- > You received this message because you are subscribed to a topic in the > Google Groups "BeagleBoard" group. > To unsubscribe from this topic, visit > https://groups.google.com/d/topic/beagleboard/T7N2xs7K0TU/unsubscribe. > To unsubscribe from this group and all its topics, send an email to > [email protected]. > For more options, visit https://groups.google.com/d/optout. > -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
From 25aca78652ff48831516cebb7adea39f71d95974 Mon Sep 17 00:00:00 2001 From: Iain Hunter <[email protected]> Date: Thu, 2 Jul 2015 14:44:08 +0100 Subject: [PATCH] use standard location for udhcpd.conf --- boot/autoconfigure_usb0.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/boot/autoconfigure_usb0.sh b/boot/autoconfigure_usb0.sh index 8aea71b..2e106d2 100755 --- a/boot/autoconfigure_usb0.sh +++ b/boot/autoconfigure_usb0.sh @@ -48,9 +48,9 @@ unset deb_etc_dir \ # Separated /etc variable to ease test on host system (by changing # etc_dir during test). deb_etc_dir=/etc -deb_ro_dir=$(mktemp -d) +#deb_ro_dir=$(mktemp -d) -deb_udhcpd_conf=${deb_ro_dir}/udhcpd.conf +deb_udhcpd_conf=${deb_etc_dir}/udhcpd.conf deb_udhcpd_default=${deb_etc_dir}/default/udhcpd deb_generated_dnsmasq_file=usb0-dhcp -- 1.7.9.5
