• R/O
  • HTTP
  • SSH
  • HTTPS

List of commits

標籤
無標籤

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

system/corennnnn


RSS
修訂. 時間 作者
ecfd8e7 2009-08-29 01:26:31 Joe Onorato

acc error tweaks

f68a5cd 2009-08-29 01:18:46 San Mehat

vold: Format cards < 2GB as FAT16, otherwise FAT32. Also let the formatter
choose the cluster-size

Signed-off-by: San Mehat <san@google.com>

e86a2c7 2009-08-28 23:18:37 Android Code Review

Merge change 7315

* changes:
Allow an onrestart command to stop the current service

15681df 2009-08-28 00:01:14 Simon Braunschmidt

BUGFIX - ro.kernel.android.{qemud | ril} and ro.android.noril

This fixes both a typo and the fact that sh seems not to have
test or [.
(see also sh/builtins.def: ##testcmd commented out)

The handling of these properties was broken, having the effect
that the Modem in ... internal/telephony/test/Simulated*.java
was never run, even if it would have been the users/developers
intention.

See also issue #1380
http://code.google.com/p/android/issues/detail?id=1380

Signed-off-by: Simon.Braunschmidt@gmail.com>

dc816d5 2009-08-27 23:58:38 Ben Gruver

Allow an onrestart command to stop the current service

For example,

service recovery /sbin/recovery
onrestart start loadkeys
onrestart class_start con
onrestart stop recovery

Previously, if you had a service like the above, the "onrestart stop
recovery" clause would not have any effect, because the restart flag
would be re-set after the stop command had executed.

This is similar to a service with the "oneshot" keyword, with the critical
difference being that it executes the other onrestart commands when the
service dies.

e7cb137 2009-08-27 23:43:28 Jay Freeman (saurik)

added chdir/chroot commands to init for mount switching/pivoting

9f28bde 2009-08-27 23:40:19 Jay Freeman (saurik)

Trivial implementation of init's import command.

12a5b88 2009-08-27 23:36:36 Android Code Review

Merge change 2903

* changes:
completed implementation of "trigger" for init

87a9fe1 2009-08-27 09:15:24 San Mehat

am 9b158910: am bd3f7ded: Merge change 22836 into eclair

Merge commit '9b1589102cc1f543d172417510b21d0108200c72'

* commit '9b1589102cc1f543d172417510b21d0108200c72':
rootdir: init.rc: Copy kernel crash dumps to /data and free kernel resources

2d534e4 2009-08-27 09:15:22 San Mehat

am 5be5da9a: am fc279227: Merge change 22835 into eclair

Merge commit '5be5da9a1176fe2e648070375683b4b412e1cb17'

* commit '5be5da9a1176fe2e648070375683b4b412e1cb17':
init: builtins: Add 'copy' command to init.rc parser

9b15891 2009-08-27 09:13:22 San Mehat

am bd3f7ded: Merge change 22836 into eclair

Merge commit 'bd3f7dedeb0f15bcf5e5b527732b54e45647e78b' into eclair-plus-aosp

* commit 'bd3f7dedeb0f15bcf5e5b527732b54e45647e78b':
rootdir: init.rc: Copy kernel crash dumps to /data and free kernel resources

5be5da9 2009-08-27 09:13:21 San Mehat

am fc279227: Merge change 22835 into eclair

Merge commit 'fc279227ec9af8b49d3b3ec63096e4839f099411' into eclair-plus-aosp

* commit 'fc279227ec9af8b49d3b3ec63096e4839f099411':
init: builtins: Add 'copy' command to init.rc parser

bd3f7de 2009-08-27 09:11:32 Android (Google) Code Review

Merge change 22836 into eclair

* changes:
rootdir: init.rc: Copy kernel crash dumps to /data and free kernel resources

fc27922 2009-08-27 09:11:18 Android (Google) Code Review

Merge change 22835 into eclair

* changes:
init: builtins: Add 'copy' command to init.rc parser

2154187 2009-08-27 08:39:59 San Mehat

rootdir: init.rc: Copy kernel crash dumps to /data and free kernel resources

Signed-off-by: San Mehat <san@google.com>

7c44fe5 2009-08-27 08:39:59 San Mehat

init: builtins: Add 'copy' command to init.rc parser

Signed-off-by: San Mehat <san@google.com>

a4944fb 2009-08-27 08:19:30 Jack Palevich

am 973246de: am c158427e: Merge change 22828 into eclair

Merge commit '973246de432427fbfaf79635a1199ad811e17886'

* commit '973246de432427fbfaf79635a1199ad811e17886':
Preliminary struct and union support.

973246d 2009-08-27 08:18:35 Jack Palevich

am c158427e: Merge change 22828 into eclair

Merge commit 'c158427e5edbac3ef180d1e35f99e445b11e3672' into eclair-plus-aosp

* commit 'c158427e5edbac3ef180d1e35f99e445b11e3672':
Preliminary struct and union support.

c158427 2009-08-27 08:16:45 Android (Google) Code Review

Merge change 22828 into eclair

* changes:
Preliminary struct and union support.

9221bcc 2009-08-27 08:15:07 Jack Palevich

Preliminary struct and union support.

Working features:
- struct
- union
- nested structs
- anonymous structs
- forward declarations
- '.' and '->'
- copying structs using '='

Missing features:
- passing structs by value
- returning structs by value
- typedef
- sizeof

Example:

struct v {float x, y, z, w; };

void add(struct v* result, struct v* a, struct v* b) {
result->x = a->x + b->x;
result->y = a->y + b->y;
result->z = a->z + b->z;
result->w = a->w + b->w;
}

Reworked size-of and alignment logic to support structs.

Improved encoding of ARM immediate constants.

cef31a0 2009-08-27 06:46:18 Mike Lockwood

adb: Fix emulator support.

Signed-off-by: Mike Lockwood <lockwood@android.com>

f71c711 2009-08-27 06:46:18 Xavier Ducrohet

Fix broken 'adb root' command.

Change-Id: I75bf01863e82967a7214d3e31b8db792690716c1

2f38b69 2009-08-27 06:46:18 Mike Lockwood

adb: Improved support for running adb over TCP/IP

Added new commands:

adb connect <host>:<port> (to connect to a device via TCP/IP)
adb tcpip <port> (to restart adbd on the device to listen on TCP/IP)
adb usb (to restart adbd on the device to listen USB)

Signed-off-by: Mike Lockwood <lockwood@android.com>

26f3de6 2009-08-27 06:46:18 Raphael

BUG 2033924: Add AdbWinUsbApi.dll to prebuilt for Windows SDK

ecfb75d 2009-08-27 06:46:18 Mike Lockwood

adb: Fix infinite loop in Linux host device discovery.

Signed-off-by: Mike Lockwood <lockwood@android.com>

668cc77 2009-08-27 06:46:18 Mike Lockwood

adb: print better error message when there are insufficient permissions for a device.

Now, a command like "adb shell" will print "insufficient permissions for device"
instead of "device not found" if adb does not have permissions to communicate with the device.

Signed-off-by: Mike Lockwood <lockwood@android.com>

a8be72f 2009-08-27 06:46:18 Mike Lockwood

adb: update call to register_usb_transport in Mac and Windows builds.

Signed-off-by: Mike Lockwood <lockwood@android.com>

95b837d 2009-08-27 06:46:18 Mike Lockwood

adb: On Linux, detect USB devices for which adb does not have permissions to communicate with.

adb devices will now list devices without adequate file system permissions in /dev/bus/usb as:

List of devices attached
???????????? no permissions

Signed-off-by: Mike Lockwood <lockwood@android.com>

e64004d 2009-08-27 06:46:18 Guang Zhu

adb: Use correct language ID when retrieving USB serial number.

Signed-off-by: Mike Lockwood <lockwood@android.com>

63e6152 2009-08-27 06:46:18 Mike Lockwood

adb: Remove adbd from simulator build.

It no longer compiles without recent kernel headers.

Signed-off-by: Mike Lockwood <lockwood@android.com>