From 997985d79e5813e8a33e82fb0cc0c0f08cf2c55d Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Tue, 15 Mar 2011 21:51:46 +0100 Subject: libupload: New library to manage uploads This commit creates a library to upload content via 3 backends (srec/ymodem/tftp). Code came from sysdump and got librarized for being used more easily by more other com32 modules. --- com32/sysdump/vesa.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'com32/sysdump/vesa.c') diff --git a/com32/sysdump/vesa.c b/com32/sysdump/vesa.c index 017f9e4f..aebed182 100644 --- a/com32/sysdump/vesa.c +++ b/com32/sysdump/vesa.c @@ -1,10 +1,10 @@ #include #include #include "../lib/sys/vesa/vesa.h" -#include "backend.h" +#include "../libupload/upload_backend.h" #include "sysdump.h" -void dump_vesa_tables(struct backend *be) +void dump_vesa_tables(struct upload_backend *be) { com32sys_t rm; struct vesa_info *vip; -- cgit v1.2.1 From 43258aa5a29a4624350e1d689d9ae1c58c3472fe Mon Sep 17 00:00:00 2001 From: Erwan Velu Date: Wed, 16 Mar 2011 21:39:55 +0100 Subject: sysdump: Fixing includes This patch remove ugly relative includes like ../something.h --- com32/sysdump/vesa.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'com32/sysdump/vesa.c') diff --git a/com32/sysdump/vesa.c b/com32/sysdump/vesa.c index aebed182..42adc3da 100644 --- a/com32/sysdump/vesa.c +++ b/com32/sysdump/vesa.c @@ -1,7 +1,6 @@ #include #include -#include "../lib/sys/vesa/vesa.h" -#include "../libupload/upload_backend.h" +#include #include "sysdump.h" void dump_vesa_tables(struct upload_backend *be) -- cgit v1.2.1