[U-Boot] Konfig command for u-boot forn Intel NUC

2017-03-21 Thread Duncan Hare
Please could you let me know the correct config command for the Intekl NUC version of u-boot. Thanks Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Test Environment

2017-08-13 Thread Duncan Hare
the network? Thanks  Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Board file for Raspberry Pi, rpi.c and Setting MAC address

2017-07-04 Thread Duncan Hare
populating u-boot in the new device from getting the correct MAC address for the device. Is there a reason for protecting the MAC address variable in this manner? Or should the code be to alwys retrieve the MAC address from the device? For example: setenv("ethaddr",getenv(

[U-Boot] Add Ethernet Support for Banana Pi M64

2017-05-31 Thread Duncan Hare
2A DC power-supply Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Add ethernet support to Banana-Pi M2U

2017-05-31 Thread Duncan Hare
Banana Pi BPI-M2 Ultra is a quad-core mini single board computer built with Allwinner R40 SoC. It features 2GB of RAM and 8GB eMMC. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Revised NFS/TCP Tranfer measurement: Netboot Download times:: UDP vs TCP

2017-06-11 Thread Duncan Hare
0701, win 7356, options [nop,nop,TS val 4294956923 ecr 215895745], length 0 Can the NFS command be enhanced to use TCP? TCP open source code exists in linux.kernel.org, the "net" directory. Duncan Hare 714 931 7952 ___ U-Boot m

[U-Boot] Netboot Download times:: UDP vs TCP

2017-06-10 Thread Duncan Hare
op,nop,TS val 4294956923 ecr 215895745], length 0 Can the NFS command be enhanced to use TCP? TCP open source code exists in linux.kernel.org, the "net" directory. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] DNS Lookup in UBoot

2017-06-05 Thread Duncan Hare
may so so) Can we get a DNS lookup command to resolved names after the initial DHCP IP address setup. This is to get a flexible mechanism to set a bootserver address, consistent for Uboot across DHCP implementations. Duncan Hare 714 931 7952 ___ U-Bo

[U-Boot] Adding new net command

2017-09-16 Thread Duncan Hare
code being written now, with packet in and packet out the intersection of the new code and existing code. I can transferr small files. UDP function is not affected, and still works. Thanks Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.den

[U-Boot] Request For Comments: wget and TCP listener

2017-09-21 Thread Duncan Hare
Linux Monitor (LiMon) - Networking. * * Copyright 1994 - 2000 Neil Russell. * (See License) * Copyright 2000 Roland Borde * Copyright 2000 Paolo Scaffardi * Copyright 2000-2002 Wolfgang Denk, w...@denx.de * Copyright 2017-2018 Duncan Hare, d...@synoia.com * SPD

[U-Boot] Make Menuconfig Fails

2017-09-24 Thread Duncan Hare
make menuconfig   HOSTCC  scripts/kconfig/mconf.o In file included from scripts/kconfig/mconf.c:23:0: scripts/kconfig/lxdialog/dialog.h:26:20: fatal error: curses.h: No such file or directory  #include CURSES_LOC Appears CURSES_LOC is undefined. Thanks.  Duncan Hare 714 931 7952

[U-Boot] Patman - Submitting to mailing list

2017-09-28 Thread Duncan Hare
Get the following message from running tools/patman/pathan.py git: 'send-email' is not a git command. See 'git --help'. What do I need to do? Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Request For Comments: wget and TCP listener

2017-10-01 Thread Duncan Hare
packet-in calls to wget. This requires advice on the best implementation. Kconfig is used in ./cmd and ./net to control wget and tcp respectively. Makefile in ./net appears to have to be configured by hand. Duncan Hare . ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Request For Comments: wget and TCP listener

2017-10-01 Thread Duncan Hare
This code is written. and has changes to the following files: I sent an "atomic patch", and it got stuck in moderation because it is 350k+, that is too big. My rules to myself were: All interfaces, function calls, to be preserved. However, This results in an ugly "re-purposing" of variables

[U-Boot] Boot failure - Latest master and Raspberry Pi

2017-10-02 Thread Duncan Hare
Previous I've added these two definitions to use u-boot witht he raspberry pi, into include/configs/rpi.h #define CONFIG_SYS_MAXARGS  32  /* dch doubled from 16    */ #define CONFIG_SYS_BARGSIZE 1540    /* dch added, default 512 */ However on the most recent

[U-Boot] [PATCH] wget and enough TCP stack for fast netboot

