c005246ed03de874fdc432073ba8e5e8ebfed922 |
|
25-Feb-2014 |
David 'Digit' Turner <digit@google.com> |
Remove trailing spaces in misc sources. Change-Id: I573d4e816112b7401b3c824fbe773b85a8601531
/external/qemu/android/utils/file_data.c
|
d3f2c27ff9f611e5047a35cb20ed53f548214fed |
|
19-Feb-2014 |
David 'Digit' Turner <digit@google.com> |
New C++ helper classes. This adds a few useful C++ helper classes to android/base/ that will be used in the future by other patches. + Add android/base/String.h, a slightly more efficient version of std::string. + Add android/base/containers/StringVector.h, an optimized vector of strings that is much more efficient than std::vector<std::string> and should use less memory. + Add android/base/containers/PodVector.h which defines an efficient std::vector<> equivalent for POD-struct compatible types. + Modify PathUtils.h to use StringVector instead of std::vector<std::string>. + Modify android/utils/file_data.c to get rid of valgrind complaints when running the unit test suite. + Add android/base/Limits.h to get reliable integer limit macros in C++. Change-Id: Id9374aec658383c29be70a798ba17867664f69d3
/external/qemu/android/utils/file_data.c
|
5ea914899e5dbef4e8a7454b40a3c6648173f086 |
|
13-Feb-2014 |
David 'Digit' Turner <digit@google.com> |
Add boot.prop support. This patch allows one to specify a custom list of boot properties that will be injected into the guest system at boot time. The properties must be placed in a file named 'boot.prop', which can appear in the following locations: For AVDs: 1) In the AVD's content directory. 2) Otherwise in the system image's directory. For Android platform builds: 1) In the $ANDROID_BUILD_OUT directory. Note that this is different from build.prop which will be read from $ANDROID_BUILD_OUT/system/ instead (and isn't used to inject any properties). Note that any '-boot-property <name>=<value>' on the command-line will be injected after the content of 'boot.prop', overriding it unless it begins with a 'ro.' prefix. The patch refactors a little how information is retrieved for builds and AVD configurations. It also fixes a few bugs in the auto-detection logic for the target architecture / ABI. BUG=12819077 Change-Id: I9f41f21d9de3e4d25de427f0e5a6bb517f34c5ba
/external/qemu/android/utils/file_data.c
|