From: Paulo Alcantara Date: Fri, 15 Apr 2011 18:21:10 +0000 (-0300) Subject: extlinux: remove already_installed X-Git-Tag: syslinux-4.04~2^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=205b829d0d9b6a6fe72b49b7ab763c75e27ebcdc;p=profile%2Fivi%2Fsyslinux.git extlinux: remove already_installed Signed-off-by: Paulo Alcantara --- diff --git a/extlinux/main.c b/extlinux/main.c index fb3cc77..e5212a9 100755 --- a/extlinux/main.c +++ b/extlinux/main.c @@ -503,19 +503,6 @@ int install_file(const char *path, int devfd, struct stat *rst) return 1; } -/* - * SYSLINUX installs the string 'SYSLINUX' at offset 3 in the boot - * sector; this is consistent with FAT filesystems. Earlier versions - * would install the string "EXTLINUX" instead, handle both. - */ -int already_installed(int devfd) -{ - char buffer[8]; - - xpread(devfd, buffer, 8, 3); - return !memcmp(buffer, "SYSLINUX", 8) || !memcmp(buffer, "EXTLINUX", 8); -} - #ifdef __KLIBC__ static char devname_buf[64];