[Ubuntu] 퀄컴 Athreos 드라이버 설치 (qca61x4)
2018. 9. 11. 14:49
Linux
#Samsung #NT930X2K-KY4 #Athreos #QCA61X4 sudo apt-get update sudo apt-get install git git clone https://github.com/kvalo/ath10k-firmware.git sudo cp -r ath10k-firmware/QCA6174/* /lib/firmware/ath10k sudo mv /lib/firmware/ath10k/QCA6174/hw2.1/firmware-5.bin_SW_RM.1.1.1-00157-QCARMSWPZ-1 /lib/firmware/ath10k/QCA6174/hw2.1/firmware-5.bin
major version 52 is newer than 51, the highest major version supported by this compiler
2018. 5. 11. 12:01
Linux
warning: lib.java/android.interface.jar(java/lang/Double.class): major version 52 is newer than 51, the highest major version supported by this compiler. It is recommended that the compiler be upgraded. warning: lib.java/android.interface.jar(java/lang/Boolean.class): major version 52 is newer than 51, the highest major version supported by this compiler. It is recommended that the compiler be u..
[git] Another git process seems to be running in this repository
2018. 5. 1. 09:32
ETC
fatal: Unable to create 'E:/workspace/source/.git/index.lock': File exists. Another git process seems to be running in this repository, e.g. an editor opened by 'git commit'. Please make sure all processes are terminated then try again. If it still fails, a git process may have crashed in this repository earlier: remove the file manually to continue. 위와 같이 git checkout 시에 에러가 발생하면 다른 프로세스에서 git ..
[Visual Studio Code] 프로젝트에서 특정 디렉토리 제외하기
2018. 3. 28. 11:16
ETC
Visual Studio Code는 Microsoft에서 제공하는 무료 IDE이다. 윈도우에서야 Visual Studio를 사용하면 되지만 리눅스 환경에서는 딱히 쓸만한 IDE를 찾지 못했다. 전통적으로는 vi, cscope, ctags 조합을 사용했겠지만 시대가 참 많이 변한지라 요즘 많은 분들이 Sublime Text를 사용하는 걸로 알고 있다. Sublime Text도 좋지만 유료라서 구매가 망설여지고 무료인 lime text는 좀 부족하고 Wine 기반으로 Source Insight를 사용해보기도 하고... 그러다 Visual Studio Code가 무료로 공개되었다길래 사용하고 있는데 현재까지는 아주 만족스럽다. Visual Studio Code는 디렉토리를 프로젝트로 구성할 수 있다. 간단히 ..
[Chromium] error: 'EGLAttrib' does not name a type
2018. 3. 13. 11:19
ETC
../../third_party/swiftshader/include/EGL/eglext.h:126:97: error: 'EGLAttrib' does not name a type typedef EGLint (EGLAPIENTRYP PFNEGLDEBUGMESSAGECONTROLKHRPROC) (EGLDEBUGPROCKHR callback, const EGLAttrib *attrib_list); ^ ../../third_party/swiftshader/include/EGL/eglext.h:127:78: error: 'EGLAttrib' has not been declared typedef EGLBoolean (EGLAPIENTRYP PFNEGLQUERYDEBUGKHRPROC) (EGLint attribute,..
adb logcat 로그 초기화
2018. 3. 10. 10:32
Android
안드로이드에서 로그를 찍다보면 기존의 로그 때문에 새로운 로그가 너무 많아서 살펴보기 힘들때가 있다. 지금까지 기록된 로그를 모두 지우려면 안드로이드 스튜디오에서 위의 1번 휴지통 버튼을 누르면 된다.터미널에서는?adb logcat -c 필터링, 파일 출력 등 이외의 자세한 옵션은 아래 링크에서 참조하면 된다.https://developer.android.com/studio/command-line/logcat.html?hl=ko#startingLogcat