This is very exciting. On his blog, Dan also states he recovered an x86 Flash library from the Medfield phone.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/nDEYZ9ZhpLIJ.--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To post to this group, send email to andro...@googlegroups.com.
To unsubscribe from this group, send email to android-x86...@googlegroups.com.
For more options, visit this group at http://groups.google.com/group/android-x86?hl=en.
Hi all,instructions posted here : http://www.buildroid.org/blog/?p=198Enjoy
This is very exciting. On his blog, Dan also states he recovered an x86 Flash library from the Medfield phone.To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/nDEYZ9ZhpLIJ.--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To unsubscribe from this group, send email to android-x86+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/vFV0iyTlz94J.
To unsubscribe from this group, send email to android-x86...@googlegroups.com.
Hi all,instructions posted here : http://www.buildroid.org/blog/?p=198Enjoy
This is very exciting. On his blog, Dan also states he recovered an x86 Flash library from the Medfield phone.To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/nDEYZ9ZhpLIJ.--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To unsubscribe from this group, send email to android-x86+unsubscribe@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To post to this group, send email to andro...@googlegroups.com.
To unsubscribe from this group, send email to android-x86...@googlegroups.com.
Cool! Could we integrate it into our isos?
Hi there,
As you may know that Buildroid team already port Intel Medfield ARM
binary code translator into their ICS build
http://www.buildroid.org/blog/?p=175
Is it possible to port this library from this build into android-x86
ISO?
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/NUmGLn0fJXkJ.
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
The Android SDK ships with QEMU as part of the Android emulator. That's what he was talking about.
from Intel Evaluation License Agreement:
THE EVALUATION MATERIALS ARE PROVIDED FOR EVALUATION PURPOSES ONLY AND
MAY NOT BE DISTRIBUTED BY RECIPIENT OR INCORPORATED INTO RECIPIENT’S
PRODUCTS OR SOFTWARE. PLEASE CONTACT AN INTEL SALES REPRESENTATIVE TO
LEARN ABOUT THE AVAILABILITY AND COST OF A COMMERICAL VERSION OF THE
EVALUATION SOFTWARE.
--
2012/6/27 Chih-Wei Huang <cwh...@android-x86.org>
To unsubscribe from this group, send email to android-x86+unsubscribe@googlegroups.com.
testing builds available...
http://www.tabletsx86.org/
On Jun 20, 9:26 am, Ollie <ojrear...@gmail.com> wrote:
> Very exciting news! I hope you don't mind me asking, but are you able to
> share the build? Or will it be incorporated in the Android-x86 source in
> the future?
>
> Thanks for the test report anyway.
>
>
>
>
>
>
>
> On Wednesday, 20 June 2012 05:00:52 UTC+1, Chih-Wei Huang wrote:
>
> > 2012/6/20 Ollie <ojrear...@gmail.com>:
> > > Has anyone tried this using the android-x86 ics-x86 branch? Would love
> > to
> > > see it in a Tega v2 build but have no idea how to follow those
> > instructions.
> > > Don't really have the processing power either.
>
> > Yes. I tried on tegav2. It works well.
> > I've succeeded to run angry birds (all variants)
> > and osmos demo from the Google Play.
>
do you have an Intel Atom based asus laptop???
both builds were tested for booting on an Intel Atom based tablet...
and both booted fine....READ THE ARM-EMULATION note on the site...
check and redo the USB your building if other asus_laptops worked
on your laptop before...
> uploading more builds? Specifically
> the tegav2 version?
we will defer to Chih-Wei on the tegav2 builds but there maybe
other Intel Atom based builds we can make available....
targets from android-x86.org are optimized for different x86 platforms
this means more than you have the same cpu...!!!
Hi there, I have that stuff working, and works pretty fine (Thank you Dan for this contribution, Marex for your help in the IRC, and of course cwhuang and all of you guys).
I did a How-to detailed and step by step, you can find that here in my blog : http://android-x86.sceners.org/en/?p=536
I did some benchmarks with quake3droid ARM and i was get fantastics results, so BRAVO.! this is a very nice advance.
I hope to be helpful.
Regards.
#!/system/bin/sh
# if you don't see the files 'register' and 'status' in /proc/sys/fs/binfmt_misc
# then run the following command:
# mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
# this is to add the supported binary formats via binfmt_misc
houdini_bin=0
if [ ! -e /proc/sys/fs/binfmt_misc ]; then
modprobe binfmt_misc
fi
if [ ! -e /proc/sys/fs/binfmt_misc/register ]; then
mount -t binfmt_misc none /proc/sys/fs/binfmt_misc
fi
if [ -e /proc/sys/fs/binfmt_misc/register ]; then
# register Houdini for arm binaries
echo ':arm:M::\\x7f\\x45\\x4c\\x46\\x01\\x01\\x01\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x00\\x02\\x00\\x28::/system/bin/houdini:' > /proc/sys/fs/binfmt_misc/register
if [ -e /proc/sys/fs/binfmt_misc/arm ]; then
houdini_bin=1
fi
else
echo "No binfmt_misc support"
fi
if [ $houdini_bin -eq 0 ]; then
echo "houdini enabling failed !!!"
fi
if [ $houdini_bin -eq 1 ]; then
echo "houdini enabled"
fi
exit 0
#
# Executable file formats / Emulations
#
CONFIG_BINFMT_ELF=y
# CONFIG_CORE_DUMP_DEFAULT_ELF_HEADERS is not set
CONFIG_HAVE_AOUT=y
# CONFIG_BINFMT_AOUT is not set
CONFIG_BINFMT_MISC=y
CONFIG_HAVE_ATOMIC_IOMAP=y
CONFIG_HAVE_TEXT_POKE_SMP=y
CONFIG_NET=y
testing builds HAVE BEEN UPDATED...
http://www.tabletsx86.org/
On Jul 3, 1:41 pm, TheARC77 <thear...@f4krom.com.ar> wrote:
> Except for ICS OpenGL, the apps appears and can be download from store, but
> with the first several don't work. Or i'm missing something?
>
> Samsung N150Plus<http://www.samsung.com/latin/consumer/monitor-peripherals-printer/not...>(latin american version)
testing builds HAVE BEEN UPDATED...
http://www.tabletsx86.org/
On Jul 3, 1:41 pm, TheARC77 <thear...@f4krom.com.ar> wrote:
> Except for ICS OpenGL, the apps appears and can be download from store, but
> with the first several don't work. Or i'm missing something?
>
> Samsung N150Plus<http://www.samsung.com/latin/consumer/monitor-peripherals-printer/not...>(latin american version)
testing builds HAVE BEEN UPDATED...
http://www.tabletsx86.org/
On Jul 3, 1:41 pm, TheARC77 <thear...@f4krom.com.ar> wrote:
> Except for ICS OpenGL, the apps appears and can be download from store, but
> with the first several don't work. Or i'm missing something?
>
> Samsung N150Plus<http://www.samsung.com/latin/consumer/monitor-peripherals-printer/not...>(latin american version)
testing builds HAVE BEEN UPDATED...
http://www.tabletsx86.org/
On Jul 3, 1:41 pm, TheARC77 <thear...@f4krom.com.ar> wrote:
> Except for ICS OpenGL, the apps appears and can be download from store, but
> with the first several don't work. Or i'm missing something?
>
> Samsung N150Plus<http://www.samsung.com/latin/consumer/monitor-peripherals-printer/not...>(latin american version)
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/r8XsuRh3BsMJ.
To post to this group, send email to andro...@googlegroups.com.
To unsubscribe from this group, send email to android-x86...@googlegroups.com.
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/osD3UiF2l2MJ.
testing builds HAVE BEEN UPDATED...
http://www.tabletsx86.org/
On Jul 3, 1:41 pm, TheARC77 <thear...@f4krom.com.ar> wrote:
> Except for ICS OpenGL, the apps appears and can be download from store, but
> with the first several don't work. Or i'm missing something?
>
> Samsung N150Plus<http://www.samsung.com/latin/consumer/monitor-peripherals-printer/not...>(latin american version)
On Thursday, July 5, 2012 7:40:50 PM UTC+2, Stefan wrote:
Hello,
yes I can confirm, a lot more software is running, and the performance is good. Angry Birds really makes fun! But some apps are not offered, like the Firefox beta. I think this is because the arm emulator only emulates an old subset of the Arm assembler language. Is there any way to test which subset is emulated, and is there a good benchmark tool, which differentiates between ARM, X86 and Dalvik apps and compares to other Android devices? I have downloaded one free benchmark, and there my WeTab only has about 3800 points, while a Samsung Galaxy S3 has abou 18.000 points, I can't believe that...
Stefan
Salam,
Ketut P. Kumajaya
updated testing builds available...
http://www.tabletsx86.org/
PLEASE read arm-emulation note...
On Jul 4, 9:26 pm, Ollie <ojrear...@gmail.com> wrote:
updated testing builds available...
http://www.tabletsx86.org/
PLEASE read arm-emulation note...
On Jul 4, 9:26 pm, Ollie <ojrear...@gmail.com> wrote:
@tabletsx86
1. Since 2012-07-06 asus_laptop build, internal sdcard support removed from /system/etc/init.sh :(
2. APK installer extract wrong Titanium Backup's busybox and sqlite3 binary, extract wrong AnTuTu Benchmark library. Both applicatian have native x86 support, no x86 cpu.abi since 2012-07-06 build :)
3. 2012-07-10 build extracted to /android-2012-07-09 directory. Android-x86 refuse to boot since my manually edited Grub map the kernel and initrd to /android-2012-07-10 :)
But of course, big thanks for your build.
@Anunakin
I will try your cpu.abi tips, thank you.
Best regards,
Ketut P. Kumajaya
Hi all I using Android-x86 test build (android-x86-4.0-asus_laptop-20120710.iso) from tabletsx86.orgFirst all, thanks for that work from Android-x86 team and Tabletsx86!I have a Dell XPS15 L502x, isos for asus_laptop works nice here, but not detects all my 6GB of RAM (only 1GB) dont know howI found some problems on using your test build:build.prop using armeabi-v7a and armeabiWith that titanium backup all near all apps who needs root access dont works, I think is because that apps detects x86 or arm boards...If using x86, armeabi and then armeabi-v7a on build.prop (ro....cpu cpu2 and cpu3) .. that way all apps works, and Google Store show arm apps too...
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/WtFP16w-meMJ.
Dear Thofen86,
> Suman,
>
> "Bluestacks binary translator" uses a modified version of QEMU which
> uses GPL license. Where can I download its source code?
Don't ask here, ask them. And let us know the result
> Thomas
>
> On Wednesday, June 20, 2012 11:59:13 PM UTC-7, Suman Saraf wrote:
> > Chih-Wei,
> >
> > As far as I know, the Intel translator can currently only translate ARM
> > v5. The bluestacks binary translator can do both v5 and v7.
> >
> > Suman
> >
> > On Jun 21, 2012, at 9:38 AM, Chih-Wei Huang wrote:
> > > However, it seems we cannot support both
> > > armeabi and armeabi-v7a abis.
> > > Settings TARGET_CPU_ABI2 to armeabi,
> > > we are unable to support armeabi-v7a only app
> > > like Temple Run.
> > >
> > > https://play.google.com/store/apps/details?id=com.imangi.templerun
> > >
> > > Is there a solution?
> > >
> > > (fortunately most apps containing native code
> > > support both)
> > >
> > > 2012/6/20 prober:
> > >> I'd just like to confirm that libhoudini is also working on a
> >
> > WeTab/EXOpc
> >
> > >> Atom N450 tablet with Android 4.0.4. Runs fast and fine ;-)
--
You received this message because you are subscribed to the Google Groups "Android-x86" group.
To view this discussion on the web visit https://groups.google.com/d/msg/android-x86/-/3PLKlOMarK4J.