Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
build
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CodeLinaro
lf
build
Commits
23431a69
Commit
23431a69
authored
12 years ago
by
Michael Vines
Committed by
Gerrit - the friendly Code Review server
12 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Reuse gonk-misc/b2g.mk. Remove fakeperm, drmserver and installd.
Change-Id: I2db7e619d12bf4688a4bc3430e835e5479a4b87d
parent
e1c682f9
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
b2g_product.mk
+3
-20
3 additions, 20 deletions
b2g_product.mk
patch/ics/build/build.patch
+17
-2
17 additions, 2 deletions
patch/ics/build/build.patch
patch/ics/frameworks/base/disable-ServiceManager-permission-check.patch
+16
-0
16 additions, 0 deletions
...eworks/base/disable-ServiceManager-permission-check.patch
with
36 additions
and
22 deletions
b2g_product.mk
+
3
−
20
View file @
23431a69
...
...
@@ -25,26 +25,9 @@
# OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
# IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
HTTP
=
android# Disable chrome HTTP stack
in
frameworks/base/media/libstagefright/Android.mk
PRODUCT_PACKAGES
+=
b2g.sh fakeperm gaia gecko init.b2g.rc
PRODUCT_PACKAGES
+=
librecovery
PRODUCT_PACKAGES
+=
\
OpenSans-BoldItalic.ttf
\
OpenSans-Bold.ttf
\
OpenSans-ExtraBoldItalic.ttf
\
OpenSans-ExtraBold.ttf
\
OpenSans-Italic.ttf
\
OpenSans-LightItalic.ttf
\
OpenSans-Light.ttf
\
OpenSans-Regular.ttf
\
OpenSans-SemiboldItalic.ttf
\
OpenSans-Semibold.ttf
\
MozTT-Bold.ttf
\
MozTT-Light.ttf
\
MozTT-Medium.ttf
\
MozTT-Regular.ttf
\
include
gonk-misc/b2g.mk
TARGET_PROVIDES_INIT_RC
:=
PRODUCT_PACKAGES
:=
$(
filter-out fakeperm rilproxy,
$(
PRODUCT_PACKAGES
))
PRODUCT_PROPERTY_OVERRIDES
+=
\
ro.moz.ril.emergency_by_default
=
true
This diff is collapsed.
Click to expand it.
patch/ics/build/build.patch
+
17
−
2
View file @
23431a69
...
...
@@ -27,7 +27,7 @@ diff --git a/target/product/core.mk b/target/product/core.mk
index abb2d9f..c3c6e9e 100644
--- a/target/product/core.mk
+++ b/target/product/core.mk
@@ -23,4
5
+23,11 @@
PRODUCT_PROPERTY_OVERRIDES := \
@@ -23,4
6
+23,11 @@
PRODUCT_PROPERTY_OVERRIDES := \
ro.config.alarm_alert=Alarm_Classic.ogg
PRODUCT_PACKAGES := \
...
...
@@ -70,9 +70,24 @@ index abb2d9f..c3c6e9e 100644
- framework-res \
hprof-conv \
- icu.dat \
installd \
-
installd \
ip \
ip-up-vpn \
ip6tables \
diff --git a/target/product/full_base.mk b/target/product/full_base.mk
index d89af51..e220778 100644
--- a/target/product/full_base.mk
+++ b/target/product/full_base.mk
@@ -20,9 +20,6 @@
# in inherited configurations.
PRODUCT_PACKAGES := \
- drmserver \
- libdrmframework \
- libdrmframework_jni \
libfwdlockengine \
OpenWnn \
PinyinIME \
diff --git a/target/product/generic_no_telephony.mk b/target/product/generic_no_telephony.mk
index 5169f4e..4a4d57e 100644
--- a/target/product/generic_no_telephony.mk
...
...
This diff is collapsed.
Click to expand it.
patch/ics/frameworks/base/disable-ServiceManager-permission-check.patch
0 → 100644
+
16
−
0
View file @
23431a69
diff --git a/libs/binder/IServiceManager.cpp b/libs/binder/IServiceManager.cpp
index 1fa4c35..8fdfb4b 100644
--- a/libs/binder/IServiceManager.cpp
+++ b/libs/binder/IServiceManager.cpp
@@ -61,7 +61,7 @@
bool checkCallingPermission(const String16& permission, int32_t* outPid, int32_t
uid_t uid = ipcState->getCallingUid();
if (outPid) *outPid = pid;
if (outUid) *outUid = uid;
- return checkPermission(permission, pid, uid);
+ return true;
}
bool checkPermission(const String16& permission, pid_t pid, uid_t uid)
--
1.7.8.3
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment