summaryrefslogtreecommitdiffstats
path: root/cmds
Commit message (Collapse)AuthorAgeFilesLines
* Switch keystore to binderKenny Root2012-11-141-0/+1
| | | | Change-Id: I9fa1fc05068bee1eed3f618fb32f70cf3d4c05d4
* Bug fix on installd with SELinux enabled kernel.rpcraig2012-11-141-14/+0
| | | | | | | | | setfilecon is not required on libsymlinks when target doesn't exist. A bootloop is caused without this change. Change-Id: I96dbd4b1f47a752bfcaf6016c81fd43083c4a6e1 Signed-off-by: rpcraig <rpcraig@tycho.ncsc.mil>
* am 768d9e1a: Merge "Correct executable bit for source files"Kenny Root2012-11-071-0/+0
|\ | | | | | | | | * commit '768d9e1a72ceee7d4a5f608776b87b62d6ce4a04': Correct executable bit for source files
| * Correct executable bit for source filesKenny Root2012-11-071-0/+0
| | | | | | | | | | | | | | | | | | Many media files and source code files were marked as executable in Git. Remove those. Also a shell script and python script were not marked as executable. Change-Id: Ieb51bafb46c895a21d2e83696f5a901ba752b2c5
* | am da2f2e51: am 799916e6: Merge "Revert "Check non-primary user dirs during ↵Dave Burke2012-10-231-24/+9
|\ \ | | | | | | | | | | | | | | | | | | package scan"" into jb-mr1-dev * commit 'da2f2e51c71b5ebc50fe76c3cd5a920c81a5ee92': Revert "Check non-primary user dirs during package scan"
| * \ am 799916e6: Merge "Revert "Check non-primary user dirs during package ↵Dave Burke2012-10-231-24/+9
| |\ \ | | | | | | | | | | | | | | | | | | | | | | | | scan"" into jb-mr1-dev * commit '799916e6ac706921e43a3382e5d9e06e13f87525': Revert "Check non-primary user dirs during package scan"
| | * \ Merge "Revert "Check non-primary user dirs during package scan"" into jb-mr1-devDave Burke2012-10-231-24/+9
| | |\ \
| | | * | Revert "Check non-primary user dirs during package scan"Dave Burke2012-10-231-24/+9
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit 4525f5b69cb44a9a0c92f9c525fc47541f456621 Change-Id: I31b7a0860972532478ab3420556b806bfa78739a
* | | | | am f461d3f6: am da2509c4: Merge "Check non-primary user dirs during package ↵Kenny Root2012-10-231-9/+24
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | | | | | | | | | | | scan" into jb-mr1-dev * commit 'f461d3f69f4533045167b4dc1f7445ad6ae47af3': Check non-primary user dirs during package scan
| * | | | am da2509c4: Merge "Check non-primary user dirs during package scan" into ↵Kenny Root2012-10-231-9/+24
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | jb-mr1-dev * commit 'da2509c434ebb2a5a0da1bc270cae7f007cbb0f9': Check non-primary user dirs during package scan
| | * | | Merge "Check non-primary user dirs during package scan" into jb-mr1-devKenny Root2012-10-231-9/+24
| | |\ \ \ | | | |/ /
| | | * | Check non-primary user dirs during package scanKenny Root2012-10-221-9/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | During package scan, only the primary user data directories were checked. If the secondary user didn't have an application directory, it would happily ignore it. The app would then crash upon startup. Bug: 7391882 Change-Id: I1fa92aa27386104d4ac6bc5dc92bfbf2e7dfac9f
* | | | | am 55708a9d: am e03c0244: Merge "Clear data deletes too much" into jb-mr1-devKenny Root2012-10-221-2/+2
|\ \ \ \ \ | |/ / / / | | | | | | | | | | | | | | | * commit '55708a9dce5be627f68e388d4ad355595ad5fef5': Clear data deletes too much
| * | | | am e03c0244: Merge "Clear data deletes too much" into jb-mr1-devKenny Root2012-10-221-2/+2
| |\ \ \ \ | | |/ / / | | | | | | | | | | | | | | | * commit 'e03c0244717093e0fbc9b05073d3ae3dbd8fcea5': Clear data deletes too much
| | * | | Clear data deletes too muchKenny Root2012-10-221-2/+2
| | |/ / | | | | | | | | | | | | | | | | Bug: 7389445 Change-Id: Ic12d7a8e37747dc1a9b71ec5f881b5e440e0a75e
* | | | resolved conflicts for merge of a5d29b2c to jb-mr1-dev-plus-aospKenny Root2012-10-193-45/+116
|\ \ \ \ | |/ / / | | | | | | | | Change-Id: I21512d61b5c08cee5fed69b34c3275ba5c3fc0d8
| * | | am 9bef3294: Merge changes Ie3c8ca8d,Ia175b36d into jb-mr1-devKenny Root2012-10-193-45/+108
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | * commit '9bef3294d3660a85442829a25c9777e25d3c3cc8': Try to free cache before giving up on install Robustly add symlink and add for non-primary users
| | * | Robustly add symlink and add for non-primary usersKenny Root2012-10-183-45/+108
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Amazingly, some apps still don't use the nativeLibraryPath. So add a lib symlink for non-primary users to fix that. Also, there was an error when the symlink existed that it would give up. This shouldn't really happen, but in that case, just remove it and create a new one to be safe. Also, move the downgrade code to the appropriate place. This downgrade case triggered the above symlink existing bug. Bug: 7318366 Bug: 7371571 Change-Id: Ia175b36d98f00bdc2f2433b909aafd524eb34d15
* | | | resolved conflicts for merge of 40f2f751 to jb-mr1-dev-plus-aospKenny Root2012-10-171-1/+8
|\ \ \ \ | | |_|/ | |/| | | | | | Change-Id: I6075e2bf98b0f8310c93fac649c34cbbbd89707f
| * | | Fix mistaken removal of setfileconKenny Root2012-10-171-1/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous commit attempted to move setfilecon above chown, but mistakenly squashed libdir and pkgdir setfilcon into one incorrect setfilecon. Change-Id: I1ad00eae8a0e69ae88ce47cd5571558ce1ad2145
* | | | Fix bad mergeKenny Root2012-10-171-2/+2
| | | | | | | | | | | | | | | | Change-Id: I9f05f96e3607b994368a8d4e1e454af8fe84424d
* | | | resolved conflicts for merge of 85f9ba9e to jb-mr1-dev-plus-aospKenny Root2012-10-172-21/+8
|\ \ \ \ | |/ / / | | | | | | | | Change-Id: I9ae49075935f0e9ec432ce9d828ee26a4fcdb44c
| * | | Remove HAVE_SELINUX guardsKenny Root2012-10-162-36/+11
| | | | | | | | | | | | | | | | Change-Id: I6c2161471f657aa1645695ffd56ff434b0c2b426
* | | | am 77ce60a5: am 7789c9bb: Merge "Support pm clear as --user." into jb-mr1-devJeff Sharkey2012-10-151-4/+16
|\ \ \ \ | | |/ / | |/| | | | | | | | | | * commit '77ce60a59330d6059011d737142bd210db845d85': Support pm clear as --user.
| * | | am 7789c9bb: Merge "Support pm clear as --user." into jb-mr1-devJeff Sharkey2012-10-151-4/+16
| |\ \ \ | | | |/ | | |/| | | | | | | | | * commit '7789c9bbfca079655e9285173d6175b94bc774b0': Support pm clear as --user.
| | * | Support pm clear as --user.Jeff Sharkey2012-10-151-4/+16
| | | | | | | | | | | | | | | | | | | | Bug: 7352703 Change-Id: I0e9cc4f2313e5424d234c3cb051004c0321d9dac
* | | | am a00ffa53: am 1016b288: Merge "Pm command to get maximum users." into ↵Jeff Sharkey2012-10-121-2/+16
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | jb-mr1-dev * commit 'a00ffa53fbe7ced0147451242232f47d117d5e2d': Pm command to get maximum users.
| * | | am 1016b288: Merge "Pm command to get maximum users." into jb-mr1-devJeff Sharkey2012-10-121-2/+16
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '1016b2881d2b5f5d5e142afa287bd876b6360c2b': Pm command to get maximum users.
| | * | Pm command to get maximum users.Jeff Sharkey2012-10-121-2/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Used to drive CTS tests. Also print success message when removing a user. Bug: 7334718 Change-Id: Ia3886ddf860cd000ce567b0fed2ef0a4e2a2295c
* | | | am 9ad36ded: am 9dfca201: Merge "Print newly generated userId." into jb-mr1-devJeff Sharkey2012-10-111-1/+4
|\ \ \ \ | |/ / / | | | | | | | | | | | | * commit '9ad36dedd668c3bfa906397baa3d0aa76cfe1216': Print newly generated userId.
| * | | am 9dfca201: Merge "Print newly generated userId." into jb-mr1-devJeff Sharkey2012-10-111-1/+4
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit '9dfca20105aa998f5767b1b330bf9307ec479906': Print newly generated userId.
| | * | Print newly generated userId.Jeff Sharkey2012-10-111-1/+4
| | | | | | | | | | | | | | | | | | | | Bug: 7334718 Change-Id: Id4dc456b079bebbe9f2d7ea2a8343d2215f296dc
* | | | am 31af905a: am 36db9d08: Merge "Further work on issue #7307399: Framework ↵Dianne Hackborn2012-10-091-0/+4
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | needs a new pre-user-shutdown..." into jb-mr1-dev * commit '31af905ac5388339fd0ffd87e6f25bd2a293dc0e': Further work on issue #7307399: Framework needs a new pre-user-shutdown...
| * | | am 36db9d08: Merge "Further work on issue #7307399: Framework needs a new ↵Dianne Hackborn2012-10-091-0/+4
| |\ \ \ | | |/ / | | | | | | | | | | | | | | | | | | | | pre-user-shutdown..." into jb-mr1-dev * commit '36db9d0879640a1cb9a8723d6649068a1c4c08de': Further work on issue #7307399: Framework needs a new pre-user-shutdown...
| | * | Further work on issue #7307399: Framework needs a new pre-user-shutdown...Dianne Hackborn2012-10-091-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ...phase & callback API I realized there were a few things wrong with what was there. The new ACTION_USER_STARTING was not being sent for the first user at boot, and there was an existing problem where ACTION_USER_STARTED was sent every time there was a user switch. Also improved some debug output of broadcasts to make it easier to see what is going on in this stuff, and better reporting of why a service couldn't be started. Change-Id: Id8a536defbbad1f73d94a37d13762436b822fbe3
* | | | am b17fdf7b: am af3cd21b: Merge "New command line tool: "settings"" into ↵Christopher Tate2012-10-093-0/+243
|\ \ \ \ | |/ / / | | | | | | | | | | | | | | | | | | | | jb-mr1-dev * commit 'b17fdf7b512530647037a7805c175c36db1549d8': New command line tool: "settings"
| * | | am af3cd21b: Merge "New command line tool: "settings"" into jb-mr1-devChristopher Tate2012-10-093-0/+243
| |\ \ \ | | |/ / | | | | | | | | | | | | * commit 'af3cd21b08dd22d6ffd747c6314fd49fed3170a0': New command line tool: "settings"
| | * | New command line tool: "settings"Christopher Tate2012-10-083-0/+243
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Because the usual content provider interface doesn't allow specification of the target user under which to perform settings reads/writes, this CL introduces a new command line app specifically for that. Usage: settings [--user num] get namespace key settings [--user num] put namespace key value If a --user argument is not given, the owner user is targetted. Bug 7299066 Change-Id: I73108bb76b04fad133cc4e0f218d64490de549f1
* | | | am bad71217: am 77728b01: Merge "Change installd tests to native test target"Kenny Root2012-10-021-9/+2
|\ \ \ \ | |/ / / |/| | / | | |/ | |/| * commit 'bad71217b75df49245092bc0f32e4ddaeb2b3732': Change installd tests to native test target
| * | am 77728b01: Merge "Change installd tests to native test target"Kenny Root2012-10-021-9/+2
| |\ \ | | | | | | | | | | | | | | | | * commit '77728b010e34069a904c9e8a40e03b8829cfb8ae': Change installd tests to native test target
| | * | Change installd tests to native test targetKenny Root2012-10-021-9/+2
| | | | | | | | | | | | | | | | Change-Id: Ifb2ba004e74d55ffbf01557b59ceef3232762d28
* | | | am 2036a94a: Merge "Fix cache deletion for secondary users" into jb-mr1-devAmith Yamasani2012-10-013-5/+5
|\ \ \ \ | | |_|/ | |/| | | | | | | | | | * commit '2036a94a9004613644bdbdab1b10e476be3f0213': Fix cache deletion for secondary users
| * | | Fix cache deletion for secondary usersAmith Yamasani2012-10-013-5/+5
| | | | | | | | | | | | | | | | | | | | | | | | Bug: 7249419 Change-Id: Idbc0f9994508059ebf5055aea961b87e08b3673a
* | | | Merge "Add aah metadata service to whitelist DO NOT MERGE" into jb-mr1-aah-devDake Gu2012-10-011-0/+1
|\ \ \ \ | |/ / / |/| | |
| * | | Add aah metadata service to whitelist DO NOT MERGEDake Gu2012-10-011-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Temporary solution for b/7262633. We are using binder service for IPC between mediaserver and client app for sending synchronized beat tempo. The change will never be merged back to upstream. Will replace it with a new IPC mechanism later. Change-Id: Ic06546a0085e401f49b65e0327247fcce1df681f
* | | | Merge "Fix issue #7211769 and #7244492, thrash around on #7226656." into ↵Dianne Hackborn2012-09-281-0/+10
|\ \ \ \ | | | | | | | | | | | | | | | jb-mr1-dev
| * | | | Fix issue #7211769 and #7244492, thrash around on #7226656.Dianne Hackborn2012-09-281-0/+10
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Issue #7211769: Crash dialog from background user has non-working "report" The report button now launches the issue reporter for the correct user. Also for crashes on background users, either disable the report button, or simply don't show the dialog depending on the build config. Issue #7244492: Bugreport button in Quick Settings doesn't actually do anything Now they do. Issue #7226656: second user seeing primary user's apps I haven't had any success at reproducing this. I have tried to tighten up the path where we create the user to ensure nothing could cause the user's applications to be accessed before the user it fully created and thus make them installed... but I can't convince myself that is the actual problem. Also tightened up the user switch code to use forground broadcasts for all of the updates about the switch (since this is really a foreground operation), added a facility to have BOOT_COMPELTED broadcasts not get launched for secondary users and use that on a few key system receivers, fixed some debug output. Change-Id: Iadf8f8e4878a86def2e495e9d0dc40c4fb347021
* | | | Merge "Fix issue #7202950: After clearing data, clear data button is still ↵Dianne Hackborn2012-09-281-8/+30
|\ \ \ \ | | | | | | | | | | | | | | | enabled." into jb-mr1-dev
| * | | | Fix issue #7202950: After clearing data, clear data button is still enabled.Dianne Hackborn2012-09-271-8/+30
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | Count the lib symlink against the app's code size. Also be sure to look at the new separate lib path for apps, and tweak the size counting to also count the size of directory entries. Change-Id: I4b0fd5771f249faa05fd72f08062df885902cc97
* | | | Pass the originating uid to the package verifierBen Gruver2012-09-271-1/+1
|/ / / | | | | | | | | | | | | Bug: 6923241 Change-Id: I85a3e0d53b469543cb0551d3a440d2663b5d0697