2017-09-29 Thread Duncan Hare
r registration purposes. Signed-off-by: Duncan Hare <d...@synoia.com> ---  cmd/Kconfig   |   5 +  cmd/net.c |  13 +  include/net.h | 241 +++-  net/Kconfig   |   5 +  net/Makefile  |   2 +-  net/net.c | 871 ++  net/pin

[U-Boot] Rainbow Screen of Death - Raspberry PI Current u-boot master

2017-09-27 Thread Duncan Hare
I pulled the latest master from git clone git://git.denx.de/u-boot.gitbuilt the raspberry pi imagemake r_3_32b_defconfigmakecopied the u-boot bin the a working sd cardand I get the rainbow screen of death from the pi. When I use a u-boot.bin build from a git clone of u-boot in about Jan 2017,

[U-Boot] u-boot soft and hard ethernet addresses

2017-11-15 Thread Duncan Hare
ardware address, if there is one, into the environment at start time. Otherwise you will always boot with the Ethernet address from the first time the environment was saved. Which make the environment not portable to multiple boards. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH] TCP and wget implementation.

2017-11-23 Thread Duncan Hare
The changes in u-boot to implement this were sent Nov 8, and I've see no mention of it, in the mailing list. What's the next step? Thanks Duncan Hare d...@synoia.com ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] [PATCH] TCP and wget implementation v3

2017-12-19 Thread Duncan Hare
file transfer is a poor fit for UDP. We we lookin at a series of patches, or a concurrent set? The previous patch include all the pvarius change for setting up integration into u-boot. This patch standing by itself cannot be integrated. At a minimun it needs the slightly changed version of ping. Signed-o

[U-Boot] Fw: u-boot soft and hard ethernet addresses

2017-11-16 Thread Duncan Hare
, or delayed, by having gateways, in IP's case NAT gateways, in IBM's SNA it was SNI - SNA Network Interconnect. Because of the extensive use of gateways, the risk of a device's mac address being braodcast to, is hopefully,limited by the gateway. If it is not then one need to buy a better gateway which

[U-Boot] [PATCH] TCP and wget implementation.

2017-11-08 Thread Duncan Hare
are about 4x network latency plus data transit time. In tests this reduces kernel trnasfer time from about 15 to 20 seconds with tftp on a raspberry pi to about 0.4 seconds with wget. The raspberry pi as a sink for the kernel runs at about 10 Mbits/sec. Signed-off-by: Duncan Hare <d...@synoia.

Re: [U-Boot] net: [PATCH v10 3/3] Adding wget

2018-05-14 Thread Duncan Hare
From: Simon Glass <s...@chromium.org> To: Duncan Hare <d...@synoia.com> Cc: "joe.hershber...@ni.com" <joe.hershber...@ni.com>; U-Boot Mailing List <u-boot@lists.denx.de> Sent: Sunday, May 13, 2018 3:00 PM Subject: Re: net: [U-Boot] [PATCH v10 3/3] Add

[U-Boot] arm: Raspberry Pi Compile warnings

2018-05-14 Thread Duncan Hare
Hi Simon Is this is problem? arch/arm/dts/bcm2835-rpi-a-plus.dtb: Warning (phys_property): Missing property '#phy-cells' in node /phy or bad phandle (referred from /soc/usb@7e98:phys[0]) repeated about 6 - 8 times make[2]:'arch/arm/dts/bcm2837-rpi-3-b.dtb' is up to date.

Re: [U-Boot] net: [PATCH v10 3/3] Adding wget

2018-05-13 Thread Duncan Hare
  >> >>Please setup a test that can run in an environment without the >>Internet. That is critical for unit tests. >> >>Hand tests for Internet usage and the environmental effects are great, >>but that can't be what we include in the auto tests for repeat-ability >>reasons. Simon is asking for a

[U-Boot] Patman - How to send patched with errors

2018-05-20 Thread Duncan Hare
Hi Simon I have forgotten how to override the on errors do not sent patchesoption. tools/patman/patman -c3  -? What's the "?" Thanks  Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] SPDX header on .h files

2018-05-20 Thread Duncan Hare
What's the correct format for this header? Patman is complaining about the SPDX header.  Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] Fw: make config Error

2018-06-18 Thread Duncan Hare
From: Karsten Merker To: Duncan Hare Cc: U-Boot Mailing List Sent: Monday, June 18, 2018 11:43 AM Subject: Re: [U-Boot] Fw: make config Error > > In this repository. It might exist elsewhere. > > I generally use raspbian to compile u-boot for the raspberry >

