Building CIFS.ko for a no-name Android TV device

July 25, 2012

Much more fill-in detail to follow… mkdir 2-kernel cd 2-kernel/ # http://wiki.cyanogenmod.com/wiki/Building_Kernel_from_source scp root@wifitv.herald:/proc/config.gz .. git clone https://android.googlesource.com/platform/prebuilt git clone git://github.com/madmaze/Meson-3-Kernel.git gunzip config.gz cp config Meson-3-Kernel/.config cd Meson-3-Kernel more .config git log export PATH=$(pwd)/../prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/bin:$PATH export ARCH=arm export SUBARCH=arm export CROSS_COMPILE=arm-eabi- # Hmmm – someone misplaced a folder… mkdir -p ../out/target/product/f16ref/root make menuconfig # Set ‘M’ [...]

0

G2X connecting in developer mode

January 7, 2012
Tags: , , , , ,

On Fedora, I was having issues getting my T-Mobile G2X to connect in developer mode. For sure, I was setting Settings-Applications-USBdebugging to Checked. And when plugging in the device, the SD card (and/or) internal memory space was showing up on the desktop (and the output in /var/log/messages looked equivalent to that from my working G1) [...]

0

Building Titanium SDK on Fedora

May 25, 2010

These direct steps (using the openjdk, not the Sun one) are confirmed to work… Below, the following are our (typical) values : MY_ANDROID_SDK : /path-to-android-sdk-installation-root/android-sdk-linux_86 MY_TITANIUM_DEVELOPER_DIR : /path-to-titanium-developer-installation-root/Titanium Developer-1.2.1 MY_TITANIUM_FILES_DIR : /path-to-my-home-directory/.titanium MY_TITANIUM_SDK : /any-suitable-directory/ Note that MY_TITANIUM_FILES_DIR is the default created/used by the Titanium Developer program, which one runs from MY_TITANIUM_DEVELOPER_DIR using ./Titanium Developer [...]

Comments Off

Android SDK on 64-bit fedora (openjdk)

May 20, 2010

Requirement : Get the 32-bit Android SDK to work on a 64-bit Fedora machine (Fedora 11 tested below), using the standard openjdk rather than Sun Java. No eclipse required, since development will be done using Titanium. 32-bit libraries are required. To clear out existing libraries (only if you know you haven’t got anything else dependent [...]

Comments Off

udev rule for Android G1 phone

May 20, 2010

Create /etc/udev/rules.d/91-android.rules with the contents : SUBSYSTEM=="usb", ATTRS{idVendor}=="0bb4", SYMLINK+="android_adb", MODE="0666", OWNER="rmbsanal" Then /etc/init.d/udev-post reload and re-plug in your Android phone. That’s it.

Comments Off