diff options
author | H. Peter Anvin <hpa@zytor.com> | 2010-02-06 21:55:03 -0800 |
---|---|---|
committer | H. Peter Anvin <hpa@zytor.com> | 2010-02-06 21:55:03 -0800 |
commit | 22c6d03bba83a3c68971e1927628ede12a3b618c (patch) | |
tree | 99e73a5c2d9ffd5a5f91674d1fb7542aafc9a81b /com32/sysdump/be_tftp.c | |
parent | f6fb77dbc062f0fbc1672f37dc1560cdbc08083d (diff) | |
download | syslinux.git-22c6d03bba83a3c68971e1927628ede12a3b618c.tar.gz syslinux.git-22c6d03bba83a3c68971e1927628ede12a3b618c.tar.xz syslinux.git-22c6d03bba83a3c68971e1927628ede12a3b618c.zip |
sysdump: add back ymodem support; clean up memory dump structure
Now we just need more front ends (information providers)...
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
Diffstat (limited to 'com32/sysdump/be_tftp.c')
-rw-r--r-- | com32/sysdump/be_tftp.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/com32/sysdump/be_tftp.c b/com32/sysdump/be_tftp.c index 9d945f3f..61dd4ecf 100644 --- a/com32/sysdump/be_tftp.c +++ b/com32/sysdump/be_tftp.c @@ -121,7 +121,10 @@ static int be_tftp_write(struct backend *be, const char *buf, size_t len) struct backend be_tftp = { .name = "tftp", + .helpmsg = "filename tftp_server", + .minargs = 2, .blocksize = 512, + .flags = 0, .open = be_tftp_open, .write = be_tftp_write, }; |