From 205b829d0d9b6a6fe72b49b7ab763c75e27ebcdc Mon Sep 17 00:00:00 2001 From: Paulo Alcantara Date: Fri, 15 Apr 2011 15:21:10 -0300 Subject: extlinux: remove already_installed Signed-off-by: Paulo Alcantara --- extlinux/main.c | 13 ------------- 1 file changed, 13 deletions(-) (limited to 'extlinux/main.c') diff --git a/extlinux/main.c b/extlinux/main.c index fb3cc779..e5212a95 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]; -- cgit v1.2.1