On the root (astro file manager) I see init.goldfish what is that?
Sent from my DROIDX using Tapatalk
This is a discussion on Init. Goldfish in root folder within the Droid X General Discussion forums, part of the Droid X Discussion category; On the root (astro file manager) I see init.goldfish what is that? Sent from my DROIDX using Tapatalk...
On the root (astro file manager) I see init.goldfish what is that?
Sent from my DROIDX using Tapatalk
This is what mine says...
on boot
setprop ARGH ARGH
setprop net.eth0.dns1 10.0.2.3
setprop net.gprs.local-ip 10.0.2.15
setprop ro.radio.use-ppp no
setprop ro.build.product generic
setprop ro.product.device generic
# fake some battery state
setprop status.battery.state Slow
setprop status.battery.level 5
setprop status.battery.level_raw 50
setprop status.battery.level_scale 9
# disable some daemons the emulator doesn't want
stop dund
stop akmd
setprop ro.setupwizard.mode EMULATOR
# enable Google-specific location features,
# like NetworkLocationProvider and LocationCollector
setprop ro.com.google.locationfeatures 1
# For the emulator, which bypasses Setup Wizard, you can specify
# account info for the device via these two properties. Google
# Login Service will insert these accounts into the database when
# it is created (ie, after a data wipe).
#
# setprop ro.config.hosted_account username@hosteddomain.orgassword
# setprop ro.config.google_account username@gmail.comassword
#
# You MUST have a Google account on the device, and you MAY
# additionally have a hosted account. No other configuration is
# supported, and arbitrary breakage may result if you specify
# something else.
# [MOT] Simulator will not start without these changes.
class_start default
class_start pre-zygote_services
class_start zygote_services
class_start post-zygote_services
service goldfish-setup /system/etc/init.goldfish.sh
class pre-zygote_services
oneshot
service qemud /system/bin/qemud
class pre-zygote_services
socket qemud stream 666
oneshot
# -Q is a special logcat option that forces the
# program to check wether it runs on the emulator
# if it does, it redirects its output to the device
# named by the androidboot.console kernel option
# if not, is simply exit immediately
service goldfish-logcat /system/bin/logcat -Q
class pre-zygote_services
oneshot
... looks like instructions and explanations.
(This is a tapa sig) r...e...a...d![]()
"FEZ aims to create a non-threatening world rich with ambiance, a pleasant place to spend time in."
My bootanimationsMy bootlogos
Fantastic bootanimation tutorial!Reading, breaking, reading, and restoring
Part of the start up process (goldfish usually with virtual devices) it's a script
Sent from my DROIDX using Tapatalk
"FEZ aims to create a non-threatening world rich with ambiance, a pleasant place to spend time in."
My bootanimationsMy bootlogos
Fantastic bootanimation tutorial!Reading, breaking, reading, and restoring
http://www.vogella.de/articles/Andro...s/article.html
Sent from my DROIDX using Tapatalk
Thanks for the read, Cory
(This is a tapa sig) r...e...a...d![]()
"FEZ aims to create a non-threatening world rich with ambiance, a pleasant place to spend time in."
My bootanimationsMy bootlogos
Fantastic bootanimation tutorial!Reading, breaking, reading, and restoring
I've got more if you'd like haha a whole lotta bookmarks with miscellaneous android / programming crap haha![]()
Sent from my DROIDX using Tapatalk
Really? I saw this in the system/lib/hw while fixing the camera not the init.goldfishi saw camera.goldfish
Sent from my PD_Novel using Tapatalk
Well init.goldfish.sh is a little different wouldn't you say from camera.goldfish.so
Sounds like you pulled a shared shared library (usually written in c/c++) from another device and placed it in yours
Little more info:
.sh = shell ; scripts
.so = shared library (stands for shared object- windows has/ uses dll)- explanation http://users.actcom.co.il/~choo/lupg...libraries.html
.rc = configuration file
Sent from my DROIDX using Tapatalk