The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / libnspr / 0002-microblaze.patch
1 Add Microblaze support
2
3 [Gustavo: update for nspr 4.10.6]
4 Signed-off-by: Spenser Gilliland <spenser@gillilanding.com>
5
6 diff -Nura nspr-4.10.6.nios2/nspr/pr/include/md/_linux.cfg nspr-4.10.6/nspr/pr/include/md/_linux.cfg
7 --- nspr-4.10.6.nios2/nspr/pr/include/md/_linux.cfg     2014-06-18 10:29:15.816361425 -0300
8 +++ nspr-4.10.6/nspr/pr/include/md/_linux.cfg   2014-06-18 10:26:59.908768508 -0300
9 @@ -969,6 +969,56 @@
10  #define PR_BYTES_PER_WORD_LOG2   2
11  #define PR_BYTES_PER_DWORD_LOG2  3
12  
13 +#elif defined(__microblaze__)
14 +
15 +#if defined(__BIG_ENDIAN__)
16 +#define IS_BIG_ENDIAN 1
17 +#undef  IS_LITTLE_ENDIAN
18 +#else
19 +#define IS_LITTLE_ENDIAN 1
20 +#undef  IS_BIG_ENDIAN
21 +#endif
22 +
23 +#define PR_BYTES_PER_BYTE   1
24 +#define PR_BYTES_PER_SHORT  2
25 +#define PR_BYTES_PER_INT    4
26 +#define PR_BYTES_PER_INT64  8
27 +#define PR_BYTES_PER_LONG   4
28 +#define PR_BYTES_PER_FLOAT  4
29 +#define PR_BYTES_PER_DOUBLE 8
30 +#define PR_BYTES_PER_WORD   4
31 +#define PR_BYTES_PER_DWORD  8
32 +
33 +#define PR_BITS_PER_BYTE    8
34 +#define PR_BITS_PER_SHORT   16
35 +#define PR_BITS_PER_INT     32
36 +#define PR_BITS_PER_INT64   64
37 +#define PR_BITS_PER_LONG    32
38 +#define PR_BITS_PER_FLOAT   32
39 +#define PR_BITS_PER_DOUBLE  64
40 +#define PR_BITS_PER_WORD    32
41 +
42 +#define PR_BITS_PER_BYTE_LOG2   3
43 +#define PR_BITS_PER_SHORT_LOG2  4
44 +#define PR_BITS_PER_INT_LOG2    5
45 +#define PR_BITS_PER_INT64_LOG2  6
46 +#define PR_BITS_PER_LONG_LOG2   5
47 +#define PR_BITS_PER_FLOAT_LOG2  5
48 +#define PR_BITS_PER_DOUBLE_LOG2 6
49 +#define PR_BITS_PER_WORD_LOG2   5
50 +
51 +#define PR_ALIGN_OF_SHORT   2
52 +#define PR_ALIGN_OF_INT     4
53 +#define PR_ALIGN_OF_LONG    4
54 +#define PR_ALIGN_OF_INT64   4
55 +#define PR_ALIGN_OF_FLOAT   4
56 +#define PR_ALIGN_OF_DOUBLE  4
57 +#define PR_ALIGN_OF_POINTER 4
58 +#define PR_ALIGN_OF_WORD    4
59 +
60 +#define PR_BYTES_PER_WORD_LOG2   2
61 +#define PR_BYTES_PER_DWORD_LOG2  3
62 +
63  #else
64  
65  #error "Unknown CPU architecture"
66 diff -Nura nspr-4.10.6.nios2/nspr/pr/include/md/_linux.h nspr-4.10.6/nspr/pr/include/md/_linux.h
67 --- nspr-4.10.6.nios2/nspr/pr/include/md/_linux.h       2014-06-18 10:29:15.817361459 -0300
68 +++ nspr-4.10.6/nspr/pr/include/md/_linux.h     2014-06-18 10:26:59.909768537 -0300
69 @@ -55,6 +55,8 @@
70  #define _PR_SI_ARCHITECTURE "avr32"
71  #elif defined(__m32r__)
72  #define _PR_SI_ARCHITECTURE "m32r"
73 +#elif defined(__microblaze__)
74 +#define _PR_SI_ARCHITECTURE "microblaze"
75  #elif defined(nios2)
76  #define _PR_SI_ARCHITECTURE "nios2"
77  #else