diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 13:07:00 +1000 |
---|---|---|
committer | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2010-09-14 13:07:00 +1000 |
commit | a6a2325ecf402054132daae169f71edb0fb849e3 (patch) | |
tree | 97ede2815e2dd15a01515517c0495a64720414e3 | |
parent | c31744ca1a86b2276c37c6d9a884660185debed6 (diff) | |
parent | 020465218ccff1195a47a890037db37d0395c9d9 (diff) | |
download | busybox-w32-a6a2325ecf402054132daae169f71edb0fb849e3.tar.gz busybox-w32-a6a2325ecf402054132daae169f71edb0fb849e3.tar.bz2 busybox-w32-a6a2325ecf402054132daae169f71edb0fb849e3.zip |
Merge branch 'origin/master' (early part)
Conflicts:
shell/ash.c
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | archival/unzip.c | 13 | ||||
-rw-r--r-- | e2fsprogs/old_e2fsprogs/e2fsck.c | 4 | ||||
-rw-r--r-- | libbb/get_line_from_file.c | 5 | ||||
-rw-r--r-- | modutils/depmod.c | 2 | ||||
-rw-r--r-- | shell/ash.c | 44 | ||||
-rw-r--r-- | shell/ash_test/ash-standalone/var_standalone1.right | 1 | ||||
-rwxr-xr-x | shell/ash_test/ash-standalone/var_standalone1.tests | 2 | ||||
-rwxr-xr-x | testsuite/cpio.tests | 6 | ||||
-rw-r--r-- | util-linux/Config.src | 6 | ||||
-rw-r--r-- | util-linux/hwclock.c | 7 | ||||
-rw-r--r-- | util-linux/mkfs_ext2.c | 13 | ||||
-rw-r--r-- | win32/sys/times.h | 0 |
13 files changed, 40 insertions, 64 deletions
diff --git a/.gitignore b/.gitignore index b7840e494..53bd540a2 100644 --- a/.gitignore +++ b/.gitignore | |||
@@ -6,6 +6,7 @@ | |||
6 | *.o.* | 6 | *.o.* |
7 | *.a | 7 | *.a |
8 | *.s | 8 | *.s |
9 | Kbuild | ||
9 | 10 | ||
10 | # | 11 | # |
11 | # Never ignore these | 12 | # Never ignore these |
diff --git a/archival/unzip.c b/archival/unzip.c index 1d3291ab8..84081c021 100644 --- a/archival/unzip.c +++ b/archival/unzip.c | |||
@@ -150,23 +150,26 @@ enum { zip_fd = 3 }; | |||
150 | 150 | ||
151 | 151 | ||
152 | #if ENABLE_DESKTOP | 152 | #if ENABLE_DESKTOP |
153 | |||
154 | #define PEEK_FROM_END 16384 | ||
155 | |||
153 | /* NB: does not preserve file position! */ | 156 | /* NB: does not preserve file position! */ |
154 | static uint32_t find_cdf_offset(void) | 157 | static uint32_t find_cdf_offset(void) |
155 | { | 158 | { |
156 | unsigned char buf[1024]; | ||
157 | cde_header_t cde_header; | 159 | cde_header_t cde_header; |
158 | unsigned char *p; | 160 | unsigned char *p; |
159 | off_t end; | 161 | off_t end; |
162 | unsigned char *buf = xzalloc(PEEK_FROM_END); | ||
160 | 163 | ||
161 | end = xlseek(zip_fd, 0, SEEK_END); | 164 | end = xlseek(zip_fd, 0, SEEK_END); |
162 | end -= 1024; | 165 | end -= PEEK_FROM_END; |
163 | if (end < 0) | 166 | if (end < 0) |
164 | end = 0; | 167 | end = 0; |
165 | xlseek(zip_fd, end, SEEK_SET); | 168 | xlseek(zip_fd, end, SEEK_SET); |
166 | full_read(zip_fd, buf, 1024); | 169 | full_read(zip_fd, buf, PEEK_FROM_END); |
167 | 170 | ||
168 | p = buf; | 171 | p = buf; |
169 | while (p <= buf + 1024 - CDE_HEADER_LEN - 4) { | 172 | while (p <= buf + PEEK_FROM_END - CDE_HEADER_LEN - 4) { |
170 | if (*p != 'P') { | 173 | if (*p != 'P') { |
171 | p++; | 174 | p++; |
172 | continue; | 175 | continue; |
@@ -180,8 +183,10 @@ static uint32_t find_cdf_offset(void) | |||
180 | /* we found CDE! */ | 183 | /* we found CDE! */ |
181 | memcpy(cde_header.raw, p + 1, CDE_HEADER_LEN); | 184 | memcpy(cde_header.raw, p + 1, CDE_HEADER_LEN); |
182 | FIX_ENDIANNESS_CDE(cde_header); | 185 | FIX_ENDIANNESS_CDE(cde_header); |
186 | free(buf); | ||
183 | return cde_header.formatted.cdf_offset; | 187 | return cde_header.formatted.cdf_offset; |
184 | } | 188 | } |
189 | //free(buf); | ||
185 | bb_error_msg_and_die("can't find file table"); | 190 | bb_error_msg_and_die("can't find file table"); |
186 | }; | 191 | }; |
187 | 192 | ||
diff --git a/e2fsprogs/old_e2fsprogs/e2fsck.c b/e2fsprogs/old_e2fsprogs/e2fsck.c index 7384bc453..4c4c78d00 100644 --- a/e2fsprogs/old_e2fsprogs/e2fsck.c +++ b/e2fsprogs/old_e2fsprogs/e2fsck.c | |||
@@ -29,10 +29,6 @@ | |||
29 | * Licensed under GPLv2 or later, see file License in this tarball for details. | 29 | * Licensed under GPLv2 or later, see file License in this tarball for details. |
30 | */ | 30 | */ |
31 | 31 | ||
32 | #ifndef _GNU_SOURCE | ||
33 | #define _GNU_SOURCE 1 /* get strnlen() */ | ||
34 | #endif | ||
35 | |||
36 | #include "e2fsck.h" /*Put all of our defines here to clean things up*/ | 32 | #include "e2fsck.h" /*Put all of our defines here to clean things up*/ |
37 | 33 | ||
38 | #define _(x) x | 34 | #define _(x) x |
diff --git a/libbb/get_line_from_file.c b/libbb/get_line_from_file.c index 3cb46d240..cbfb45b7c 100644 --- a/libbb/get_line_from_file.c +++ b/libbb/get_line_from_file.c | |||
@@ -9,11 +9,6 @@ | |||
9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 9 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
10 | */ | 10 | */ |
11 | 11 | ||
12 | /* for getline() [GNUism] | ||
13 | #ifndef _GNU_SOURCE | ||
14 | #define _GNU_SOURCE 1 | ||
15 | #endif | ||
16 | */ | ||
17 | #include "libbb.h" | 12 | #include "libbb.h" |
18 | 13 | ||
19 | /* This function reads an entire line from a text file, up to a newline | 14 | /* This function reads an entire line from a text file, up to a newline |
diff --git a/modutils/depmod.c b/modutils/depmod.c index 4718c4dcb..c734f142b 100644 --- a/modutils/depmod.c +++ b/modutils/depmod.c | |||
@@ -8,8 +8,6 @@ | |||
8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. | 8 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
9 | */ | 9 | */ |
10 | 10 | ||
11 | #undef _GNU_SOURCE | ||
12 | #define _GNU_SOURCE | ||
13 | #include "libbb.h" | 11 | #include "libbb.h" |
14 | #include "modutils.h" | 12 | #include "modutils.h" |
15 | #include <sys/utsname.h> /* uname() */ | 13 | #include <sys/utsname.h> /* uname() */ |
diff --git a/shell/ash.c b/shell/ash.c index 89e70c1ee..5ac2a1922 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -48,18 +48,13 @@ | |||
48 | 48 | ||
49 | #define JOBS ENABLE_ASH_JOB_CONTROL | 49 | #define JOBS ENABLE_ASH_JOB_CONTROL |
50 | 50 | ||
51 | #if DEBUG | ||
52 | # ifndef _GNU_SOURCE | ||
53 | # define _GNU_SOURCE | ||
54 | # endif | ||
55 | #endif | ||
56 | |||
57 | #include "busybox.h" /* for applet_names */ | 51 | #include "busybox.h" /* for applet_names */ |
58 | #ifndef __MINGW32__ | 52 | #ifndef __MINGW32__ |
59 | #include <paths.h> | 53 | #include <paths.h> |
60 | #endif | 54 | #endif |
61 | #include <setjmp.h> | 55 | #include <setjmp.h> |
62 | #include <fnmatch.h> | 56 | #include <fnmatch.h> |
57 | #include <sys/times.h> | ||
63 | 58 | ||
64 | #include "shell_common.h" | 59 | #include "shell_common.h" |
65 | #include "math.h" | 60 | #include "math.h" |
@@ -7572,6 +7567,7 @@ tryexec(IF_FEATURE_SH_STANDALONE(int applet_no,) char *cmd, char **argv, char ** | |||
7572 | #if ENABLE_FEATURE_SH_STANDALONE | 7567 | #if ENABLE_FEATURE_SH_STANDALONE |
7573 | if (applet_no >= 0) { | 7568 | if (applet_no >= 0) { |
7574 | if (APPLET_IS_NOEXEC(applet_no)) { | 7569 | if (APPLET_IS_NOEXEC(applet_no)) { |
7570 | clearenv(); | ||
7575 | while (*envp) | 7571 | while (*envp) |
7576 | putenv(*envp++); | 7572 | putenv(*envp++); |
7577 | run_applet_no_and_exit(applet_no, argv); | 7573 | run_applet_no_and_exit(applet_no, argv); |
@@ -7631,7 +7627,7 @@ shellexec(char **argv, const char *path, int idx) | |||
7631 | #endif | 7627 | #endif |
7632 | 7628 | ||
7633 | clearredir(/*drop:*/ 1); | 7629 | clearredir(/*drop:*/ 1); |
7634 | envp = listvars(VEXPORT, VUNSET, 0); | 7630 | envp = listvars(VEXPORT, VUNSET, /*end:*/ NULL); |
7635 | if ((strchr(argv[0], '/') || (ENABLE_PLATFORM_MINGW32 && strchr(argv[0], '\\'))) | 7631 | if ((strchr(argv[0], '/') || (ENABLE_PLATFORM_MINGW32 && strchr(argv[0], '\\'))) |
7636 | #if ENABLE_FEATURE_SH_STANDALONE | 7632 | #if ENABLE_FEATURE_SH_STANDALONE |
7637 | || (applet_no = find_applet_by_name(argv[0])) >= 0 | 7633 | || (applet_no = find_applet_by_name(argv[0])) >= 0 |
@@ -12962,7 +12958,7 @@ unsetfunc(const char *name) | |||
12962 | struct tblentry *cmdp; | 12958 | struct tblentry *cmdp; |
12963 | 12959 | ||
12964 | cmdp = cmdlookup(name, 0); | 12960 | cmdp = cmdlookup(name, 0); |
12965 | if (cmdp!= NULL && cmdp->cmdtype == CMDFUNCTION) | 12961 | if (cmdp != NULL && cmdp->cmdtype == CMDFUNCTION) |
12966 | delete_cmd_entry(); | 12962 | delete_cmd_entry(); |
12967 | } | 12963 | } |
12968 | 12964 | ||
@@ -12979,7 +12975,7 @@ unsetcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
12979 | int flag = 0; | 12975 | int flag = 0; |
12980 | int ret = 0; | 12976 | int ret = 0; |
12981 | 12977 | ||
12982 | while ((i = nextopt("vf")) != '\0') { | 12978 | while ((i = nextopt("vf")) != 0) { |
12983 | flag = i; | 12979 | flag = i; |
12984 | } | 12980 | } |
12985 | 12981 | ||
@@ -12996,13 +12992,10 @@ unsetcmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
12996 | return ret & 1; | 12992 | return ret & 1; |
12997 | } | 12993 | } |
12998 | 12994 | ||
12999 | |||
13000 | /* setmode.c */ | 12995 | /* setmode.c */ |
13001 | 12996 | ||
13002 | #if !ENABLE_PLATFORM_MINGW32 | 12997 | #if !ENABLE_PLATFORM_MINGW32 |
13003 | 12998 | ||
13004 | #include <sys/times.h> | ||
13005 | |||
13006 | static const unsigned char timescmd_str[] ALIGN1 = { | 12999 | static const unsigned char timescmd_str[] ALIGN1 = { |
13007 | ' ', offsetof(struct tms, tms_utime), | 13000 | ' ', offsetof(struct tms, tms_utime), |
13008 | '\n', offsetof(struct tms, tms_stime), | 13001 | '\n', offsetof(struct tms, tms_stime), |
@@ -13010,11 +13003,10 @@ static const unsigned char timescmd_str[] ALIGN1 = { | |||
13010 | '\n', offsetof(struct tms, tms_cstime), | 13003 | '\n', offsetof(struct tms, tms_cstime), |
13011 | 0 | 13004 | 0 |
13012 | }; | 13005 | }; |
13013 | |||
13014 | static int FAST_FUNC | 13006 | static int FAST_FUNC |
13015 | timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | 13007 | timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) |
13016 | { | 13008 | { |
13017 | long clk_tck, s, t; | 13009 | unsigned long clk_tck, s, t; |
13018 | const unsigned char *p; | 13010 | const unsigned char *p; |
13019 | struct tms buf; | 13011 | struct tms buf; |
13020 | 13012 | ||
@@ -13025,11 +13017,13 @@ timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
13025 | do { | 13017 | do { |
13026 | t = *(clock_t *)(((char *) &buf) + p[1]); | 13018 | t = *(clock_t *)(((char *) &buf) + p[1]); |
13027 | s = t / clk_tck; | 13019 | s = t / clk_tck; |
13028 | out1fmt("%ldm%ld.%.3lds%c", | 13020 | t = t % clk_tck; |
13029 | s/60, s%60, | 13021 | out1fmt("%lum%lu.%03lus%c", |
13030 | ((t - s * clk_tck) * 1000) / clk_tck, | 13022 | s / 60, s % 60, |
13023 | (t * 1000) / clk_tck, | ||
13031 | p[0]); | 13024 | p[0]); |
13032 | } while (*(p += 2)); | 13025 | p += 2; |
13026 | } while (*p); | ||
13033 | 13027 | ||
13034 | return 0; | 13028 | return 0; |
13035 | } | 13029 | } |
@@ -13043,7 +13037,7 @@ timescmd(int argc UNUSED_PARAM, char **argv UNUSED_PARAM) | |||
13043 | 13037 | ||
13044 | #if ENABLE_SH_MATH_SUPPORT | 13038 | #if ENABLE_SH_MATH_SUPPORT |
13045 | /* | 13039 | /* |
13046 | * The let builtin. partial stolen from GNU Bash, the Bourne Again SHell. | 13040 | * The let builtin. Partially stolen from GNU Bash, the Bourne Again SHell. |
13047 | * Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc. | 13041 | * Copyright (C) 1987, 1989, 1991 Free Software Foundation, Inc. |
13048 | * | 13042 | * |
13049 | * Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru> | 13043 | * Copyright (C) 2003 Vladimir Oleynik <dzo@simtreas.ru> |
@@ -13062,18 +13056,6 @@ letcmd(int argc UNUSED_PARAM, char **argv) | |||
13062 | 13056 | ||
13063 | return !i; | 13057 | return !i; |
13064 | } | 13058 | } |
13065 | #endif /* SH_MATH_SUPPORT */ | ||
13066 | |||
13067 | |||
13068 | /* ============ miscbltin.c | ||
13069 | * | ||
13070 | * Miscellaneous builtins. | ||
13071 | */ | ||
13072 | |||
13073 | #undef rflag | ||
13074 | |||
13075 | #if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 1 | ||
13076 | typedef enum __rlimit_resource rlim_t; | ||
13077 | #endif | 13059 | #endif |
13078 | 13060 | ||
13079 | /* | 13061 | /* |
diff --git a/shell/ash_test/ash-standalone/var_standalone1.right b/shell/ash_test/ash-standalone/var_standalone1.right new file mode 100644 index 000000000..37457fd74 --- /dev/null +++ b/shell/ash_test/ash-standalone/var_standalone1.right | |||
@@ -0,0 +1 @@ | |||
Done: 1 | |||
diff --git a/shell/ash_test/ash-standalone/var_standalone1.tests b/shell/ash_test/ash-standalone/var_standalone1.tests new file mode 100755 index 000000000..1e905ba75 --- /dev/null +++ b/shell/ash_test/ash-standalone/var_standalone1.tests | |||
@@ -0,0 +1,2 @@ | |||
1 | VAR=42 $THIS_SH -c 'unset VAR; env | grep ^VAR' | ||
2 | echo Done: $? | ||
diff --git a/testsuite/cpio.tests b/testsuite/cpio.tests index 42e3ff8dc..5b397b01c 100755 --- a/testsuite/cpio.tests +++ b/testsuite/cpio.tests | |||
@@ -97,14 +97,14 @@ usr | |||
97 | " "" "" | 97 | " "" "" |
98 | SKIP= | 98 | SKIP= |
99 | 99 | ||
100 | # chown on a link was affecting file, dropping its sgid bits | 100 | # chown on a link was affecting file, dropping its suid/sgid bits |
101 | rm -rf cpio.testdir | 101 | rm -rf cpio.testdir |
102 | optional FEATURE_CPIO_O | 102 | optional FEATURE_CPIO_O |
103 | mkdir cpio.testdir | 103 | mkdir cpio.testdir |
104 | touch cpio.testdir/file | 104 | touch cpio.testdir/file |
105 | chmod 6755 cpio.testdir/file # set the suid/sgid bit | 105 | chmod 6755 cpio.testdir/file # sets suid/sgid bits |
106 | ln -sf file cpio.testdir/link | 106 | ln -sf file cpio.testdir/link |
107 | testing "cpio restores sgid bits" \ | 107 | testing "cpio restores suid/sgid bits" \ |
108 | "cd cpio.testdir && { echo file; echo link; } | cpio -ovHnewc >pack.cpio && rm ???? && cpio -idmvu <pack.cpio 2>/dev/null; | 108 | "cd cpio.testdir && { echo file; echo link; } | cpio -ovHnewc >pack.cpio && rm ???? && cpio -idmvu <pack.cpio 2>/dev/null; |
109 | stat -c '%a %n' file" \ | 109 | stat -c '%a %n' file" \ |
110 | "\ | 110 | "\ |
diff --git a/util-linux/Config.src b/util-linux/Config.src index e97125917..3c3e05ec4 100644 --- a/util-linux/Config.src +++ b/util-linux/Config.src | |||
@@ -472,7 +472,7 @@ config FEATURE_USE_TERMIOS | |||
472 | 472 | ||
473 | config VOLUMEID | 473 | config VOLUMEID |
474 | bool #No description makes it a hidden option | 474 | bool #No description makes it a hidden option |
475 | default y | 475 | default n |
476 | 476 | ||
477 | config FEATURE_VOLUMEID_EXT | 477 | config FEATURE_VOLUMEID_EXT |
478 | bool "Ext filesystem" | 478 | bool "Ext filesystem" |
@@ -725,7 +725,7 @@ config FEATURE_MOUNT_HELPERS | |||
725 | The idea is to use such virtual filesystems in /etc/fstab. | 725 | The idea is to use such virtual filesystems in /etc/fstab. |
726 | 726 | ||
727 | config FEATURE_MOUNT_LABEL | 727 | config FEATURE_MOUNT_LABEL |
728 | bool "Support specifiying devices by label or UUID" | 728 | bool "Support specifying devices by label or UUID" |
729 | default y | 729 | default y |
730 | depends on MOUNT | 730 | depends on MOUNT |
731 | select VOLUMEID | 731 | select VOLUMEID |
@@ -930,7 +930,7 @@ config FEATURE_MTAB_SUPPORT | |||
930 | If you must use this, keep in mind it's inherently brittle (for | 930 | If you must use this, keep in mind it's inherently brittle (for |
931 | example a mount under chroot won't update it), can't handle modern | 931 | example a mount under chroot won't update it), can't handle modern |
932 | features like separate per-process filesystem namespaces, requires | 932 | features like separate per-process filesystem namespaces, requires |
933 | that your /etc directory be writeable, tends to get easily confused | 933 | that your /etc directory be writable, tends to get easily confused |
934 | by --bind or --move mounts, won't update if you rename a directory | 934 | by --bind or --move mounts, won't update if you rename a directory |
935 | that contains a mount point, and so on. (In brief: avoid.) | 935 | that contains a mount point, and so on. (In brief: avoid.) |
936 | 936 | ||
diff --git a/util-linux/hwclock.c b/util-linux/hwclock.c index 416271b31..3da2e23c3 100644 --- a/util-linux/hwclock.c +++ b/util-linux/hwclock.c | |||
@@ -12,13 +12,6 @@ | |||
12 | #include <sys/utsname.h> | 12 | #include <sys/utsname.h> |
13 | #include "rtc_.h" | 13 | #include "rtc_.h" |
14 | 14 | ||
15 | #if ENABLE_FEATURE_HWCLOCK_LONG_OPTIONS | ||
16 | # ifndef _GNU_SOURCE | ||
17 | # define _GNU_SOURCE | ||
18 | # endif | ||
19 | #endif | ||
20 | |||
21 | |||
22 | /* diff code is disabled: it's not sys/hw clock diff, it's some useless | 15 | /* diff code is disabled: it's not sys/hw clock diff, it's some useless |
23 | * "time between hwclock was started and we saw CMOS tick" quantity. | 16 | * "time between hwclock was started and we saw CMOS tick" quantity. |
24 | * It's useless since hwclock is started at a random moment, | 17 | * It's useless since hwclock is started at a random moment, |
diff --git a/util-linux/mkfs_ext2.c b/util-linux/mkfs_ext2.c index fd54734fc..14feb9288 100644 --- a/util-linux/mkfs_ext2.c +++ b/util-linux/mkfs_ext2.c | |||
@@ -140,7 +140,7 @@ static void PUT(uint64_t off, void *buf, uint32_t size) | |||
140 | // only for directories, which never need i_size_high). | 140 | // only for directories, which never need i_size_high). |
141 | // | 141 | // |
142 | // Standard mke2fs creates a filesystem with 256-byte inodes if it is | 142 | // Standard mke2fs creates a filesystem with 256-byte inodes if it is |
143 | // bigger than 0.5GB. So far, we do not do this. | 143 | // bigger than 0.5GB. |
144 | 144 | ||
145 | // Standard mke2fs 1.41.9: | 145 | // Standard mke2fs 1.41.9: |
146 | // Usage: mke2fs [-c|-l filename] [-b block-size] [-f fragment-size] | 146 | // Usage: mke2fs [-c|-l filename] [-b block-size] [-f fragment-size] |
@@ -210,17 +210,20 @@ int mkfs_ext2_main(int argc UNUSED_PARAM, char **argv) | |||
210 | 210 | ||
211 | // using global "option_mask32" instead of local "opts": | 211 | // using global "option_mask32" instead of local "opts": |
212 | // we are register starved here | 212 | // we are register starved here |
213 | opt_complementary = "-1:b+:m+:i+"; | 213 | opt_complementary = "-1:b+:i+:I+:m+"; |
214 | /*opts =*/ getopt32(argv, "cl:b:f:i:I:J:G:N:m:o:g:L:M:O:r:E:T:U:jnqvFS", | 214 | /*opts =*/ getopt32(argv, "cl:b:f:i:I:J:G:N:m:o:g:L:M:O:r:E:T:U:jnqvFS", |
215 | NULL, &bs, NULL, &bpi, &user_inodesize, NULL, NULL, NULL, | 215 | /*lbfi:*/ NULL, &bs, NULL, &bpi, |
216 | &reserved_percent, NULL, NULL, &label, NULL, NULL, NULL, NULL, NULL, NULL); | 216 | /*IJGN:*/ &user_inodesize, NULL, NULL, NULL, |
217 | /*mogL:*/ &reserved_percent, NULL, NULL, &label, | ||
218 | /*MOrE:*/ NULL, NULL, NULL, NULL, | ||
219 | /*TU:*/ NULL, NULL); | ||
217 | argv += optind; // argv[0] -- device | 220 | argv += optind; // argv[0] -- device |
218 | 221 | ||
219 | // open the device, check the device is a block device | 222 | // open the device, check the device is a block device |
220 | xmove_fd(xopen(argv[0], O_WRONLY), fd); | 223 | xmove_fd(xopen(argv[0], O_WRONLY), fd); |
221 | fstat(fd, &st); | 224 | fstat(fd, &st); |
222 | if (!S_ISBLK(st.st_mode) && !(option_mask32 & OPT_F)) | 225 | if (!S_ISBLK(st.st_mode) && !(option_mask32 & OPT_F)) |
223 | bb_error_msg_and_die("not a block device"); | 226 | bb_error_msg_and_die("%s: not a block device", argv[0]); |
224 | 227 | ||
225 | // check if it is mounted | 228 | // check if it is mounted |
226 | // N.B. what if we format a file? find_mount_point will return false negative since | 229 | // N.B. what if we format a file? find_mount_point will return false negative since |
diff --git a/win32/sys/times.h b/win32/sys/times.h new file mode 100644 index 000000000..e69de29bb --- /dev/null +++ b/win32/sys/times.h | |||