From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alexander Holler Date: Thu, 14 Aug 2014 10:25:09 +0200 Subject: [U-Boot] [PATCH 1/4] Add option -r to env import to allow import of text files with CRLF as line endings In-Reply-To: <53DA9F98.9050506@wwwdotorg.org> References: <1405352998-7707-1-git-send-email-holler@ahsoftware.de> <1405352998-7707-2-git-send-email-holler@ahsoftware.de> <53D9761D.8050304@wwwdotorg.org> <20140731195130.GT19374@bill-the-cat> <53DA9F98.9050506@wwwdotorg.org> Message-ID: <53EC7265.2080909@ahsoftware.de> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Am 31.07.2014 21:57, schrieb Stephen Warren: > Huh, I do see that now. I must have been looking at the content of > common/cmd_nvedit.c from the wrong branch, which didn't include that > patch. I could have sworn I checked git history too, but evidently not. > It is indeed clearly there right before the patches which use it. Sorry > for the noise. As I've just remembered where I did see your name before, the config for the rpi (as found in 2004.04) misses the uenvcmd. That's necessary to execute commands when using uEnv.txt. It's easily done with something like the following: "env import -t -r $loadaddr $filesize;" \ "if test -n \"$uenvcmd\"; then " \ "echo \"Running uenvcmd ...\";" \ "run uenvcmd;" \ "fi;" \ Regards, Alexander Holler