mirror of
https://git.freebsd.org/ports.git
synced 2025-06-26 07:00:31 -04:00
This is basically PR ports/141166 by Boris Samorodov, which updates the code to version 3.83 and splits the patches into smaller chunks to ease future updates. I have only touched the indentation in one function in patch-mtools_syslinux.c Submitted-by: Boris Samorodov PR: 141166
21 lines
708 B
C
21 lines
708 B
C
--- libinstaller/syslinux.h.orig 2009-10-06 02:06:06.000000000 +0400
|
|
+++ libinstaller/syslinux.h 2009-12-04 10:09:04.000000000 +0300
|
|
@@ -17,15 +17,15 @@
|
|
#include "advconst.h"
|
|
|
|
/* The standard boot sector and ldlinux image */
|
|
-extern unsigned char syslinux_bootsect[];
|
|
+extern unsigned char *syslinux_bootsect;
|
|
extern unsigned int syslinux_bootsect_len;
|
|
extern int syslinux_bootsect_mtime;
|
|
|
|
-extern unsigned char syslinux_ldlinux[];
|
|
+extern unsigned char *syslinux_ldlinux;
|
|
extern unsigned int syslinux_ldlinux_len;
|
|
extern int syslinux_ldlinux_mtime;
|
|
|
|
-extern unsigned char syslinux_mbr[];
|
|
+extern unsigned char *syslinux_mbr;
|
|
extern unsigned int syslinux_mbr_len;
|
|
extern int syslinux_mbr_mtime;
|
|
|