[U-Boot] Fw: make config Error

2018-06-18 Thread Duncan Hare
From: Joe Hershberger To: Duncan Hare Cc: Simon Glass ; Joe Hershberger ; u-boot Sent: Friday, June 15, 2018 12:54 PM Subject: Re: [U-Boot] make config Error On Fri, Jun 15, 2018 at 10:56 AM,  wrote: > installed bison++ I just "sudo apt-get install flex bison" and it

[U-Boot] Make Menuconfig Error

2018-06-19 Thread Duncan Hare
8: recipe for target 'scripts/kconfig/zconf.tab.c' failed make[1]: *** [scripts/kconfig/zconf.tab.c] Error 139 Makefile:491: recipe for target 'menuconfig' failed make: *** [menuconfig] Error 2 root@debian:/home/duncan/archive/u-boot#  Duncan Hare 714 931 7952 __

[U-Boot] Fw: Changing the App to fix a driver problem?

2018-05-30 Thread Duncan Hare
dea. I believe it should be implemented in the driver. Putting it in in the app code leads to confusionas to its purpose. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Make menuconfig error - Status

2018-06-23 Thread Duncan Hare
r target 'menuconfig' failed make: *** [menuconfig] Error 2 Where are we on this? Is there a fix? Thanks  Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] Make menuconfig error - Status

2018-06-23 Thread Duncan Hare
Thanks to all. My problem was I'd installed bison++, not bison. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH] TCP and wget implementation v4

2018-01-05 Thread Duncan Hare
> > > > A note on this TCP implementation. In TCP the transmitting TCP > > guarantees delivery of a stream, and the receiving TCP guarantees > > ordered of delivery of the stream. In this implementation The > > kernel memory buffer and the TCP sequence number is used to order > > the stream. for

[U-Boot] [PATCH] TCP and wget implementation v5.1

2018-01-10 Thread Duncan Hare
. Signed-off-by: Duncan Hare <d...@synoia.com> From: Duncan Hare <d...@synoia.com> Date: Wed, 10 Jan 2018 17:54:07 -0800 Subject: [PATCH] git_msg_1 Signed-off-by: Duncan Hare <d...@synoia.com> --- include/net.h | 32 ++ net/Kconfig | 5 +++ n

Re: [U-Boot] [PATCH] TCP and wget implementation v5.1

2018-01-15 Thread Duncan Hare
Hi Duncan, On Wed, Jan 10, 2018 at 8:18 PM, Duncan Hare <d...@synoia.com> wrote: > Date: Wed, 10 Jan 2018 17:54:07 -0800 > Subject: [PATCH] git_msg_1 > > TCP and wget implementation. Sounds like this should be the title of the series cover letter. I thought we agreed that t

Re: [U-Boot] [PATCH 1/1] efi_loader: add a README.iscsi describing booting via iSCSI

2018-01-26 Thread Duncan Hare
From: Heinrich Schuchardt <xypron.deb...@gmx.de> To: Duncan Hare <d...@synoia.com>; Alexander Graf <ag...@suse.de> Subject: Re: [U-Boot] [PATCH 1/1] efi_loader: add a README.iscsi describing booting via iSCSI On 01/25/2018 08:39 PM, Duncan Hare wrote: >>&

Re: [U-Boot] [PATCH 1/1] efi_loader: add a README.iscsi describing booting via iSCSI

2018-01-25 Thread Duncan Hare
> - Forwarded Message - > From: Alexander Graf > To: Heinrich Schuchardt > > The appended README explains how U-Boot and iPXE can be used > > to boot a diskless system from an iSCSI SAN. > > > > The maintainer for README.efi and README.iscsi is set.

Re: [U-Boot] [PATCH] TCP and wget implementation. Ptch V5 1 of 3

2018-01-29 Thread Duncan Hare
> The patch is trying to put everything into net.c. This is a mess and > not where we should head to. Not at all. I tried that and it was correctly rejected. The TCP functions are in tcp.c, and the wget functions in wget.c There is no socket. There is no socket analogue. There is no widespread

[U-Boot] [PATCH] TCP and wget implementation. Ptch V5 1 of 3

