diff options
author | Peter Korsgaard <jacmet@sunsite.dk> | 2008-02-14 15:49:48 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2008-02-14 15:49:48 +0000 |
commit | 54255463b27e650d0717a33ae0cedac66863eb93 (patch) | |
tree | 3cf919cf77da1e2c3689bfe98cb244f7f5bb61b2 /package/busybox/busybox-1.9.0-mkswap.patch | |
parent | 7c44a53354bfd602c4e88523a849b5507c66c0d0 (diff) | |
download | buildroot-novena-54255463b27e650d0717a33ae0cedac66863eb93.tar.gz buildroot-novena-54255463b27e650d0717a33ae0cedac66863eb93.zip |
busybox: bump version to 1.9.1
Diffstat (limited to 'package/busybox/busybox-1.9.0-mkswap.patch')
-rw-r--r-- | package/busybox/busybox-1.9.0-mkswap.patch | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/package/busybox/busybox-1.9.0-mkswap.patch b/package/busybox/busybox-1.9.0-mkswap.patch deleted file mode 100644 index ac7e1ecc5..000000000 --- a/package/busybox/busybox-1.9.0-mkswap.patch +++ /dev/null @@ -1,15 +0,0 @@ ---- busybox-1.9.0/util-linux/mkswap.c Fri Dec 21 22:00:33 2007 -+++ busybox-1.9.0-mkswap/util-linux/mkswap.c Sat Feb 2 18:55:31 2008 -@@ -64,9 +64,10 @@ - // Figure out how big the device is and announce our intentions. - - fd = xopen(argv[1], O_RDWR); -- len = fdlength(fd); -+ len = lseek(fd, 0, SEEK_END); -+ lseek(fd, 0, SEEK_SET); - pagesize = getpagesize(); -- printf("Setting up swapspace version 1, size = %"OFF_FMT"d bytes\n", -+ printf("Setting up swapspace version 1, size = %"OFF_FMT"u bytes\n", - len - pagesize); - mkswap_selinux_setcontext(fd, argv[1]); - |