summaryrefslogtreecommitdiffstats
path: root/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch
diff options
context:
space:
mode:
authorAndrea Adami <andrea.adami@gmail.com>2012-04-29 22:51:33 +0000
committerKoen Kooi <koen@dominion.thruhere.net>2012-04-30 10:16:17 +0200
commit00bf241a99aab5003993fb2107d72f02b7377470 (patch)
tree06d01a8584d2629553bb1daee714ab07040536fc /meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch
parent8f9b2e3a102e66426ce5b269a6827fc6a3218bef (diff)
downloadast2050-yocto-openembedded-00bf241a99aab5003993fb2107d72f02b7377470.zip
ast2050-yocto-openembedded-00bf241a99aab5003993fb2107d72f02b7377470.tar.gz
ubi-utils-klibc: initial commit of version 1.4.9
* Initially only ubiattach was targeted (for kexecboot project). * Based on klibc_1.5.25, will be revised once new klibc is out. Signed-off-by: Andrea Adami <andrea.adami@gmail.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
Diffstat (limited to 'meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch')
-rw-r--r--meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch73
1 files changed, 73 insertions, 0 deletions
diff --git a/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch
new file mode 100644
index 0000000..e603859
--- /dev/null
+++ b/meta-initramfs/recipes-devtools/mtd/ubi-utils-klibc/libubi.c.patch
@@ -0,0 +1,73 @@
+--- a/ubi-utils/libubi.c 2012-04-29 21:44:52.000000000 +0200
++++ b/ubi-utils/libubi.c 2012-04-29 21:43:52.000000000 +0200
+@@ -36,6 +36,26 @@
+ #include "libubi_int.h"
+ #include "common.h"
+
++/* parts of mtd/ubi-user.h */
++
++/* Set an UBI volume property */
++#define UBI_IOCSETPROP _IOW(UBI_VOL_IOC_MAGIC, 6, struct ubi_set_prop_req)
++
++/**
++ * struct ubi_set_prop_req - a data structure used to set an ubi volume
++ * property.
++ * @property: property to set (%UBI_PROP_DIRECT_WRITE)
++ * @padding: reserved for future, not used, has to be zeroed
++ * @value: value to set
++ */
++struct ubi_set_prop_req {
++ uint8_t property;
++ uint8_t padding[7];
++ uint64_t value;
++} __attribute__ ((packed));
++
++/* end parts of mtd/ubi-user.h */
++
+ /**
+ * mkpath - compose full path from 2 given components.
+ * @path: the first component
+@@ -382,8 +402,8 @@
+ return errmsg("\"%s\" is not a character device", node);
+ }
+
+- major = major(st.st_rdev);
+- minor = minor(st.st_rdev);
++ major = __major(st.st_rdev);
++ minor = __minor(st.st_rdev);
+
+ if (minor == 0) {
+ errno = EINVAL;
+@@ -448,8 +468,8 @@
+ return errmsg("\"%s\" is not a character device", node);
+ }
+
+- major = major(st.st_rdev);
+- minor = minor(st.st_rdev);
++ major = __major(st.st_rdev);
++ minor = __minor(st.st_rdev);
+
+ if (minor != 0) {
+ errno = EINVAL;
+@@ -757,8 +777,8 @@
+ mtd_dev_node);
+ }
+
+- major = major(sb.st_rdev);
+- minor = minor(sb.st_rdev);
++ major = __major(sb.st_rdev);
++ minor = __minor(sb.st_rdev);
+
+ if (major != MTD_CHAR_MAJOR) {
+ errno = EINVAL;
+@@ -866,8 +886,8 @@
+ return -1;
+ }
+
+- major = major(st.st_rdev);
+- minor = minor(st.st_rdev);
++ major = __major(st.st_rdev);
++ minor = __minor(st.st_rdev);
+
+ if (ubi_get_info((libubi_t *)lib, &info))
+ return -1;
OpenPOWER on IntegriCloud