2018-01-28 Thread Duncan Hare
. Signed-off-by: Duncan Hare <duncanch...@yahoo.com> --- include/net.h | 32 ++ net/Kconfig | 5 +++ net/net.c | 102 +++--- net/ping.c| 9 ++ 4 files changed, 115 insertions(+), 33 deletions(-) diff

[U-Boot] Where is the edge between a loader and (microkernel) OS

2018-02-01 Thread Duncan Hare
module. Tedious? yes. Coding? No. Testing? Yes but less than new code. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

[U-Boot] Subject: [PATCH 2/3] TCP and wget implementation. Patch V5, 2 of 3.

2018-01-29 Thread Duncan Hare
This is the TCP and Kconfig files for introducing TCP and wget into u-boot. All the code is new, and not copied from any source. Makefile in the net directory is modified by hand. It appears not to be generated by Kconfig. Signed-off-by: Duncan Hare <duncanch...@yahoo.com> --- net/Ma

[U-Boot] TCP & Overrrun

2018-02-07 Thread Duncan Hare
h.c drivers/net/mpc8xx_fec.c drivers/net/at91_emac.c drivers/net/ethoc.c drivers/net/fsl_mcdmafec.c drivers/net/bcm-sf2-eth.c drivers/net/enc28j60.c drivers/net/smc9.c drivers/net/macb.c drivers/net/pic32_eth.c Thanks Duncan Hare ___ U-Boot mail

Re: [U-Boot] TCP & Overrrun

2018-02-08 Thread Duncan Hare
On Thu, 8 Feb 2018 22:15:44 + (UTC) Duncan Hare <d...@synoia.com> wrote: >  Duncan Hare > > 714 931 7952 > > > - Forwarded Message - > From: Joe Hershberger <joe.hershber...@ni.com> > To: Duncan Hare <d...@synoia.com> > Cc: u

Re: [U-Boot] TCP & Overrrun

2018-02-10 Thread Duncan Hare
On Sun, 11 Feb 2018 00:39:05 + (UTC) Duncan Hare <d...@synoia.com> wrote: >  Duncan Hare > > 714 931 7952 > > > - Forwarded Message - > From: Joe Hershberger <joe.hershber...@ni.com> > To: Duncan Hare <d...@synoia.com> > Cc: Joe

Re: [U-Boot] TCP Patch Set

2018-02-21 Thread Duncan Hare
On Mon, 12 Feb 2018 13:35:11 -0600 Joe Hershberger wrote: > >> >> > >> >> > I need to determine if it > >> >> > uses CONFIG_SYS_RX_ETH_BUFFER" from net.h and the > >> >> > "net_rx_packets" buffer pool defined in net/net.c > >> >> > > >> > > >> > Two solutions: > >> >

Re: [U-Boot] ARM64 Allwinner Binary Size

2017-12-20 Thread Duncan Hare
From: Jagan Teki <jagannadh.t...@gmail.com> On Wed, Dec 20, 2017 at 11:22 PM, Duncan Hare <d...@synoia.com> wrote: >> An observation: The Banana PI boards, allwinner based, I've use have a >> boot.scr file on the fat partition to direct booting. >> A Sug

[U-Boot] ARM64 Allwinner Binary Size

2017-12-20 Thread Duncan Hare
this as an observation and suggestion. It may have no merit. Duncan Hare 714 931 7952 ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH] TCP and wget implementation v4

2018-01-03 Thread Duncan Hare
> >>>selects the LIB_RAND feature since it is required. > > > > Thanks: will be in u-boot/cmd/Kconfig > > > >>Are we lookin at a series of patches, or a concurrent set? > > > > At this time a series of three, but I'd take advice on the preferred > > procedure. > > Remember that the goal

Re: [U-Boot] [PATCH] TCP and wget implementation v3

2018-01-03 Thread Duncan Hare
>>selects the LIB_RAND feature since it is required. Thanks: will be in u-boot/cmd/Kconfig >Are we lookin at a series of patches, or a concurrent set? At this time a series of three, but I'd take advice on the preferred procedure. (1) cmd/Kconfig cmd/net.c net/Kconfig net/net.c net/ping.c

[U-Boot] Fw: Make Menuconfig Error

2018-06-21 Thread Duncan Hare
>From: Karsten Merker >To: Duncan Hare >Cc: U-Boot Mailing List >Sent: Wednesday, June 20, 2018 2:16 PM >Subject: Re: Make Menuconfig Error > >On Wed, Jun 20, 2018 at 12:33:45AM +, Duncan Hare wrote: > >> Makefile:491: recipe for target 'menuconfig' f

