embeded/arduino(genuino)2016. 11. 25. 10:04

6채널까지 가능

흐음..


조금 더 많았으면 좋았을텐데 조금 아쉽네


Microcontroller Atmel ATmega168 or ATmega328

Operating Voltage (logic level) 5 V

Input Voltage (recommended) 7-12 V

Input Voltage (limits) 6-20 V

Digital I/O Pins 14 (of which 6 provide PWM output)

Analog Input Pins 8

[링크 : https://www.arduino.cc/en/Main/ArduinoBoardNano]


아두이노 마이크로는 7채널이네

Microcontroller ATmega32U4

Operating Voltage 5V

Input Voltage (recommended) 7-12V

Input Voltage (limit) 6-20V

Digital I/O Pins 20

PWM Channels 7

Analog Input Channels 12

[링크 : https://www.arduino.cc/en/Main/ArduinoBoardMicro]


3,5,6,9,10,11 번이 PWM 이라고 했는데

아두이노 핀 번호라고 해야하나 어떻게 매핑되는진 매번 찾아야 할지도...


[링크 : https://forum.arduino.cc/index.php?topic=147582.0]

    [링크 : http://www.pighixxx.com/test/pinouts/boards/nano.pdf]

'embeded > arduino(genuino)' 카테고리의 다른 글

pwm ppm decode  (0) 2016.11.28
arduino clcd  (0) 2016.11.25
아두이노 프로세싱(언어)  (0) 2016.05.09
arduino firmata  (0) 2016.04.27
attiny2313 usb client  (0) 2016.04.19
Posted by 구차니
embeded/Cortex-M4 Ti2016. 11. 23. 17:08

원인 불명(?)으로

trim 값이 0x7FFF가 기본값인데

0x0114정도 들어있어서

어느 순간인가 갑자기 1초 더해지는게 아닌 2초가 더해지는 현상을 발견 -_-


결론은.. 이걸 어떻게 구워삶냐 인가..

일단 

  if(HibernateIsActive())

{

HibernateRTCTrimSet(0x7FFF);

}

식으로 되어 있어야 trim이 설정되는거 같은데 끄응... 머리 아프네

어떤 조건에서 설정이 되는지 알수가 없다보니..


+

일단은.. hibernate가 on 되어야 설정이 되는데

그렇다면.. 설정이 안된채로 넘어간적도 있다는 건가? 싶은데.. 머지?


데이터 시트 상으로는, 64초 마다 더하거나 뺸다고

그런 이유로 보고 있으면 갑자기 시간이 2초가 간다거나 하는 식으로 드러난다.

(물론 0x7FFF 보다 적을 경우는 빠르게 가고 0x7FFF < x < 0x10000 일 경우에는 느리게가는 듯?)


+

lm3s1607의 hibernate예제

클럭 초기화가 두번이네.. 일단은 이렇게 해주니 문제없이 rtc가 가동되는 듯..

     //

    // Enable the Hibernation module.

    //

    SysCtlPeripheralEnable(SYSCTL_PERIPH_HIBERNATE);


    //

    // Per an erratum, sometimes on wake the Hibernation module control

    // register will be cleared when it should not be.  As a workaround a

    // location in the non-volatile data area can be read instead.  This data

    // area is cleared to 0 on reset, so if the first location is non-zero then

    // the Hibernation module is in use.  In this case, re-enable the

    // Hibernation module which will ensure that the control register bits have

    // the proper value.

    //

    HibernateDataGet(&ulHibernateCount, 1);

    if(ulHibernateCount)

    {

        HibernateEnableExpClk(SysCtlClockGet());

        HibernateClockSelect(HIBERNATE_CLOCK_SEL_DIV128);

    }


    //

    // Check to see if Hibernation module is already active, which could mean

    // that the processor is waking from a hibernation.

    //

    if(HibernateIsActive())

    {

        //

        // Read the status bits to see what caused the wake.

        //

        ulStatus = HibernateIntStatus(0);

    }


    //

    // Enable the Hibernation module.  This should always be called, even if

    // the module was already enabled, because this function also initializes

    // some timing parameters.

    //

    HibernateEnableExpClk(SysCtlClockGet());


    //

    // If the wake was not due to button or RTC match, then it was a reset.

    //

    if(!(ulStatus & (HIBERNATE_INT_PIN_WAKE | HIBERNATE_INT_RTC_MATCH_0)))

    {

        //

        // Configure the module clock source.

        //

        HibernateClockSelect(HIBERNATE_CLOCK_SEL_DIV128);


        //

        // Finish the wake cause message.

        //

        RIT128x96x4StringDraw("RESET", COL(7), ROW(4), 15);


        //

        // Wait a couple of seconds in case we need to break in with the

        // debugger.

        //

        SysTickWait(3 * 100);


        //

        // Allow time for the crystal to power up.  This line is separated from

        // the above to make it clear this is still needed, even if the above

        // delay is removed.

        //

        SysTickWait(15);

    }


    //


Posted by 구차니
embeded/odroid2016. 11. 21. 20:58

14.04에서도 안된건... vlc출력 설정 문제였을까?


$ dmesg

[   31.676418] usb 1-3.1: new full-speed USB device number 6 using s5p-ehci

[   31.782909] usb 1-3.1: New USB device found, idVendor=0ac8, idProduct=301b

[   31.782918] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0

[   31.782924] usb 1-3.1: Product: PC Camera

[   31.782929] usb 1-3.1: Manufacturer: Vimicro Corp.

[   33.350055] gspca_main: v2.14.0 registered

[   33.352485] gspca_main: gspca_zc3xx-2.14.0 probing 0ac8:301b

[   33.536816] input: gspca_zc3xx as /devices/platform/s5p-ehci/usb1/1-3/1-3.1/input/input4

[   33.537949] usbcore: registered new interface driver gspca_zc3xx 


$ ll /dev/video*

crw-rw----+ 1 root video 81, 16 11월 21 20:53 /dev/video0

crw-rw----+ 1 root video 81,  0  2월 12  2016 /dev/video10

crw-rw----+ 1 root video 81,  1  2월 12  2016 /dev/video11

crw-rw----+ 1 root video 81,  2  2월 12  2016 /dev/video12

crw-rw----+ 1 root video 81,  3  2월 12  2016 /dev/video13

crw-rw----+ 1 root video 81,  4  2월 12  2016 /dev/video14

crw-rw----+ 1 root video 81,  5  2월 12  2016 /dev/video15

crw-rw----+ 1 root video 81,  6  2월 12  2016 /dev/video16

crw-rw----+ 1 root video 81,  7  2월 12  2016 /dev/video17

crw-rw----+ 1 root video 81, 12  2월 12  2016 /dev/video20

crw-rw----+ 1 root video 81, 13  2월 12  2016 /dev/video21

crw-rw----+ 1 root video 81, 14  2월 12  2016 /dev/video8

crw-rw----+ 1 root video 81, 15  2월 12  2016 /dev/video9


$ vlc

VLC media player 2.2.2 Weatherwax (revision 2.2.2-0-g6259d80)

[00023938] core libvlc: 기본 인터페이스로 vlc 실행. vlc 인터페이스 없이 사용하려면 'cvlc' 을 사용하세요.

sudFailed to open VDPAU backend libvdpau_nvidia.so: 동적 오브젝트 파일을 열 수 없습니다: 그런 파일이나 디렉터리가 없습니다

[b5905cb8] xcb_xv vout display error: no available XVideo adaptor

libGL error: unable to load driver: exynos_dri.so

libGL error: driver pointer missing

libGL error: failed to load driver: exynos

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a7509b48] avcodec decoder error: more than 5 seconds of late video -> dropping frame (computer too slow ?)

[a2500510] core input error: ES_OUT_SET_(GROUP_)PCR  is called too late (pts_delay increased to 300 ms) 


사용 가능한 옵션은 다음과 같은데..

아스키 아트 비디오 출력을 하니 아래와 같이 나온다. 

오메 신기해라 ㅋㅋ

X11 비디오 출력으로 하니 정상적으로 잘 나온다.


Posted by 구차니
embeded/odroid2016. 11. 19. 15:11

왜 안될까 -_-


$ sudo find / -name *flash*

/usr/lib/mozilla/plugins/flash-mozilla.so

/usr/lib/browser-plugin-freshplayer-pepperflash/libfreshwrapper-flashplayer.so

/etc/alternatives/flash-mozilla.so

/var/lib/dpkg/alternatives/flash-mozilla.so 


[링크 : https://ubuntu-mate.community/t/tutorial-flash-player-for-chromium-and-firefox/3598]


[링크 : http://askubuntu.com/questions/513027/flash-for-ubuntu-arm]


Adobe Flash Player 버전: 11.2.999.999
Shockwave Flash 11.2 r999
이름:Shockwave Flash
설명:Shockwave Flash 11.2 r999
버전:11.2.999.999
위치:/etc/alternatives/flash-mozilla.so
유형:PPAPI(프로세스 외부)
MIME 형식:
MIME 유형설명파일 확장명
application/x-shockwave-flashShockwave Flash
.swf
application/futuresplashFutureSplash Player
.spl
사용 중지  



'embeded > odroid' 카테고리의 다른 글

odroid vlc 웹캠 cpu 점유율  (0) 2016.11.26
odroid u3 16.04 vlc / webcam  (0) 2016.11.21
odroid ubuntu mate 16.04 uname  (0) 2016.11.17
odroid u3 ubuntu MATE 16.04 / chrome hold  (0) 2016.11.14
odroid ubuntu mate 16.04 사용준비  (0) 2016.11.12
Posted by 구차니
embeded/odroid2016. 11. 17. 22:58

커널 빌드시 어떤 버전을 써야 하려나...


$ uname -a

Linux odroid_2 3.8.13.30 #1 SMP PREEMPT Mon Sep 19 23:41:49 BRT 2016 armv7l armv7l armv7l GNU/Linux




Posted by 구차니
embeded/odroid2016. 11. 14. 22:51

아무래도.. webGL 가속 때문에 고정한것 같은데 일단은

로그인이 안되니. hold를 풀어서 업데이트 진행!


$ sudo apt-mark unhold chromium*

chromium-browser은(는) 고정하지 않았습니다.

chromium-codecs-ffmpeg은(는) 고정하지 않았습니다.

chromium-browser-l10n은(는) 고정하지 않았습니다.

chromium-browser-dbg은(는) 고정하지 않았습니다.

chromium-bsu은(는) 고정하지 않았습니다.

chromium-bsu-data은(는) 고정하지 않았습니다.

chromium-chromedriver-dbg은(는) 고정하지 않았습니다.

chromium-codecs-ffmpeg-dbg은(는) 고정하지 않았습니다.

chromium-codecs-ffmpeg-extra-dbg은(는) 고정하지 않았습니다.

chromium-lwn4chrome은(는) 고정하지 않았습니다.

chromium-codecs-ffmpeg-extra 패키지 고정 취소함.

chromium-chromedriver 패키지 고정 취소함.


odroid@odroid_2:~$ sudo apt-get upgrade

패키지 목록을 읽는 중입니다... 완료

의존성 트리를 만드는 중입니다       

상태 정보를 읽는 중입니다... 완료

업그레이드를 계산하는 중입니다... 완료

다음 패키지를 업그레이드할 것입니다:

  chromium-browser chromium-browser-l10n chromium-chromedriver

  chromium-codecs-ffmpeg-extra

4개 업그레이드, 0개 새로 설치, 0개 제거 및 0개 업그레이드 안 함.

52.4 M바이트 아카이브를 받아야 합니다.

이 작업 후 27.7 M바이트의 디스크 공간이 비워집니다.

계속 하시겠습니까? [Y/n]  


엌ㅋ 업데이트하니 실행이 안된다.

망했어 ㅋㅋㅋ


$ chromium-browser --verbose
[7321:7321:1114/140910:VERBOSE1:breakpad_linux.cc(1840)] Breakpad disabled
[1:1:1114/140912:VERBOSE1:zygote_main_linux.cc(599)] ZygoteMain: initializing 0 fork delegates
[1:1:1114/140912:INFO:systeminfo.cc(82)] Available number of cores: 4
[7321:7321:1114/140913:VERBOSE1:gpu_info_collector_linux.cc(88)] PCI bus scanning is not supported
[7321:7321:1114/140913:VERBOSE1:proxy_config_service_linux.cc(853)] All gsettings tests OK. Will get proxy config from gsettings.
[7321:7321:1114/140913:VERBOSE1:proxy_config_service_linux.cc(1611)] Obtained proxy settings from GSETTINGS
[7321:7321:1114/140913:VERBOSE1:pref_proxy_config_tracker_impl.cc(151)] 0xb723e580: set chrome proxy config service to 0xb72437d0
[7321:7321:1114/140913:VERBOSE1:pref_proxy_config_tracker_impl.cc(276)] 0xb723e580: Done pushing proxy to UpdateProxyConfig
[7321:7321:1114/140913:VERBOSE1:key_storage_linux.cc(23)] OSCrypt store set to
[7321:7321:1114/140913:VERBOSE1:mutable_profile_oauth2_token_service_delegate.cc(137)] MutablePO2TS::MutablePO2TS
[7321:7321:1114/140913:VERBOSE1:bluetooth_low_energy_event_router.cc(247)] Initializing BluetoothLowEnergyEventRouter.
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Pilot' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Aviator' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: DigiCert Log Server
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Rocketeer' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Venafi log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec 'Vega' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: CNNIC CT log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Izenpe log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Certly.IO log
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_MAIN
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_MAIN
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_CLOUD_PRINT
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_CLOUD_PRINT
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING_HOST
[7321:7321:1114/140913:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING_HOST
[7321:7321:1114/140913:VERBOSE1:proxy_config_service_linux.cc(853)] All gsettings tests OK. Will get proxy config from gsettings.
[7321:7321:1114/140913:VERBOSE1:proxy_config_service_linux.cc(1611)] Obtained proxy settings from GSETTINGS
[7321:7321:1114/140913:VERBOSE1:pref_proxy_config_tracker_impl.cc(151)] 0xb7354948: set chrome proxy config service to 0xb7355358
[7321:7321:1114/140913:VERBOSE1:pref_proxy_config_tracker_impl.cc(276)] 0xb7354948: Done pushing proxy to UpdateProxyConfig
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Pilot' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Aviator' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: DigiCert Log Server
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Rocketeer' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Venafi log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec 'Vega' log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: CNNIC CT log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Izenpe log
[7321:7363:1114/140913:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Certly.IO log
[7321:7321:1114/140913:VERBOSE1:password_store_factory.cc(203)] Password storage detected desktop environment: GNOME
[7321:7321:1114/140913:VERBOSE1:password_store_factory.cc(226)] Trying libsecret for password storage.
[7321:7321:1114/140913:VERBOSE1:password_store_factory.cc(229)] Using libsecret keyring for password storage.
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Bookmark Manager
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Cloud Print
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1524)] AddComponentExtension 웹 스토어
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Google Hangouts
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1526)] Component extension Google Hangouts (nkeimhogjdpnpccoofpliimaahmaaome) installing/upgrading from '1.1.2' to 1.3.0
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1524)] AddComponentExtension CryptoTokenExtension
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1526)] Component extension CryptoTokenExtension (kmendfapggjehodndflmmgagdbamhnfd) installing/upgrading from '0.9.31' to 0.9.38
[7321:7321:1114/140913:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Chromium PDF Viewer
[7321:7321:1114/140913:VERBOSE1:account_reconcilor.cc(70)] AccountReconcilor::AccountReconcilor
[7321:7321:1114/140913:VERBOSE1:account_reconcilor.cc(81)] AccountReconcilor::Initialize
[7321:7392:1114/140913:VERBOSE1:default_component_installer.cc(198)] StartRegistration for Widevine Content Decryption Module
[7321:7321:1114/140913:VERBOSE1:ev_whitelist_component_installer.cc(141)] Registering EV whitelist component.
[7321:7321:1114/140913:VERBOSE1:file_type_policies_component_installer.cc(123)] Registering File Type Policies component.
[7321:7392:1114/140913:VERBOSE1:default_component_installer.cc(198)] StartRegistration for EV Certs CT whitelist
[7321:7392:1114/140913:VERBOSE1:default_component_installer.cc(198)] StartRegistration for Signed Tree Heads
[7321:7392:1114/140913:VERBOSE1:default_component_installer.cc(198)] StartRegistration for Origin Trials
[7321:7392:1114/140913:VERBOSE1:default_component_installer.cc(198)] StartRegistration for File Type Policies
[7321:7359:1114/140913:VERBOSE1:crl_set_fetcher.cc(105)] Loaded 203150 bytes of CRL set from disk
[7321:7363:1114/140913:VERBOSE1:crl_set_fetcher.cc(127)] Installed CRL set #3374
[7321:7321:1114/140913:VERBOSE1:startup_browser_creator_impl.cc(571)] StartupBrowserCreatorImpl::ProcessStartupURLs
[7321:7321:1114/140913:VERBOSE1:startup_browser_creator_impl.cc(575)] Pref: last
[7321:7321:1114/140914:VERBOSE1:proxy_config_service_linux.cc(1723)] Detected no-op change to proxy settings. Doing nothing.
[7321:7321:1114/140914:VERBOSE1:proxy_config_service_linux.cc(1723)] Detected no-op change to proxy settings. Doing nothing.
[7321:7321:1114/140914:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for Widevine Content Decryption Module
[7321:7321:1114/140914:VERBOSE1:component_updater_service.cc(85)] CrxUpdateService starting up. First update attempt will take place in 360 seconds. Next update attempt will take place in 21600 seconds.
[7321:7321:1114/140914:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for EV Certs CT whitelist
[7321:7321:1114/140914:VERBOSE1:default_component_installer.cc(360)] Component ready, version 7 in /home/odroid/.config/chromium/EVWhitelist/7
[7321:7321:1114/140914:VERBOSE1:ev_whitelist_component_installer.cc(102)] Component ready, version 7 in /home/odroid/.config/chromium/EVWhitelist/7
[7321:7321:1114/140914:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for Signed Tree Heads
[7321:7392:1114/140914:VERBOSE1:ev_whitelist_component_installer.cc(41)] Reading EV whitelist from file: /home/odroid/.config/chromium/EVWhitelist/7/_platform_specific/all/ev_hashes_whitelist.bin
[7321:7321:1114/140914:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for Origin Trials
[7321:7321:1114/140914:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for File Type Policies
[7321:7392:1114/140914:VERBOSE1:packed_ct_ev_whitelist.cc(66)] Uncompressing EV whitelist of size 674082
[7321:7392:1114/140914:VERBOSE1:ev_whitelist_component_installer.cc(57)] EV whitelist: Successfully loaded.
[7321:7363:1114/140914:VERBOSE1:packed_ct_ev_whitelist.cc(26)] Setting new EV Certs whitelist.
[4:4:1114/140914:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[7321:7321:1114/140916:VERBOSE1:cross_device_promo.cc(71)] CrossDevicePromo::CrossDevicePromo.
[7321:7321:1114/140916:VERBOSE1:cross_device_promo.cc(180)] CrossDevicePromo::MaybeBrowsingSessionStarted; Ineligible for promo.
[7321:7321:1114/140916:VERBOSE1:cross_device_promo.cc(180)] CrossDevicePromo::MaybeBrowsingSessionStarted; Ineligible for promo.
[7321:7321:1114/140916:VERBOSE1:cross_device_promo.cc(180)] CrossDevicePromo::MaybeBrowsingSessionStarted; Ineligible for promo.
[4:4:1114/140916:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[6:6:1114/140916:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[6:6:1114/140916:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[8:8:1114/140916:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[8:8:1114/140916:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[16:16:1114/140916:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[16:16:1114/140916:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[6:6:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           nkeimhogjdpnpccoofpliimaahmaaome
  frame:                  0x5b7e19c4
  URL:                   
  context_type:           BLESSED_EXTENSION
  effective extension id: nkeimhogjdpnpccoofpliimaahmaaome
  effective context type: BLESSED_EXTENSION
[6:6:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                   
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[8:8:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           kmendfapggjehodndflmmgagdbamhnfd
  frame:                  0x564a19c4
  URL:                   
  context_type:           BLESSED_EXTENSION
  effective extension id: kmendfapggjehodndflmmgagdbamhnfd
  effective context type: BLESSED_EXTENSION
[8:8:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                   
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[4:4:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  0x57a419c4
  URL:                   
  context_type:           WEB_PAGE
  effective extension id: (none)
  effective context type: WEB_PAGE
[4:4:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                   
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[4:4:1114/140916:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[16:16:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           nmmhkkegccagdldgiimedpiccmgmieda
  frame:                  0x236419c4
  URL:                   
  context_type:           BLESSED_EXTENSION
  effective extension id: nmmhkkegccagdldgiimedpiccmgmieda
  effective context type: BLESSED_EXTENSION
[16:16:1114/140916:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                   
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[8:8:1114/140916:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[6:6:1114/140916:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[16:16:1114/140917:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[7394:7394:1114/140917:ERROR:sandbox_linux.cc(343)] InitializeSandbox() called with multiple threads in process gpu-process.
[7394:7394:1114/140917:VERBOSE1:child_thread_impl.cc(371)] Mojo is disabled on child
[7394:7394:1114/140917:VERBOSE1:gles2_cmd_decoder.cc(3140)] GL_OES_packed_depth_stencil supported.
[7394:7394:1114/140917:VERBOSE1:gles2_cmd_decoder.cc(3140)] GL_OES_packed_depth_stencil supported.
[7394:7394:1114/140917:VERBOSE1:gles2_cmd_decoder.cc(3140)] GL_OES_packed_depth_stencil supported.
[4:4:1114/140917:VERBOSE1:dispatcher.cc(533)] Num tracked contexts: 0
[4:4:1114/140917:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  0x57a419c4
  URL:                   
  context_type:           WEB_PAGE
  effective extension id: (none)
  effective context type: WEB_PAGE
[4:4:1114/140917:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                   
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[4:4:1114/140917:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[4:4:1114/140917:VERBOSE1:script_context.cc(119)] Destroyed context for extension
  extension id:
  effective extension id:
[4:4:1114/140917:VERBOSE1:script_context.cc(119)] Destroyed context for extension
  extension id:
  effective extension id:
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_MAIN
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_MAIN
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_CLOUD_PRINT
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_CLOUD_PRINT
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING_HOST
[4:4:1114/140917:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING_HOST
세그멘테이션 오류 



+

아래 내용이 있나 확인을 다시 해보고, EGS 가속 하지 않도록 하면 구동은 되려나?

edit /etc/chromium-browser/default like this:


CHROMIUM_FLAGS=" --use-gl=egl --ignore-gpu-blacklist --disable-accelerated-2d-canvas --num-raster-threads=2" 


[링크 : http://odroid.com/dokuwiki/doku.php?id=en:u3_ubuntu_release_note_20160921]


+

2016.11.15

위에 껄 주석처리해서 실행해도 조금 실행될뿐 죽는건 동일하다. ㅠㅠ

$ chromium-browser --verbose
[3546:3546:1115/112056:VERBOSE1:breakpad_linux.cc(1840)] Breakpad disabled
[1:1:1115/112058:VERBOSE1:zygote_main_linux.cc(599)] ZygoteMain: initializing 0 fork delegates
[1:1:1115/112058:INFO:systeminfo.cc(82)] Available number of cores: 4
[3546:3546:1115/112058:VERBOSE1:gpu_info_collector_linux.cc(88)] PCI bus scanning is not supported
[3546:3546:1115/112058:VERBOSE1:proxy_config_service_linux.cc(853)] All gsettings tests OK. Will get proxy config from gsettings.
[3546:3546:1115/112058:VERBOSE1:proxy_config_service_linux.cc(1611)] Obtained proxy settings from GSETTINGS
[3546:3546:1115/112058:VERBOSE1:pref_proxy_config_tracker_impl.cc(151)] 0xb721fb20: set chrome proxy config service to 0xb72440d0
[3546:3546:1115/112058:VERBOSE1:pref_proxy_config_tracker_impl.cc(276)] 0xb721fb20: Done pushing proxy to UpdateProxyConfig
[3546:3546:1115/112058:VERBOSE1:key_storage_linux.cc(23)] OSCrypt store set to
[3546:3546:1115/112058:VERBOSE1:mutable_profile_oauth2_token_service_delegate.cc(137)] MutablePO2TS::MutablePO2TS
[3546:3546:1115/112058:VERBOSE1:bluetooth_low_energy_event_router.cc(247)] Initializing BluetoothLowEnergyEventRouter.
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_MAIN
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_MAIN
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_CLOUD_PRINT
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_CLOUD_PRINT
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING_HOST
[3546:3546:1115/112058:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING_HOST
[3546:3546:1115/112058:VERBOSE1:proxy_config_service_linux.cc(853)] All gsettings tests OK. Will get proxy config from gsettings.
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Pilot' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Aviator' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: DigiCert Log Server
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Rocketeer' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Venafi log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec 'Vega' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: CNNIC CT log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Izenpe log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Certly.IO log
[3546:3546:1115/112058:VERBOSE1:proxy_config_service_linux.cc(1611)] Obtained proxy settings from GSETTINGS
[3546:3546:1115/112058:VERBOSE1:pref_proxy_config_tracker_impl.cc(151)] 0xb734a080: set chrome proxy config service to 0xb734a870
[3546:3546:1115/112058:VERBOSE1:pref_proxy_config_tracker_impl.cc(276)] 0xb734a080: Done pushing proxy to UpdateProxyConfig
[3546:3546:1115/112058:VERBOSE1:password_store_factory.cc(203)] Password storage detected desktop environment: GNOME
[3546:3546:1115/112058:VERBOSE1:password_store_factory.cc(226)] Trying libsecret for password storage.
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Pilot' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Aviator' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: DigiCert Log Server
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Google 'Rocketeer' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Venafi log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Symantec 'Vega' log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: CNNIC CT log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Izenpe log
[3546:3578:1115/112058:VERBOSE1:multi_log_ct_verifier.cc(67)] Adding CT log: Certly.IO log
[3546:3546:1115/112058:VERBOSE1:password_store_factory.cc(229)] Using libsecret keyring for password storage.
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Bookmark Manager
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Cloud Print
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1524)] AddComponentExtension 웹 스토어
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Google Hangouts
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1526)] Component extension Google Hangouts (nkeimhogjdpnpccoofpliimaahmaaome) installing/upgrading from '1.1.2' to 1.3.0
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1524)] AddComponentExtension CryptoTokenExtension
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1526)] Component extension CryptoTokenExtension (kmendfapggjehodndflmmgagdbamhnfd) installing/upgrading from '0.9.31' to 0.9.38
[3546:3546:1115/112058:VERBOSE1:extension_service.cc(1524)] AddComponentExtension Chromium PDF Viewer
[3546:3546:1115/112058:VERBOSE1:account_reconcilor.cc(70)] AccountReconcilor::AccountReconcilor
[3546:3546:1115/112058:VERBOSE1:account_reconcilor.cc(81)] AccountReconcilor::Initialize
[3546:3607:1115/112058:VERBOSE1:default_component_installer.cc(198)] StartRegistration for Widevine Content Decryption Module
[3546:3546:1115/112058:VERBOSE1:ev_whitelist_component_installer.cc(141)] Registering EV whitelist component.
[3546:3607:1115/112058:VERBOSE1:default_component_installer.cc(198)] StartRegistration for EV Certs CT whitelist
[3546:3607:1115/112058:VERBOSE1:default_component_installer.cc(198)] StartRegistration for Signed Tree Heads
[3546:3607:1115/112058:VERBOSE1:default_component_installer.cc(198)] StartRegistration for Origin Trials
[3546:3546:1115/112058:VERBOSE1:file_type_policies_component_installer.cc(123)] Registering File Type Policies component.
[3546:3607:1115/112058:VERBOSE1:default_component_installer.cc(198)] StartRegistration for File Type Policies
[3546:3574:1115/112058:VERBOSE1:crl_set_fetcher.cc(105)] Loaded 203150 bytes of CRL set from disk
[3546:3578:1115/112058:VERBOSE1:crl_set_fetcher.cc(127)] Installed CRL set #3374
[3546:3546:1115/112058:VERBOSE1:startup_browser_creator_impl.cc(571)] StartupBrowserCreatorImpl::ProcessStartupURLs
[3546:3546:1115/112058:VERBOSE1:startup_browser_creator_impl.cc(575)] Pref: last
[3546:3546:1115/112058:VERBOSE1:proxy_config_service_linux.cc(1723)] Detected no-op change to proxy settings. Doing nothing.
[3546:3546:1115/112058:VERBOSE1:proxy_config_service_linux.cc(1723)] Detected no-op change to proxy settings. Doing nothing.
[3546:3546:1115/112058:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for Widevine Content Decryption Module
[3546:3546:1115/112058:VERBOSE1:component_updater_service.cc(85)] CrxUpdateService starting up. First update attempt will take place in 360 seconds. Next update attempt will take place in 21600 seconds.
[3546:3546:1115/112058:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for EV Certs CT whitelist
[3546:3546:1115/112058:VERBOSE1:default_component_installer.cc(360)] Component ready, version 7 in /home/odroid/.config/chromium/EVWhitelist/7
[3546:3546:1115/112058:VERBOSE1:ev_whitelist_component_installer.cc(102)] Component ready, version 7 in /home/odroid/.config/chromium/EVWhitelist/7
[3546:3607:1115/112058:VERBOSE1:ev_whitelist_component_installer.cc(41)] Reading EV whitelist from file: /home/odroid/.config/chromium/EVWhitelist/7/_platform_specific/all/ev_hashes_whitelist.bin
[3546:3607:1115/112058:VERBOSE1:packed_ct_ev_whitelist.cc(66)] Uncompressing EV whitelist of size 674082
[3546:3546:1115/112058:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for Signed Tree Heads
[3546:3546:1115/112058:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for Origin Trials
[3546:3546:1115/112058:VERBOSE1:default_component_installer.cc(325)] FinishRegistration for File Type Policies
[3546:3607:1115/112059:VERBOSE1:ev_whitelist_component_installer.cc(57)] EV whitelist: Successfully loaded.
[3546:3578:1115/112059:VERBOSE1:packed_ct_ev_whitelist.cc(26)] Setting new EV Certs whitelist.
[4:4:1115/112059:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[3546:3546:1115/112100:VERBOSE1:cross_device_promo.cc(71)] CrossDevicePromo::CrossDevicePromo.
[3546:3546:1115/112100:VERBOSE1:cross_device_promo.cc(180)] CrossDevicePromo::MaybeBrowsingSessionStarted; Ineligible for promo.
[3546:3546:1115/112100:VERBOSE1:cross_device_promo.cc(169)] CrossDevicePromo::MaybeBrowsingSessionStarted. Same browsing session as the last call.
[3546:3546:1115/112100:VERBOSE1:cross_device_promo.cc(169)] CrossDevicePromo::MaybeBrowsingSessionStarted. Same browsing session as the last call.
[4:4:1115/112100:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[6:6:1115/112101:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[6:6:1115/112101:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[7:7:1115/112101:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[7:7:1115/112101:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[14:14:1115/112101:VERBOSE1:sandbox_linux.cc(70)] Activated seccomp-bpf sandbox for process type: renderer.
[14:14:1115/112101:VERBOSE1:child_thread_impl.cc(355)] Mojo is enabled on child
[4:4:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  0xa97c19c4
  URL:                    
  context_type:           WEB_PAGE
  effective extension id: (none)
  effective context type: WEB_PAGE
[4:4:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                    
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[4:4:1115/112101:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[6:6:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           nkeimhogjdpnpccoofpliimaahmaaome
  frame:                  0x5a5419c4
  URL:                    
  context_type:           BLESSED_EXTENSION
  effective extension id: nkeimhogjdpnpccoofpliimaahmaaome
  effective context type: BLESSED_EXTENSION
[6:6:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                    
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[7:7:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           kmendfapggjehodndflmmgagdbamhnfd
  frame:                  0x2eb619c4
  URL:                    
  context_type:           BLESSED_EXTENSION
  effective extension id: kmendfapggjehodndflmmgagdbamhnfd
  effective context type: BLESSED_EXTENSION
[7:7:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                    
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[14:14:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           nmmhkkegccagdldgiimedpiccmgmieda
  frame:                  0x279619c4
  URL:                    
  context_type:           BLESSED_EXTENSION
  effective extension id: nmmhkkegccagdldgiimedpiccmgmieda
  effective context type: BLESSED_EXTENSION
libGL error: unable to load driver: exynos_dri.so
libGL error: driver pointer missing
libGL error: failed to load driver: exynos
[14:14:1115/112101:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                    
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[6:6:1115/112101:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[7:7:1115/112101:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[14:14:1115/112101:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[3610:3610:1115/112101:ERROR:sandbox_linux.cc(343)] InitializeSandbox() called with multiple threads in process gpu-process.
[3610:3610:1115/112101:VERBOSE1:child_thread_impl.cc(371)] Mojo is disabled on child
[3546:3578:1115/112101:ERROR:browser_gpu_channel_host_factory.cc(131)] Failed to create channel.
getrlimit(RLIMIT_NOFILE) failed
[4:4:1115/112102:VERBOSE1:dispatcher.cc(533)] Num tracked contexts: 0
[4:4:1115/112102:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  0xa97c19c4
  URL:                    
  context_type:           WEB_PAGE
  effective extension id: (none)
  effective context type: WEB_PAGE
[4:4:1115/112102:VERBOSE1:script_context.cc(110)] Created context:
  extension id:           (none)
  frame:                  (nil)
  URL:                    
  context_type:           UNSPECIFIED
  effective extension id: (none)
  effective context type: UNSPECIFIED
[4:4:1115/112102:VERBOSE1:dispatcher.cc(394)] Num tracked contexts: 1
[4:4:1115/112102:VERBOSE1:script_context.cc(119)] Destroyed context for extension
  extension id:
  effective extension id:
[4:4:1115/112102:VERBOSE1:script_context.cc(119)] Destroyed context for extension
  extension id:
  effective extension id:
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_MAIN
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_MAIN
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_CLOUD_PRINT
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_CLOUD_PRINT
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "424119844901-tilod0e1nm0dt85e1evrdfp3cc3ec01d.apps.googleusercontent.com" for API key GOOGLE_CLIENT_ID_REMOTING_HOST
[4:4:1115/112102:VERBOSE1:google_api_keys.cc(259)] Using default value "WCCejhqORuxKG272GAWxsPIU" for API key GOOGLE_CLIENT_SECRET_REMOTING_HOST
[3546:3546:1115/112102:INFO:CONSOLE(6)] "SW registered", source: https://www.google.co.kr/_/chrome/newtab?espv=2&ie=UTF-8&client=ubuntu (6)
세그멘테이션 오류


Posted by 구차니
embeded/odroid2016. 11. 12. 16:58

일단은.. 필요 없을 패키지 삭제하고

$ sudo apt-get remove libreoffice-* pidgin* firefox* thunderbird* hexchat*

$ sudo apt-get autoremove 


의외 로기본(?) 패키지가 없어서 설치

$  sudo apt-get install vim htop rdate mc libnss-winbind



kodi 에서 소리 안나서 개고생

그런데 여전히 오른쪽 소리는 안나고..


한글은

시스템 - 기본 설정 - 개인 - 언어지원

들어가면 언어 패키지 설치하고 한글을 english 위로 끌어 올린다음

ibus에서 한글을 추가하면 된다.


그나저나 ibus에서 한글 이상하게 입력되네..

'embeded > odroid' 카테고리의 다른 글

odroid ubuntu mate 16.04 uname  (0) 2016.11.17
odroid u3 ubuntu MATE 16.04 / chrome hold  (0) 2016.11.14
ubuntu 16.04 for odroid u3  (0) 2016.11.11
뜬금포 odroid u3에 대한 나의 결론  (0) 2016.11.10
odroid vlc / uvc 카메라  (0) 2016.11.05
Posted by 구차니
embeded/odroid2016. 11. 11. 10:39

어라. 버전업 하고 다시 해볼까?


ubuntu mate 기반인가?

[링크 : http://odroid.in/ubuntu_16.04lts/]

    [링크 : http://odroid.com/dokuwiki/doku.php?id=en:u3_ubuntu_release_note_20160921]

    [링크 : http://forum.odroid.com/viewtopic.php?f=77&t=16633]


어라.. 16.04 깔고 나서 평가 반전중

bledner도 되고 좋은데? ㅋㅋ

일단 기존의 odroid_utility.sh는 사라지고

처음 켜면 자동으로 파티션 전체 용량을 쓰도록 수정되었다.


Posted by 구차니
embeded/odroid2016. 11. 10. 10:09

중고로 싸니까 2개 사긴 했는데

(본체 3만원 + eMMC 1만원) * 2대


머랄까.. 하나하나 손 댈때 마다 손 대야만 하는 것이 늘어나는 기분

cpu는 드럽게 빨라서 빌드용으로는 괜찮은데

그 이상 데스크탑 대용이라던가는 hardkernel 사의 지원이 끊어지고 유지되지 않는 이유로 인해

사용불가 판정


GPIO도 무진장 부실하고

램 많고 성능 좋은거 빼면 라즈베리보다 나을게 하나 없는 상황


결론은 더 이상 가지고 노는건 포기하고

NAS로 전용하거나 빌드 머신으로 돌리는것 외에는 그닥....



라즈베리가 램만 2~3기가로 늘어나면 참 좋을텐데...

아니 클럭도? ㅋㅋㅋ



+

마음에 안들거나 문제가 되는 항목

1. blender (망할 openGL ES / exynos_dri.so)

2. 데스크 탑 사용(2D 가속 느리거나 단축키 안되거나 등등)

3. 업데이트 시 커널 바뀌면서 엉김

4. eMMC가 아니면 성능 차이가 크게 하락(SDHC)

5. GPIO가 없다 시피 함

6. 망할 1.8V CMOS 레벨 UART

'embeded > odroid' 카테고리의 다른 글

odroid ubuntu mate 16.04 사용준비  (0) 2016.11.12
ubuntu 16.04 for odroid u3  (0) 2016.11.11
odroid vlc / uvc 카메라  (0) 2016.11.05
라즈베리 파이 / odroid 패키지 업데이트 비교  (0) 2016.11.05
odroid fb Driver  (0) 2016.11.03
Posted by 구차니
embeded/odroid2016. 11. 5. 16:59

vlc로 usb 카메라 연결해서 /dev/video0 열려니 안되고

두개 연결해서 video0 video1 해서 보려니까 video0 이후에 안되고

전원 부족해서 그런가 첫 프레임만 나오고 뻗어버려서 검색을 해보니


전류를 공유해서 쓰니까 문제가 될거 같진 않고

There is a current limiter (load switch) IC on the VBUS.

It is shared by 3 USB host ports.

Total output current is about 1.6A at max.

At the maximum load, the output voltage can be down to 4.6~4.7Volt.


It this worst case, you may need to consider to use 3 Amp power supply because CPU/RAM/GPU can eat about 1 Amp.


Which USB devices are considered ? 

[링크 : http://forum.odroid.com/viewtopic.php?f=83&t=3085]


단지 ARMHF 플랫폼에서 비정상 작동을 한다니 다른걸로 해봐야 겠네..

VLC doesn't run well on the ARMHF platform. As an alternative, use Gxine for a quick-and-easy software decoded video player, or install the optimized hardware-decoded version of XBMC available here: http://oph.mdrjr.net/robroyhall/software/linux/xbmc/. XBMC works best in 720p, and Gxine will drop frames sometimes but still manages to stay smooth and in sync. 

[링크 : http://forum.odroid.com/viewtopic.php?f=82&t=4219]


kernel .config

UVC 자체는 지원하도록 되어 있긴한데.. 흐음...

#

# Webcam devices

#

CONFIG_USB_VIDEO_CLASS=m

CONFIG_USB_VIDEO_CLASS_INPUT_EVDEV=y

CONFIG_USB_GSPCA=m 

[링크 : http://codewalkerster.blogspot.com/2013/06/how-to-use-webcamuvc-for-odroid-xx2.html]

[링크 : http://nlug.ml1.co.uk/2013/02/gentoo-kernel-3-7-9-webcams-v4l-uvc-video-kernel-config/3965]


$ dmesg

[ 2921.542517] usb 1-3.1: new full-speed USB device number 6 using s5p-ehci

[ 2921.649013] usb 1-3.1: New USB device found, idVendor=0ac8, idProduct=301b

[ 2921.649020] usb 1-3.1: New USB device strings: Mfr=1, Product=2, SerialNumber=0

[ 2921.649026] usb 1-3.1: Product: PC Camera

[ 2921.649030] usb 1-3.1: Manufacturer: Vimicro Corp.

[ 2921.669857] gspca_main: v2.14.0 registered

[ 2921.672200] gspca_main: gspca_zc3xx-2.14.0 probing 0ac8:301b

[ 2921.858163] input: gspca_zc3xx as /devices/platform/s5p-ehci/usb1/1-3/1-3.1/input/input4

[ 2921.858912] usbcore: registered new interface driver gspca_zc3xx 


$ ll /dev/video*

crw-rw----+ 1 root video 81, 16 nov  5 19:05 /dev/video0

crw-rw----+ 1 root video 81,  0 nov  5 18:16 /dev/video10

crw-rw----+ 1 root video 81,  1 nov  5 18:16 /dev/video11

crw-rw----+ 1 root video 81,  2 nov  5 18:16 /dev/video12

crw-rw----+ 1 root video 81,  3 nov  5 18:16 /dev/video13

crw-rw----+ 1 root video 81,  4 nov  5 18:16 /dev/video14

crw-rw----+ 1 root video 81,  5 nov  5 18:16 /dev/video15

crw-rw----+ 1 root video 81,  6 nov  5 18:16 /dev/video16

crw-rw----+ 1 root video 81,  7 nov  5 18:16 /dev/video17

crw-rw----+ 1 root video 81, 12 nov  5 18:16 /dev/video20

crw-rw----+ 1 root video 81, 13 nov  5 18:16 /dev/video21

crw-rw----+ 1 root video 81, 14 nov  5 18:16 /dev/video8

crw-rw----+ 1 root video 81, 15 nov  5 18:16 /dev/video9 


[링크 : http://forum.odroid.com/viewtopic.php?f=15&t=1705]

'embeded > odroid' 카테고리의 다른 글

ubuntu 16.04 for odroid u3  (0) 2016.11.11
뜬금포 odroid u3에 대한 나의 결론  (0) 2016.11.10
라즈베리 파이 / odroid 패키지 업데이트 비교  (0) 2016.11.05
odroid fb Driver  (0) 2016.11.03
odroid u3 - mali 400  (0) 2016.11.02
Posted by 구차니