summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorOwen Kirby <osk@exegin.com>2014-05-08 13:36:14 -0700
committerSascha Hauer <s.hauer@pengutronix.de>2014-05-09 08:37:51 +0200
commit7b0260afdfe99a500271a0861a26fca6eb4afe1d (patch)
treef08119ff6ddd925c1d167126408d1192847b803d /commands
parent73ebc58ed112f1115fb215cd0d93d2e9a9ffc282 (diff)
downloadbarebox-7b0260afdfe99a500271a0861a26fca6eb4afe1d.tar.gz
barebox-7b0260afdfe99a500271a0861a26fca6eb4afe1d.tar.xz
Fix the options and protocols used by the loadx command.
From 3cd970250ff17ac406e46e18ebb26aa35949d1db Mon Sep 17 00:00:00 2001 From: Owen Kirby <osk@exegin.com> Date: Thu, 8 May 2014 13:27:11 -0700 Subject: [PATCH] Fix the options and protocols used by the loadx command. It seems like the loadx command was improperly copy/pasted from the loady implementation, and was trying to load files using the ymodem protocol. This patch should fix the command so that it uses xmodem, implements the -t option and outputs the correct baudrate being used. Signed-off-by: Owen Kirby <osk@exegin.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/loadxy.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/commands/loadxy.c b/commands/loadxy.c
index 93a423c148..694f0f02b7 100644
--- a/commands/loadxy.c
+++ b/commands/loadxy.c
@@ -156,7 +156,7 @@ static int do_loadx(int argc, char *argv[])
char *output_file = NULL, *cname = NULL;
struct console_device *cdev = NULL;
- while ((opt = getopt(argc, argv, "f:b:o:c")) > 0) {
+ while ((opt = getopt(argc, argv, "f:b:t:o:c")) > 0) {
switch (opt) {
case 'f':
output_file = optarg;
@@ -211,12 +211,12 @@ static int do_loadx(int argc, char *argv[])
}
current_baudrate = console_change_speed(cdev, load_baudrate);
- printf("## Ready for binary (X-Modem) download "
+ printf("## Ready for binary (xmodem) download "
"to 0x%08lX offset on %s device at %d bps...\n", offset,
- output_file, load_baudrate);
- rcode = do_load_serial_ymodem(cdev);
+ output_file, load_baudrate ? load_baudrate : current_baudrate);
+ rcode = do_load_serial_xmodem(cdev, ofd);
if (rcode < 0) {
- printf("## Binary (kermit) download aborted (%d)\n", rcode);
+ printf("## Binary (xmodem) download aborted (%d)\n", rcode);
rcode = 1;
}
console_change_speed(cdev, current_baudrate);