[U-Boot] dhcp command not populating dnsip environment variable

2018-03-15 Thread Duncan Hare
In the latest version of u-boot, the dhcp command appears not to populate the environment variable dnsip. This used to be the behaviour. The dns command works, if dnsip is populated manually. Is the a Kconfig variable controlling this? Or is there a new environment variable? Thanks Duncan Hare

Re: [U-Boot] dhcp command not populating dnsip environment variable

2018-03-15 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: Duncan Hare <d...@synoia.com> Cc: u-boot <u-boot@lists.denx.de>; Joe Hershberger <joe.hershber...@ni.com> Sent: Thursday, March 15, 2018 1:29 PM Subject: Re: [U-Boot] dhcp command not populating dnsip environment

[U-Boot] U-boot Hush Environment

2018-03-14 Thread Duncan Hare
the configuration incorrect? How can I make it do what was the default behavior? If it is an enhancement, It's not very user friendly. It makes IBM's VM/370 edit command look positively useful. Thanks Duncan Hare (d...@synoia.com) ___ U-Boot mailing list U-Boot

[U-Boot] Bootcmd, Autorun and Hush Shell

2018-03-15 Thread Duncan Hare
value either left arrow, or backspace. Is the edit function now changed? Thanks Duncan Hare ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v2 03/11] net: Move net command options to the cmd menu

2018-04-13 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Chris Packham <judge.

Re: [U-Boot] [PATCH v10 3/3] Adding wget

2018-04-18 Thread Duncan Hare
Hi Duncan, On 14 April 2018 at 17:43,  <d...@synoia.com> wrote: >> From: Duncan Hare <duncanch...@yahoo.com> >> > Why http and wget: >> END Why END? Don't know.  will delete. > > Signed-off-by: Duncan Hare <duncanch...@yahoo.com> > --- >

Re: [U-Boot] [PATCH v10 3/3] Adding wget

2018-04-25 Thread Duncan Hare
From: Simon Glass <s...@chromium.org> To: Duncan Hare <d...@synoia.com> Cc: U-Boot Mailing List <u-boot@lists.denx.de>; Joe Hershberger <joe.hershber...@ni.com> Sent: Tuesday, April 24, 2018 10:01 PM Subject: Re: [PATCH v10 3/3] Adding wget Hi Duncan, On 22 Apr

Re: [U-Boot] [PATCH v10 3/3] Adding wget

2018-04-22 Thread Duncan Hare
>From: Simon Glass <s...@chromium.org> >To: Duncan Hare <d...@synoia.com> >Sent: Sunday, April 22, 2018 1:10 PM >Subject: Re: [PATCH v10 3/3] Adding wget > >Hi Duncan, >On 17 April 2018 at 15:58, Duncan Hare <d...@synoia.com> wrote: >> From: S

Re: [U-Boot] Network Packet Buffers: raspberrypi: variable uchar *net_rx_packets[PKTBUFSRX] in net/net.c

2018-04-22 Thread Duncan Hare
From: Simon Glass <s...@chromium.org> To: Duncan Hare <d...@synoia.com> Cc: Joe Hershberger <joe.hershber...@ni.com>; U-Boot Mailing List <u-boot@lists.denx.de> Sent: Sunday, April 22, 2018 1:15 PM Subject: Re: Network Packet Buffers: raspberrypi: variable uchar *

[U-Boot] Network Packet Buffers: raspberrypi: variable uchar *net_rx_packets[PKTBUFSRX] in net/net.c

2018-04-17 Thread Duncan Hare
pool a part of the u-boot image? Thanks Duncan Hare ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH 1/9] net: Make CMD_NET a menuconfig

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 7/9] net: Make the BOOTP options default

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 5/9] net: Add the BOOTP_DNS2 option to Kconfig

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 3/9] net: Move the DHCP command below the BOOTP command

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 0/9] net: Clean up the menus and dependencies among commands and options

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 8/9] net: Make core net code depend on NET instead of CMD_NET

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 6/9] net: Improve BOOTP PXE config option

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] [PATCH 9/9] Revert "Kconfig: cmd: Make networking command dependent on NET"

2018-03-29 Thread Duncan Hare
From: Joe Hershberger <joe.hershber...@ni.com> To: u-boot@lists.denx.de Cc: Heinrich <schuchardt.xypron.deb...@gmx.de>; Michal Simek <michal.si...@xilinx.com>; Simon Glass <s...@chromium.org>; Duncan Hare <d...@synoia.com>; Tom Rini <tr...@konsulko

