안드로이드 에뮬레이터 CPU type 변경
2012. 2. 7. 12:52
OS/안드로이드
$./emulator -kernel /{AndroidRoot}/prebuilt/android-arm/kernel/kernel-qemu-armv7 -avd avdname -qemu -cpu cortex-a8 안드로이드 에뮬레이터 사용시 qemu가 지원하는 여러 CPU 중에서 특정 CPU를 에뮬레이션 하고 싶다면 위와 같이 -qemu -cpu 옵션을 통해서 추가할 수 있다. 지원하는 CPU 목록을 보고 싶다면 -qemu -cpu ? 라고 옵션을 추가하면 다음과 같은 목록이 나온다. Available CPUs: arm926 arm946 arm1026 arm1136 arm1136-r2 arm11mpcore cortex-m3 cortex-a8 ti925t pxa250 pxa255 pxa260 pxa261 pxa2..
안드로이드 read-only File System read-write 모드로 변경
2011. 11. 10. 14:22
OS/안드로이드
Mount a filesystem read-write Very often when you want to write files to a particular partition on ADP1, you will get a "Permission Denied" if the partition is mounted read-only. To get around this, you need to mount the partition read-write. Typically this is done with /system partition $ adb shell $ su # mount -o rw,remount -t yaffs2 /dev/block/mtdblock3 /system 주의 사항 젤리빈 이후 버전에서는 파일시스템이 ext4로..