ports/sysutils/mmc-utils/files/patch-mmc.h
Marius Strobl 1c2892dd91 Add a port of mmc-utils, a collection of tools for MMC/SD devices.
Among others, this allows to partition eMMC devices via /dev/mmcsdN.
Currently, FreeBSD version 1200025 or later is required for mmc-utils.

CAVEAT EMPTOR: Partitioning eMMC devices is a one-time operation.
2017-03-16 22:36:04 +00:00

25 lines
648 B
C

--- mmc.h.orig 2017-01-25 19:03:34 UTC
+++ mmc.h
@@ -17,8 +17,22 @@
* those modifications are Copyright (c) 2016 SanDisk Corp.
*/
+#if defined(__linux__)
#include <asm-generic/int-ll64.h>
#include <linux/mmc/ioctl.h>
+#elif defined(__FreeBSD__)
+#include <dev/mmc/mmc_ioctl.h>
+#include <sys/endian.h>
+#include <sys/types.h>
+typedef int8_t __s8;
+typedef uint8_t __u8;
+typedef int16_t __s16;
+typedef uint16_t __u16;
+typedef int32_t __s32;
+typedef uint32_t __u32;
+typedef int64_t __s64;
+typedef uint64_t __u64;
+#endif
#include <stdio.h>
#define CHECK(expr, msg, err_stmt) { if (expr) { fprintf(stderr, msg); err_stmt; } }