]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
sp-oops-extract: correct dos/unix newlines in stdint patch
authorPeter Korsgaard <peter@korsgaard.com>
Wed, 6 Jan 2016 08:55:44 +0000 (09:55 +0100)
committerPeter Korsgaard <peter@korsgaard.com>
Wed, 6 Jan 2016 08:59:03 +0000 (09:59 +0100)
Fixes:
http://autobuild.buildroot.net/results/f72/f72fc7189cbc7191f1b75a8ebd1fc319650c8e2e/

The source code uses dos newlines, so the patch has to do so as well,
otherwise apply-patches.sh fails to apply the patch.

Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
package/sp-oops-extract/0002-stdint-cleanup.patch

index 70317a768d38c90e70b35d0e722f1f791b4e70a4..255fe8a8ce8707d4ef10c668fa0c7b4984f1ae70 100644 (file)
@@ -10,24 +10,24 @@ Index: sp-oops-extract-0.0.7-1/src/oopslog.c
 --- sp-oops-extract-0.0.7-1.orig/src/oopslog.c
 +++ sp-oops-extract-0.0.7-1/src/oopslog.c
 @@ -64,8 +64,8 @@ static int try_to_check_for_bad_blocks(v
- int main(const int argc, const char *argv[])
- {
--      u_int32_t *count, maxcount = 0xffffffff;
--      u_int32_t *magic_ptr, magic_value = 0x5d005d00;
-+      uint32_t *count, maxcount = 0xffffffff;
-+      uint32_t *magic_ptr, magic_value = 0x5d005d00;
-       
-       unsigned char *charbuf;
-       unsigned long size;
\r
+ int main(const int argc, const char *argv[])\r
+ {\r
+-      u_int32_t *count, maxcount = 0xffffffff;\r
+-      u_int32_t *magic_ptr, magic_value = 0x5d005d00;\r
++      uint32_t *count, maxcount = 0xffffffff;\r
++      uint32_t *magic_ptr, magic_value = 0x5d005d00;\r
+       \r
+       unsigned char *charbuf;\r
+       unsigned long size;\r
 @@ -137,8 +137,8 @@ int main(const int argc, const char *arg
-               errx(-1, "%s is something weird", device);
-       charbuf = buf;  
--      count = (u_int32_t *) buf;
--      magic_ptr = (u_int32_t *) (buf + sizeof(u_int32_t));
-+      count = (uint32_t *) buf;
-+      magic_ptr = (uint32_t *) (buf + sizeof(uint32_t));
-       for (i = 0; i < (size / OOPS_PAGE_SIZE); i++) {
-               pread(fd, buf, OOPS_PAGE_SIZE, i * OOPS_PAGE_SIZE);
+               errx(-1, "%s is something weird", device);\r
\r
+       charbuf = buf;  \r
+-      count = (u_int32_t *) buf;\r
+-      magic_ptr = (u_int32_t *) (buf + sizeof(u_int32_t));\r
++      count = (uint32_t *) buf;\r
++      magic_ptr = (uint32_t *) (buf + sizeof(uint32_t));\r
\r
+       for (i = 0; i < (size / OOPS_PAGE_SIZE); i++) {\r
+               pread(fd, buf, OOPS_PAGE_SIZE, i * OOPS_PAGE_SIZE);\r