Re: [U-Boot] dhcp command not populating dnsip environment variable

2018-03-16 Thread Duncan Hare
  On Thu, Mar 15, 2018 at 3:25 PM, Duncan Hare <d...@synoia.com> wrote: > In the latest version of u-boot, the dhcp command appears not to > populate the environment variable dnsip. This used to be the behaviour.  ___ The bootp.c code

[U-Boot] dhcp command not populating dnsip environment variable

2018-03-18 Thread Duncan Hare
Cause: u-boot/Kconfig DISTRO_DEFAULTS missing variables in Kconfig files u-boot/ config DISTRO_DEFAULTS contains these directives: select HUSH_PARSER select BOOTP_BOOTPATH if NET && CMD_NET select BOOTP_DNS if NET && CMD_NET select BOOTP_GATEWAY if NET && CMD_NET

Re: [U-Boot] [PATCH v8 1/3] Adding TCP and wget into u-boot

2018-03-18 Thread Duncan Hare
On Sat, 17 Mar 2018 16:36:14 + Calvin Johnson wrote: > It would be good to have this cosmetic change into a separate patch. Ok. But at this stage I'm at the "Forgive me Lord for I know not what I do" > IMO, better place for this definition and associated

Re: [U-Boot] [PATCH v8 1/3] Adding TCP and wget into u-boot

2018-03-19 Thread Duncan Hare
On Mon, 19 Mar 2018 09:53:24 + Calvin Johnson wrote: > > > > > void net_set_udp_header(uchar *pkt, struct in_addr dest, int > > > > dport, > > > > - int sport, int len); > > > > - > > > > + int sport, int len); >

[U-Boot] Fw: dhcp command not populating dnsip environment variable

2018-03-19 Thread Duncan Hare
Begin forwarded message: Date: Mon, 19 Mar 2018 14:57:59 -0700 From: Duncan Hare <d...@synoia.com> To: Duncan Hare <d...@synoia.com> Subject: Re: [U-Boot] dhcp command not populating dnsip environment variable > >On Sun, Mar 18, 2018 at 3:01 PM, Duncan Hare <d...@synoia.co

[U-Boot] usb command missing?

2018-03-02 Thread Duncan Hare
. u-boot reports the usb command is unknown. Thanks Duncan Hare ___ U-Boot mailing list U-Boot@lists.denx.de https://lists.denx.de/listinfo/u-boot

Re: [U-Boot] [PATCH v10 3/3] Adding wget

2018-04-25 Thread Duncan Hare
From: Simon Glass <s...@chromium.org> To: Duncan Hare <d...@synoia.com> Cc: Wolfgang Denk <w...@denx.de>; U-Boot Mailing List <u-boot@lists.denx.de>; Joe Hershberger <joe.hershber...@ni.com> Sent: Wednesday, April 25, 2018 4:44 PM Subject: Re: [PATCH v10

Re: [U-Boot] [PATCH v12 1/3] Consolidating UDP header functions.

2018-09-19 Thread Duncan Hare
>On Sun, Jun 24, 2018 at 5:40 PM,  wrote:. >From: Duncan Hare > >> To make it possible to add TCP versions of the same, while reusing >> IP portions. This patch should not change any behavior. >> >> All references to TCP removed >> Used most recent versi

Raspberry PI 4 and U-boot

2020-06-15 Thread Duncan Hare
Duncan Hare 714 931 7952

Re: [PATCH v17 1/2] net: Add TCP protocol

2022-10-20 Thread Duncan Hare
ransfers are done using tftp or NFS both >> > over udp. This requires a request to be sent from client >> > (u-boot) to the boot server. >> > >> > The current standard is TCP with selective acknowledgment. >> > >> > Signed-off-by: Duncan Hare >&g

Re: [PATCH v20 1/4] net: Add TCP protocol

2022-11-28 Thread Duncan Hare
Thank you all for taking this over the finish line. I Duncan Hare 714 931 7952DRE# 01350926 On Monday, November 28, 2022 at 11:52:23 AM PST, Tom Rini wrote: On Tue, Nov 08, 2022 at 02:17:28PM +0800, Ying-Chun Liu (PaulLiu) wrote: > From: "Ying-Chun Liu (PaulLiu)" &