diff options
author | David 'Digit' Turner <digit@google.com> | 2009-07-24 16:33:05 +0200 |
---|---|---|
committer | David 'Digit' Turner <digit@google.com> | 2009-07-24 16:33:05 +0200 |
commit | d68b48725d720a06b24932b170f528929856f3db (patch) | |
tree | 586ee05802b45313ba5b720480eae1dd33b8a479 /android/boot-properties.c | |
parent | 0b7cd6c0d6af071951a86810d2600d155fa53b05 (diff) | |
download | external_qemu-d68b48725d720a06b24932b170f528929856f3db.zip external_qemu-d68b48725d720a06b24932b170f528929856f3db.tar.gz external_qemu-d68b48725d720a06b24932b170f528929856f3db.tar.bz2 |
Fix ANDROID_SDK_HOME handling on Unix (the env. var was ignored)
Bump version number to 1.11 in android/android.h
Update CHANGES.TXT to reflect SDK 1.5_r3 changes
Update some comments in android/boot-properties.[hc]
Add a --debug option to android-configure.sh (and android-rebuild.sh)
to build a unoptimized debug version of the standalone emulator binary.
Diffstat (limited to 'android/boot-properties.c')
-rw-r--r-- | android/boot-properties.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/android/boot-properties.c b/android/boot-properties.c index 1c714e9..19941a0 100644 --- a/android/boot-properties.c +++ b/android/boot-properties.c @@ -27,6 +27,10 @@ #define T(...) ((void)0) #endif +/* this code supports the list of system properties that will + * be set on boot in the emulated system. + */ + typedef struct BootProperty { struct BootProperty* next; char* property; @@ -59,10 +63,6 @@ static BootProperty* _boot_properties; static BootProperty** _boot_properties_tail = &_boot_properties; static int _inited; -/* this code supports the list of system properties that will - * be set on boot in the emulated system. - */ - int boot_property_add2( const char* name, int namelen, const char* value, int valuelen ) |