Guys,
I'm pretty certain that I have proven that there is a bug in your pandaboard images since Jelly Bean. Video is broken. I have taken some pictures to help type up what I think is wrong. And I was able to take your binary and fix it. I suspect that you have an automated process that is running to refresh the binary image, and I think I know what it is doing incorrectly. How do I post this info?
Let me know where I should post the fix, bug....ect.
-ben brown
Hi,
Here is the test result summary for Linaro android jellybean 13.03 release
candidate for different builds:
[1] TI-Panda 4430
[2] TI-Panda 4460
[3] ST-Snowball
[4] Origen_quad 4412
[5]ARM vexpress-A9
[6] Arndale Tiny android Builds
[1] TI-Panda 4430 with Linaro android jellybean 4.2.2 (Column: AD)
https://docs.google.com/a/linaro.org/spreadsheet/ccc?key=0AkxwyUNxNaAadGVWd…
Boot to GUI, wifi is working, Playback of video and .mp3 audio is working,
Suspend-resume test is working, please look into the result spreadsheet for
details results and bug report.
[2]TI-Panda 4460 with Linaro android jellybean 4.2.2 (Column: AD )
https://docs.google.com/a/linaro.org/spreadsheet/ccc?key=0AkxwyUNxNaAadGVWd…
Looks good, Boot to GUI, wifi is working, Suspend-resume test is working,
download-install.apk is working, 0xbench is working, youtube and vid
playback working fine.
please look into the result spreadsheet for details results and bug report.
[3] ST-Snowball with Linaro android jellybean 4.2.2 (Column: AC)
https://docs.google.com/a/linaro.org/spreadsheet/ccc?key=0AkxwyUNxNaAadEF1N…
boot to GUI ok, serial ok, kernel version is 3.4.0+ gcc version is 4.7.3
20130226, adb over usb working, adb over ethernet ok, wifi, video Playback
not working known issue. please look into the result spreadsheet for
details results and bug report.
[4] origen_quad 4412 with Linaro android jellybean 4.2.2 (Column: C)
https://docs.google.com/a/linaro.org/spreadsheet/ccc?key=0AkxwyUNxNaAadDRDV…
Boot to GUI ok, kernel version is 3.8.0, gcc version 4.7.3 20130226, serial
is ok, audio is not working, adb over usb is not working, youtube video
play failed, sd card not detected from gallery, adb over ethernet is ok,
ethernet can be configured from command line to make it works.
please look into the result spreadsheet for details results and bug report.
[5] ARM vexpress-A9 with Linaro android jellybean 4.2.2 (Column: AC)
https://docs.google.com/a/linaro.org/spreadsheet/ccc?key=0AkxwyUNxNaAadExQd…
serial is ok, Primary video out is ok, kernel version is upgraded to
3.9.0-rc3-00212-g0f66281
toolchain version 4.7-2013.03, adb-over ethernet is good, adb over usb not
working (known issue), adb over ethernet ok, browser ok, youtube video
playback failed, audio is ok, please look into the result spreadsheet for
details results and bug report.
[6] Arndale with Tiny Linaro-android builds:
builds:
https://android-build.linaro.org/builds/~linaro-android/linux-linaro-arndal…
boot to console ok, serial is ok, kernel version: 3.9.0-rc3, toolchain
version: 4.7.3 20130226
Hi,
gcc 4.8 has been released a couple of days ago - so I'm getting our tree in
shape to work with it.
I've created a toolchain tarball that works the same as our usual toolchain
releases here:
https://android-build.linaro.org/builds/~linaro-android/toolchain-fsf-4.8.0/
I've also gone through the repository and fixed all build issues (also
submitted the related patches to AOSP).
Unfortunately, this time Microsoft QA ("It compiles, therefore it
works(TM)") failed to detect the issues -- looks like the build works, but
creates some binary incompatibilities with blobs (e.g. undefined references
to __aeabi_uidiv in Galaxy Nexus graphics drivers), so there's some work
left to do -- but for those who are ready to experiment (or don't need
*****ing blobs), it's ready to go.
ttyl
bero
Hi,
As part of the unification of manifest, we have been merging all the
manifests into single tracking.xml manifest. There are few manifest which
are deprecated and need to be removed. The mail is sent to all the people
who have a stake in the builds which were using these manifest. Please
reply to this mail if any of these manifest are still needed by any of the
projects:
staging-origen.xml: Origen Build (Now deprecated)
staging-vexpress-rtsm.xml: RTSM Build (Now supported in vexpress builds)
tracking-panda.xml: Tracking the Landing team kernel. Will be removed since
no work is going on.
tracking-vexpress-rtsm-mp.xml: RTSM Build (Now supported in vexpress builds)
staging-vexpress-rtsm-isw.xml: RTSM IKS build which is no more supported.
staging-vexpress.xml: Vexpress Manifest to track staging kernel.
tracking-snowball.xml: Tracking the landing team kernel. Will be removed
since no work is going on.
Bero,
Do we need these 2 manifest:
default.xml
linaro-default.xml
Most of the engineering builds are now supported from tracking.xml manifest
with the help of groups. Moving forward any new project will be integrated
into this manifest.
Regards,
Vishal
Hi,
quick instructions on testing the version of gcc present in current Android
builds:
Use either adb or the "Terminal Emulator" app to get a shell.
If you're using the terminal emulator app with an onscreen keyboard, you
may want to pick a keyboard that has an Esc key so working with vi becomes
easier: Go to Settings -> Language & input, enable "Hacker's keyboard" and
set it as the default.
In the shell, run (just copy&paste from the mail):
cd /data/data/jackpal.androidterm
cat >test.c <<'EOF'
#include <stdio.h>
int main(int argc, char **argv) {
puts("gcc works");
}
EOF
gcc -O3 test.c
./a.out
Output should be "gcc works", anything else is a bug.
cat >test.cpp <<'EOF'
#include <iostream>
int main(int argc, char **argv) {
std::cout << "g++ works" << std::endl;
}
EOF
g++ -O3 test.cpp
./a.out
Output should be "g++ works", anything else is a bug.
cat >Makefile <<'EOF'
g++test: test.cpp
$(CXX) -o $@ -c $<
EOF
make
./g++test
Output should be normal make output followed by "g++ works", anything else
is a bug.
objdump -x g++test |grep stlport
Output should be
NEEDED libstlport.so
Anything else is a bug.
vi test.cpp
(check manually if vi works as expected)
ttyl
bero