adbd depends on this property to be capable of listening on network so that adb
can connect to the device through network. Without this property set, adbd will
only try to listen on the alternative usb gadget interface when it starts.
Set the property 'service.adb.tcp.port' to the default port 5555 which
is defined in
DEFAULT_ADB_LOCAL_TRANSPORT_PORT of file system/core/adb/adb.h
Signed-off-by: Jeremy Chang <jeremy.chang(a)linaro.org>
---
init.rc | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/init.rc b/init.rc
index b6a92c5..50d2dc6 100644
--- a/init.rc
+++ b/init.rc
@@ -181,6 +181,7 @@ on boot
ifup lo
hostname localhost
domainname localdomain
+ setprop service.adb.tcp.port 5555
# set RLIMIT_NICE to allow priorities from 19 to -20
setrlimit 13 40 40
--
1.7.1
Hi
I am seeing an ICE while compiling gcc for i586 from linaro 4.5 branch
This ICE happens in libstd++ when compiling with -march=pentium -Os
If -march=pentium is not used then it compiles file and also -O2 works
ok
ios_init.c: In destructor 'std::ios_base::Init::~Init()':
ios_init.c:15899:3: internal compiler error: in
dwarf2out_begin_epilogue, at dwarf2out.c:2859
Please submit a full bug report,
with preprocessed source if appropriate.
See <http://gcc.gnu.org/bugs.html> for instructions.
Is the error I get and if I revert r99474 the ICE goes away
here is command to reproduce this error
./build.x86_64-linux.i586-oe-linux/gcc/cc1plus -Os -march=pentium
ios_init.c
and attached is the testcase to reproduce it
Thanks
--
-Khem
Greetings,
Enclosed you'll find a link to the agenda, minutes and actions from the
Linaro toolchain working group weekly meetings of Feb 14 & Feb 16, 2011.
https://wiki.linaro.org/WorkingGroups/ToolChain/Meetings/2011-02-14https://wiki.linaro.org/WorkingGroups/ToolChain/Meetings/2011-02-16
== Summary ==
* An issue regarding the ARM specific use of conditional flags was found in
swing-modulo-scheduling
* Discussed how to profile when benchmarking. Decided on perf for
identifying hotspots.
* Ran a CoreMark benchmark series on the Cortex-A9
* Finished investigation into the state of A9 emulation in QEMU. Passed on
to ARM's marketing department to decide what they want
Mounir
Enclosed you'll find a link to the agenda, minutes and actions from the
Linaro kernel working group weekly meeting of Feb 14, 2011.
https://wiki.linaro.org/WorkingGroups/KernelConsolidation/Meetings/2011-02-…
=== Summary ===
* Device Tree
* A critical bug has been fixed, patches have been respun and submitted
to mailing list and ARM and devicetree/ARM branch
* Submitted second version of Samsung's s5pv310 device tree enabled
machine.
* Basic DT boot up ok on mx51 babbage board with uboot and linux kernel.
* Will submit uboot patch for DT support on MX51/53 board soon.
* Sent patches for powerpc irq_data conversion, will have some more patches
out soon, the work will result in common code between powerpc and arm ( at
least this is the goal).
* MX53 uboot support, code upstream done!
* Tested kexec-reboot on OMAP3 kexec-reboot works fine on OMAP3.
* U-Boot SPL: Implementing remaining features in the clock module, enabled
Thumb2 build - reduced SRAM footprint and integrated with mkimage for IFT
creation
* Re-posted omap3/4 Thumb-2 compatiblity patches and did some power
management testing to exercise the code.
* Linaro kernel tree maintenance: Merged multiple patches this week.
* Changed omap_hsmmc driver to use double buffering.
Mounir
This patchset adds Samsung's s5pv310 machine with device tree support. This
is based on
git://git.secretlab.ca/git/linux-2.6 devicetree/test
A new machine s5pv310-dt is added along with a dts file for the smdkv310 board.
Some of the features introduced in this patchset are
1. Tested on smdkv310 board and information such as bootargs, memory information
and console port register defaults are obtained from the device tree.
2. Add basic device tree file for smdkv310 board.
3. Device tree based probe enabled in watchdog timer driver (s3c2410-wdt).
4. UART driver modified to obtain default console register values from
device tree.
In addition, the first 5 patches have been tested with
git://git.secretlab.ca/git/linux-2.6 devicetree/arm
and (with minor modification [driver/tty/serial -> drivers/serial])
git://git.secretlab.ca/git/linux-2.6 devicetree/arm-linaro-2.6.37
Thomas Abraham (7):
ARM: s5pv310-dt: Add s5pv310 machine with device tree support
ARM: s5pv310-dt: Add a basic dts file for SMDKV310 machine
ARM: s5pv310-dt: Add support for probing platform bus on s5pv310 dt-enabled machine
watchdog: s3c2410: Add support for device tree based probe
serial: samsung: Get console register defaults from device tree
ARM: s5pv310-dt: Enable snooping of platform_device registrations
serial: samsung: Get default port register settings from device tree
arch/arm/mach-s5pv310/Kconfig | 7 +++
arch/arm/mach-s5pv310/Makefile | 1 +
arch/arm/mach-s5pv310/mach-s5pv310-dt.c | 85 +++++++++++++++++++++++++++++++
arch/arm/mach-s5pv310/mach-smdkv310.dts | 78 ++++++++++++++++++++++++++++
drivers/tty/serial/samsung.c | 27 ++++++++++
drivers/watchdog/s3c2410_wdt.c | 10 ++++
6 files changed, 208 insertions(+), 0 deletions(-)
create mode 100644 arch/arm/mach-s5pv310/mach-s5pv310-dt.c
create mode 100755 arch/arm/mach-s5pv310/mach-smdkv310.dts