- 02 Mar, 2012 1 commit
-
-
Colin Cross authored
-
- 01 Mar, 2012 1 commit
-
-
Chris Dearman authored
Signed-off-by:
Chris Dearman <chris@mips.com> Change-Id: I5f18ccb0912b9bb89c9f5104f9505c610c109af8
-
- 28 Feb, 2012 3 commits
-
-
Jean-Baptiste Queru authored
-
Jean-Baptiste Queru authored
-
Tanguy Pruvot authored
- no info on normal process exit (0) - basename as tag, not the full path - fix usage, bad "-x" parameter vs "-d" in code Change-Id: Ife72729eaee2a366bd4226f3fbe3ba074219c974
-
- 24 Feb, 2012 2 commits
-
-
Jean-Baptiste Queru authored
-
Jean-Baptiste Queru authored
-
- 03 Feb, 2012 1 commit
-
-
Stephen Smalley authored
Add -Z option to ls and ps for displaying security contexts. Modify id to display security context. Add new SELinux commands: chcon, getenforce, getsebool, load_policy, restorecon, runcon, setenforce, setsebool. Change-Id: Ia20941be4a6cd706fe392fed6e38a37d880ec5f1
-
- 01 Feb, 2012 1 commit
-
-
Stephen Smalley authored
Add SE Android support for init and ueventd. init: - Load policy at boot. - Set the security context for service daemons and their sockets. - New built-in commands: setcon, setenforce, restorecon, setsebool. - New option for services: seclabel. ueventd: - Set the security context for device directories and nodes. Change-Id: I98ed752cde503c94d99dfa5b5a47e3c33db16aac
-
- 27 Jan, 2012 1 commit
-
-
Jean-Baptiste Queru authored
-
- 24 Jan, 2012 1 commit
-
-
Jean-Baptiste Queru authored
-
- 23 Jan, 2012 1 commit
-
-
mgross authored
Set the language local string to 0x409 (English US / en-us) such that fastboot will successfully read the usb descriptor serial number string. The usbdevfs ioctl fails when the wIndex is not initialized with the local for the unicode of the usb descriptor string. usbdevfs is an obsolete interface and fastboot probably needs a re-write to use libusb like what is in adb. Change-Id: I3687f84643f53c736f14b3ae7793185d9b5cccc0 Signed-off-by:
Mark D Horn <mark.d.horn@intel.com>
-
- 21 Jan, 2012 1 commit
-
-
Johan Norberg authored
When the chown program fails it prints out an error message and is describing itself as chmod. This has been corrected. Change-Id: I2c489975f09343bdf66acbf7df6e7183c2daff78 Signed-off-by:
christian bejram <christian.bejram@stericsson.com>
-
- 18 Jan, 2012 1 commit
-
-
Jean-Baptiste Queru authored
* changes: Rename LOG_ASSERT to ALOG_ASSERT Rename (IF_)LOGE(_IF) to (IF_)ALOGE(_IF) Rename (IF_)LOGW(_IF) to (IF_)ALOGW(_IF) Rename (IF_)LOGI(_IF) to (IF_)ALOGI(_IF) Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) Rename (IF_)LOGV(_IF) to (IF_)ALOGV(_IF) Rename (IF_)LOG() to (IF_)ALOG()
-
- 17 Jan, 2012 8 commits
-
-
Wu, Hao authored
This patch adds Intel USB Vendor ID into the support list for adb and fastboot. Signed-off-by:
Wu, Hao <hao.wu@intel.com> Signed-off-by:
Jack Ren <jack.ren@intel.com>
-
Steve Block authored
Change-Id: Iff15ac5e7ab226d437c08d23f18fd54e6793e65c
-
Steve Block authored
Change-Id: I52fce957db06c281e2618daa4e2ecba19974f2eb
-
Steve Block authored
Change-Id: I6c2a1d56dadb7e5c69e478f4d8c7d9f2127db2af
-
Steve Block authored
Change-Id: I929ea38bc6fe6efeefa7870c8e7e4c19cd0029b3
-
Steve Block authored
Change-Id: Ia0476219b71ece949595515ee07ea072ed349d73
-
Steve Block authored
Change-Id: Ia9a357dec5ad12eea93fd03401a3b02b38e4e94f
-
Steve Block authored
Change-Id: Ifb82ae2c242becaffa3cf19e548b526e6616c2c7
-
- 13 Jan, 2012 1 commit
-
-
Jean-Baptiste Queru authored
-
- 12 Jan, 2012 1 commit
-
-
Tanguy Pruvot authored
rmmod /system/modules/multitouch.ko rmmod: delete_module '/multitouch' failed (errno 2) Signed-off-by:
Tanguy Pruvot <tanguy.pruvot@gmail.com>
-
- 11 Jan, 2012 7 commits
-
-
Dima Zavin authored
Change-Id: Ic2472606e869d23c0f499a192cd7bb21ca3cf5b5 Signed-off-by:
Dima Zavin <dima@android.com>
-
Dima Zavin authored
Change-Id: I3c284860cc8d5106ac2b086e62baeb6263873935 Signed-off-by:
Dima Zavin <dima@android.com>
-
Dima Zavin authored
If we process the import directive inline, then the ordering of the commands for the "on xxx" sections would be a little unexpected. The init.rc files do not really have an implied order as to which section appears and gets processed first. The init code itself provides that ordering explicitly. For the user, the expectation is that if both the current file and the imported file define a section (e.g. "on init"), then the commands in the current file will be executed first, and then the ones from the imported file(s). The current implementation did not do that. It processed the import directive inline, and thus the imported (i.e. dependent) files would appear first in the command lists for the sections. This created unintended side effects and the solution would have been to try and put the import lines somewhere in the middle of the init file. This would be difficult to notice and hard to extract the dependencies. To solve this, we add the imports to a list for each file being parsed and process the list after finishing parsing the file. This provides predictable order for imports and provides a logical flow from the user perspective: the currently parsed file gets to run its commands before the files being imported. Change-Id: I06dc35ff286314060e16b18923683cd2787269de Signed-off-by:
Dima Zavin <dima@android.com>
-
Dima Zavin authored
Also, clean up how we initialize the ro.xx properties and process the kernel command line. Change-Id: Iedda6c90e31340a189171a44b2767480403354f7 Signed-off-by:
Dima Zavin <dima@android.com>
-
Dima Zavin authored
This removes the hardcoding of the file import in init and instead allows the init.rc file to fully control what is loaded. Change-Id: I933e5bbab57f1e8705a370d660f92c6508da94d2 Signed-off-by:
Dima Zavin <dima@android.com>
-
Dima Zavin authored
Adds new property syntax in init files during init file filename expansion during the import command: ${prop.name} So, one can do: import /init.${ro.hardware}.usb.rc Should convert other usages of property names to use the new function. Change-Id: I9205d7d7a2da620bc8e6b89ac0eb554fad53ded3 Signed-off-by:
Dima Zavin <dima@android.com>
-
Dima Zavin authored
The property service is still started later, but the property area and the initial boot properties are initialized before the init.rc file is processed. This allows init.rc files to have access to boot properties during parsing. Change-Id: Iae9ed1093c821831a864b39ae6bc697e62b94757 Signed-off-by:
Dima Zavin <dima@android.com>
-
- 09 Jan, 2012 1 commit
-
-
Steve Block authored
This is now required by some projects. Change-Id: If4015c6a9f2391b205d2886bcf7f6e51f371ce08
-
- 29 Dec, 2011 1 commit
-
-
Steve Block authored
These are now required by some projects. Change-Id: I0d51c950178504474d803620a6cd1c9f084804b5
-
- 14 Dec, 2011 2 commits
-
-
The Android Open Source Project authored
Change-Id: Iaea0ecf6fc4429640a1d8811ec2034ea0f9eb48e
-
The Android Automerger authored
-
- 13 Dec, 2011 4 commits
-
-
Jesse Hall authored
* commit '7cd3e0a3': Document ANativeWindow's buffer refcounting
-
The Android Open Source Project authored
Change-Id: I3f3a977f341cca1f9e0b4a0567fe5fb9f6dd7e0d
-
The Android Automerger authored
-
Jesse Hall authored
Change-Id: I5454e90afd1a1b7d4a75c503f8dca712dba33790
-
- 10 Dec, 2011 1 commit
-
-
Christopher Tate authored
* commit 'b1dfffe6': Fix 'adb backup' on Windows
-