본문 바로가기
728x90
반응형

3. 개발 관련191

how do I participate to linux mainline?. 1) modified source#] vim `path/modifiedfile` 2) coding style check for upstream.#] script/checkpatch.pl --file `path/modifiedfile` => check until no errors and no warnings :) 3) git add to modified source file#] git add `path/modifiedfile` 4) commit with commit message#]git commit -s writing commit message 5) make patch file#] git format-patch -1 6) send email to mailing list and maintaner#] git.. 2012. 11. 20.
Android build or envsetup error : malformded copy error - malformed copy errors are like below message.=======================================================build/core/product_config.mk:195: *** device/samsung/arndale/full_arndale.mk: malformed COPY_FILE "B". Stop.======================================================= In BoardConfig.mk file or the other *.mk files. PRODUCT_COPY_FILES +=A:BA : source fileB : destination file Almost case about this e.. 2012. 11. 15.
kernel/uboot disassemble 만들어뿌까! 1. Prepare symbol file kernel : vmlinux u-boot : u-boot 2. Prepare objdump(or arm-eabi-objdump for embedded system) 3. Run follow command 1) kernel #] arm-eabi-objdump -d vmlinux > vmlinux.dis 2) u-boot #] arm-eabi-objdump -d uboot > uboot.dis Quite simple :) 2012. 11. 13.
adb device error : insufficient permissions for device adb device 시에 아래 같은 에러가 나온다면? List of devices attached ???????????? no permissions 아래와 같이 adb 서버를 sudo 로 재시작해준다. #] sudo adb kill-server #] sudo adb start-server #] sudo adb devices 끝. :) 2012. 11. 6.
repo sync, error: Exited sync due to gc errors repo sync 시에 갑자기 나만 에러가난다... ㅡㅡuBuntu 10.10 사용 중이며, git-core 는 최신버전을 사용중이었다. 아래 csdn 참조 내용.http://blog.csdn.net/javensun/article/details/8124341 #] sudo vim etc/apt/sources.listdeb http://mirrors.163.com/ubuntu/ oneiric main universe restricted multiversedeb-src http://mirrors.163.com/ubuntu/ oneiric main universe restricted multiversedeb http://mirrors.163.com/ubuntu/ oneiric-security universe .. 2012. 10. 29.
git stash :) 작업하던 코드를 임시 저장하고 싶을때?작업하다 말고 새로 git pull을 적용해서 작업하고 싶을떄?`A` branch 에서 작업하다 말고 `B` branch 로 넘어가고 싶을떄?#] git stash로 임시 저장한다. 다시 불러오고 싶을때?#] git stash pop로 다시 갖고온다. :) 2012. 10. 19.
728x90
반응형