summaryrefslogtreecommitdiff
path: root/LOLLIPOP-STABLE-PATCHSET
blob: 4f107cae0e3958ff1976584a7f3b5ea5127fcafb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#!/bin/sh

. $(dirname $0)/functions

PATCHES=0
if [ -n "$1" ]; then
        AOSP="$1"
else
        AOSP="`pwd`"
fi

if ! [ -d "$AOSP" ] && ! [ -d "$AOSP/bionic" ] && [ -d "$AOSP"/build ]; then
        echo "This script must be run from the AOSP source directory"
        echo "or with the AOSP source directory as its first parameter."
        exit 1
fi

##################################################
################ Non-upstreamable ################
##################################################
# Include bionic tests patch http://review.android.git.linaro.org/#/c/15288/
apply --linaro system/extras 15288/2

##################################################
################ Backport ########################
##################################################
# Include fix for monkey crash on browser package:
# https://android-review.googlesource.com/#/c/118963
apply packages/apps/Browser 118963/1
# Fix Java detection on Linux distributions that
# rely on update-alternatives to allow several JDKs
# to coexist
cherrypick build 311384fec340a7f2f76ca7f45599987df4341d5b
# Allow the Denver implementation of memset to build
# with clang
cherrypick bionic ce46f5576ad0c9aefd842492949c4d2965e23e89
# Allow Bionic to build with clang
apply --linaro bionic 15515/1
# Allow skia to build with giflib 5.1
apply external/skia 151010/1

##################################################
################## Bug fixes #####################
##################################################
# Uninitialized variable
apply --linaro external/bluetooth/bluedroid 15610/1
# Fix API check on build hosts with modern glibc versions
apply system/core 114555/1
# Make sure HAVE_MALLOC_H has a value to make updated sqlite happy
cherrypick build 9b44afb4529d743e291d6565d6fbe463cd8c964b

##################################################
################ Temporary fix ###################
##################################################
# Include patch for start and stop file path for bootchart:
# https://android-review.googlesource.com/#/c/117071/
apply --linaro system/core 15367/2
apply --linaro external/sepolicy 15506/1

# patch to integrate tjbench test on jpeg project
apply --linaro external/jpeg 15791/1

##################################################
#### Optimizations not yet submitted upstream ####
##################################################

########################################################
#### Backports of optimizations submitted to master ####
########################################################

##################################################
################ Linaro hack   ###################
##################################################