Просмотр исходного кода

dosfstools: update to latest stable, use new github url

Waldemar Brodkorb 8 лет назад
Родитель
Сommit
c950169c2a
2 измененных файлов с 4 добавлено и 60 удалено
  1. 4 4
      package/dosfstools/Makefile
  2. 0 56
      package/dosfstools/patches/patch-src_mkfs_fat_c

+ 4 - 4
package/dosfstools/Makefile

@@ -4,13 +4,13 @@
 include ${ADK_TOPDIR}/rules.mk
 
 PKG_NAME:=		dosfstools
-PKG_VERSION:=		3.0.26
-PKG_RELEASE:=		5
-PKG_HASH:=		468442fe8cd93961047d5cd67f7b67793126575103a67cd131330512b4893e75
+PKG_VERSION:=		3.0.28
+PKG_RELEASE:=		1
+PKG_HASH:=		ee95913044ecf2719b63ea11212917649709a6e53209a72d622135aaa8517ee2
 PKG_DESCR:=		utilities to create and check fat filesystems
 PKG_SECTION:=		sys/fs
 PKG_URL:=		http://www.daniel-baumann.ch/software/dosfstools/
-PKG_SITES:=		http://daniel-baumann.ch/files/software/dosfstools/
+PKG_SITES:=		https://github.com/dosfstools/dosfstools/releases/download/v$(PKG_VERSION)/
 
 include ${ADK_TOPDIR}/mk/package.mk
 

+ 0 - 56
package/dosfstools/patches/patch-src_mkfs_fat_c

@@ -1,56 +0,0 @@
---- dosfstools-3.0.26.orig/src/mkfs.fat.c	2014-02-08 18:53:10.000000000 +0100
-+++ dosfstools-3.0.26/src/mkfs.fat.c	2014-03-26 13:37:51.000000000 +0100
-@@ -300,7 +300,7 @@ static long do_check(char *buffer, int t
- static void alarm_intr(int alnum);
- static void check_blocks(void);
- static void get_list_blocks(char *filename);
--static int valid_offset(int fd, loff_t offset);
-+static int valid_offset(int fd, off_t offset);
- static uint64_t count_blocks(char *filename, int *remainder);
- static void check_mount(char *device_name);
- static void establish_params(int device_num, int size);
-@@ -477,7 +477,7 @@ static void get_list_blocks(char *filena
- /* Given a file descriptor and an offset, check whether the offset is a valid offset for the file - return FALSE if it
-    isn't valid or TRUE if it is */
- 
--static int valid_offset(int fd, loff_t offset)
-+static int valid_offset(int fd, off_t offset)
- {
-     char ch;
- 
-@@ -492,7 +492,7 @@ static int valid_offset(int fd, loff_t o
- 
- static uint64_t count_blocks(char *filename, int *remainder)
- {
--    loff_t high, low;
-+    off_t high, low;
-     int fd;
- 
-     if ((fd = open(filename, O_RDONLY)) < 0) {
-@@ -506,7 +506,7 @@ static uint64_t count_blocks(char *filen
- 	for (high = 1; valid_offset(fd, high); high *= 2)
- 	    low = high;
- 	while (low < high - 1) {
--	    const loff_t mid = (low + high) / 2;
-+	    const off_t mid = (low + high) / 2;
- 	    if (valid_offset(fd, mid))
- 		low = mid;
- 	    else
-@@ -1299,7 +1299,7 @@ static void setup_tables(void)
- 
- #define seekto(pos,errstr)						\
-   do {									\
--    loff_t __pos = (pos);						\
-+    off_t __pos = (pos);						\
-     if (llseek (dev, __pos, SEEK_SET) != __pos)				\
- 	error ("seek to " errstr " failed whilst writing tables");	\
-   } while(0)
-@@ -1679,7 +1679,7 @@ int main(int argc, char **argv)
- 	    exit(1);		/* The error exit code is 1! */
- 	}
-     } else {
--	loff_t offset = blocks * BLOCK_SIZE - 1;
-+	off_t offset = blocks * BLOCK_SIZE - 1;
- 	char null = 0;
- 	/* create the file */
- 	dev = open(device_name, O_EXCL | O_RDWR | O_CREAT | O_TRUNC, 0666);