forked from pool/busybox
95e97af54a
- busybox-1.19.4-typedef_umode_t.patch: fix compile as umode_t is only defined with KERNEL and is used in header linux/linux/ext2_fs.h - update to 1.19.4 - fix getty, mdev, modinfo and wget - update to 1.19.3 - fix chpasswd, crond, inetd, syslogd, tail, tftp - update to 1.19.2 - fix ash/hush, cttyhack, find, grep, less, patch, sed, top, uncompress - update to 1.19.0: - countless fixes in all utility programs, please see http://www.busybox.net/ for details - remove obsolete patches previously marked as upstreamed - busybox-1.19.4-typedef_umode_t.patch: fix compile as umode_t is only defined with KERNEL and is used in header linux/linux/ext2_fs.h - update to 1.19.4 - fix getty, mdev, modinfo and wget - update to 1.19.3 - fix chpasswd, crond, inetd, syslogd, tail, tftp - update to 1.19.2 - fix ash/hush, cttyhack, find, grep, less, patch, sed, top, uncompress - update to 1.19.0: - countless fixes in all utility programs, please see http://www.busybox.net/ for details OBS-URL: https://build.opensuse.org/request/show/113102 OBS-URL: https://build.opensuse.org/package/show/Base:System/busybox?expand=0&rev=18
13 lines
242 B
Diff
13 lines
242 B
Diff
--- util-linux/mkfs_ext2.c
|
|
+++ util-linux/mkfs_ext2.c
|
|
@@ -48,6 +48,9 @@
|
|
|
|
#include "libbb.h"
|
|
#include <linux/fs.h>
|
|
+
|
|
+typedef unsigned short umode_t;
|
|
+
|
|
#include <linux/ext2_fs.h>
|
|
|
|
#define ENABLE_FEATURE_MKFS_EXT2_RESERVED_GDT 0
|