프로그램 사용/u-boot2016. 11. 8. 15:09

tftpd-hpa를 설치하면 자동으로 tftpd가 삭제된다.

$ sudo apt-cache search tftpd

tftpd-hpa - HPA's tftp server

atftpd - advanced TFTP server

libnet-tftpd-perl - Perl extension for Trivial File Transfer Protocol Server

tftpd - Trivial file transfer protocol server

uec-provisioning-tftpd - the UEC Provisioning TFTP server 


글들을 보다 보니 --create가 TFTP_OPTIONS에 없으면 업로드 불가하다고 한다.

일단 nobody로 권한 통일

tftpd-hpa 설정파일 수정해주고

$ sudo vi /etc/default/tftpd-hpa

# /etc/default/tftpd-hpa


TFTP_USERNAME="nobody"

TFTP_DIRECTORY="/tftpboot"

TFTP_ADDRESS="0.0.0.0:69"

TFTP_OPTIONS="--secure"


xinetd 에서 서버 인자에 -B로 블럭 사이즈 늘려주고

$ sudo vi /etc/xinetd.d/tftp

service tftp

{

   protocol = udp

   socket_type = dgram

   wait = yes

   server = /usr/sbin/in.tftpd

   server_args = -s /tftpboot -B 1468

   disable = no

   user = nobody


그럼 tftpd 쓸때 보다 빠르게 올려진다.

[링크 : http://poohyhoh.blogspot.com/2011/01/1010-tftp.html]

[링크 : http://rookiecj.tistory.com/256]

[링크 : http://bluemir7.tistory.com/106]


2012/04/11 - [Linux/Ubuntu] - ubuntu 11.10 에 tftp 설치하기



+

2016.11.09

-B 512 해도 비슷한 시간으로 받아진다.

'프로그램 사용 > u-boot' 카테고리의 다른 글

uboot nand scrub  (0) 2016.12.14
uboot filesize 환경변수  (0) 2016.11.17
ubuntu 12.04 xinetd/tftpd 느린 이유  (0) 2016.11.08
uboot bootargs 기본값 설정하기  (0) 2015.02.09
uboot 메모리 관련 명령어  (0) 2015.01.08
Posted by 구차니
프로그램 사용/u-boot2016. 11. 8. 10:53

설명 상으로는 server_args에 넣으면 될 거 같은데

--blocksize max-block-size, -B max-block-size

Specifies the maximum permitted block size. The permitted range for this parameter is from 512 to 65464. Some embedded clients request large block sizes and yet do not handle fragmented packets correctly; for these clients, it is recommended to set this value to the smallest MTU on your network minus 32 bytes (20 bytes for IP, 8 for UDP, and 4 for TFTP; less if you use IP options on your network.) For example, on a standard Ethernet (MTU 1500) a value of 1468 is reasonable. 

[링크 : https://linux.die.net/man/8/in.tftpd]


12.04 에서는 blksize 옵션이 지원안하나?

[링크 : http://askubuntu.com/questions/644031/tftpd-hpa-how-can-i-set-blksize-option]


tftpd32 for win으로 받으면 이런 로그가 뜨는데 블럭 사이즈가 1468로 늘어나 있다.

Connection received from 192.168.10.184 on port 1084 [08/11 10:59:16.826]

Read request for file <tt.yaffs2>. Mode octet [08/11 10:59:16.827]

OACK: <timeout=1,tsize=43625472,blksize=1468,> [08/11 10:59:16.827]

Using local port 56906 [08/11 10:59:16.827]

TIMEOUT waiting for Ack block #6872  [08/11 10:59:29.583] 


블럭 사이즈는 512가 기본.. 1468은 1MTU

[링크 : https://blackfin.uclinux.org/doku.php?id=setting_up_a_tftp_server]


12.04에서 man으로 보니 BSD쪽 tftpd라 표준을 따르는 듯?

TFTPD(8)                BSD System Manager's Manual                TFTPD(8)


NAME

     tftpd — DARPA Trivial File Transfer Protocol server


SYNOPSIS

     tftpd [-n] [-s] [directory ...]


DESCRIPTION

     Tftpd is a server which supports the DARPA Trivial File Transfer Pro‐

     tocol.  The TFTP server operates at the port indicated in the ‘tftp’

     service description; see services(5).  The server is normally started

     by inetd(8).


     The use of tftp(1) does not require an account or password on the

     remote system.  Due to the lack of authentication information, tftpd

     will allow only publicly readable files to be accessed.  Files may be

     written only if they already exist and are publicly writable.  Note

     that this extends the concept of “public” to include all users on all

     hosts that can be reached through the network; this may not be appro‐

     priate on all systems, and its implications should be considered

     before enabling tftp service.  The server should have the user ID with

     the lowest possible privilege.


     Access to files may be controlled by invoking tftpd with a list of

     directories by including pathnames as server program arguments in

     /etc/inetd.conf.  In this case access is restricted to files whose

     names are prefixed by the one of the given directories. If no directo‐

     ries are supplied the default is /tftpboot.  To give out access to the

     whole filesystem, should this be desired for some reason, supply / as

     an argument.


     Unfortunately, on multi-homed systems, it is impossible for tftpd to

     determine the address on which a packet was received. As a result,

     tftpd uses two different mechanisms to guess the best source address

     to use for replies. If the socket that inetd(8) passed to tftpd is

     bound to a particular address, tftpd uses that address for replies.

     Otherwise, tftpd uses ``UDP connect'' to let the kernel choose the

     reply address based on the destination of the replies and the routing

     tables. This means that most setups will work transparently, while in

     cases where the reply address must be fixed, the virtual hosting fea‐

     ture of inetd(8) can be used to ensure that replies go out from the

     correct address.  These considerations are important, because most

     tftp clients will reject reply packets that appear to come from an

     unexpected address.


     The options are:


     -n      Suppresses negative acknowledgement of requests for nonexis‐

             tent relative filenames.


     -s      All absolute filenames are treated as if they were preceded by

             the first directory argument, or /tftpboot if there is none.


SEE ALSO

     tftp(1), inetd(8)


HISTORY

     The tftpd command appeared in 4.2BSD.


Linux NetKit (0.17)            July 29, 2000            Linux NetKit (0.17)


tftpd 클라이언트로 받아보니 이렇게 뜬다.

tftp> get tt.yaffs2

getting from localhost:tt.yaffs2 to tt.yaffs2 [netascii]

sent RRQ <file=tt.yaffs2, mode=netascii>

received DATA <block=10926, 512 bytes>

discarded 2 packets

received DATA <block=1, 512 bytes>

sent ACK <block=1> 

RFC에 따라 512 byte가 기본인듯



물론 

ubuntu 12.04 tftp 를 이용해서 tftpd32의 것을 받으니.. 여전히 512로 받는데..

클라이언트와 서버 둘다 표준을 준수하는(?) 착한 녀석들 이라 그런 듯

'프로그램 사용 > u-boot' 카테고리의 다른 글

uboot filesize 환경변수  (0) 2016.11.17
tftpd-hpa  (0) 2016.11.08
uboot bootargs 기본값 설정하기  (0) 2015.02.09
uboot 메모리 관련 명령어  (0) 2015.01.08
u-boot 포팅 가이드  (0) 2013.08.31
Posted by 구차니


헐... 나름 재미 들려서 다시 하고 있던 게임인데

이렇게 종료 하다니 ㄷㄷㄷ


안녕하세요. 포코팡입니다.

 

먼저, 포코팡을 많이 아껴주시고 사랑해주시는 분들께

안타까운 소식을 전해드리게 되어 죄송하다는 말씀을 먼저 드립니다.


<포코팡 for Kakao>가 2016년 12월 15일 서비스가 종료될 예정임을 안내드립니다.


부득이하게 서비스 종료라는 소식을 전해드리게 되어 죄송스럽고 무거운 마음 뿐이며

<포코팡 for Kakao>를 이용하시는 분들께 넓은 마음으로 양해를 부탁드립니다.


서비스 종료와 관련된 세부 내용은 아래 내용을 확인 부탁드리겠습니다.


 

[포코팡 서비스 종료 안내]


1. 서비스 종료 일시

2016년 12월 15일 (목) PM 12:00


2. 참고사항

- 2016년 11월 15일(화) PM12:00부터 <포코팡 for Kakao>를 마켓에서 다운로드하실 수 없습니다.

- 현재 진행 중인 출석이벤트는 11월까지만 진행되며, 12월 부터는 중단됩니다.


[링크 : http://cafe.naver.com/pokopang/91844]

'개소리 왈왈 > 모바일 생활' 카테고리의 다른 글

안드로이드 SSH 클라이언트 - juicessh  (2) 2017.03.07
샤오미 10400mAh 분해  (0) 2017.02.07
ios 10 + ipad mini 2..  (0) 2016.10.24
lg g5 USB HID (조이스틱) 미지원?  (0) 2016.09.19
아이폰 뚫려 두둥?!  (0) 2016.03.29
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 구차니
embeded/odroid2016. 11. 5. 09:06

블렌더 깔려고 참.. 별짓을 다 하는구나 ㅠㅠ


라즈베리 파이

$ sudo apt-get update

받기:1 http://mirrordirector.raspbian.org jessie InRelease [14.9 kB]

받기:2 http://mirrordirector.raspbian.org jessie/main armhf Packages [8,981 kB]

받기:3 http://archive.raspberrypi.org jessie InRelease [13.2 kB]

받기:4 http://archive.raspberrypi.org jessie/main armhf Packages [108 kB]

받기:5 http://archive.raspberrypi.org jessie/ui armhf Packages [53.8 kB]

받기:6 http://mirrordirector.raspbian.org jessie/contrib armhf Packages [37.5 kB]

받기:7 http://mirrordirector.raspbian.org jessie/non-free armhf Packages [70.3 kB]

받기:8 http://mirrordirector.raspbian.org jessie/rpi armhf Packages [1,356 B]

무시http://archive.raspberrypi.org jessie/main Translation-ko_KR

무시http://archive.raspberrypi.org jessie/main Translation-ko

무시http://archive.raspberrypi.org jessie/main Translation-en

무시http://archive.raspberrypi.org jessie/ui Translation-ko_KR

무시http://archive.raspberrypi.org jessie/ui Translation-ko

무시http://archive.raspberrypi.org jessie/ui Translation-en

무시http://mirrordirector.raspbian.org jessie/contrib Translation-ko_KR

무시http://mirrordirector.raspbian.org jessie/contrib Translation-ko

무시http://mirrordirector.raspbian.org jessie/contrib Translation-en

무시http://mirrordirector.raspbian.org jessie/main Translation-ko_KR

무시http://mirrordirector.raspbian.org jessie/main Translation-ko

무시http://mirrordirector.raspbian.org jessie/main Translation-en

무시http://mirrordirector.raspbian.org jessie/non-free Translation-ko_KR

무시http://mirrordirector.raspbian.org jessie/non-free Translation-ko

무시http://mirrordirector.raspbian.org jessie/non-free Translation-en

무시http://mirrordirector.raspbian.org jessie/rpi Translation-ko_KR

무시http://mirrordirector.raspbian.org jessie/rpi Translation-ko

무시http://mirrordirector.raspbian.org jessie/rpi Translation-en

내려받기 9,280 k바이트, 소요시간 31초 (296 k바이트/초)

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


오드로이드

$ sudo apt-get update

Ign http://ports.ubuntu.com trusty InRelease

Hit http://ppa.launchpad.net trusty InRelease

Hit http://ports.ubuntu.com trusty-updates InRelease

Hit http://ppa.launchpad.net trusty InRelease

Hit http://ports.ubuntu.com trusty-backports InRelease

Hit http://ppa.launchpad.net trusty InRelease

Hit http://ports.ubuntu.com trusty-security InRelease

Hit http://ppa.launchpad.net trusty InRelease

Hit http://ports.ubuntu.com trusty Release.gpg

Hit http://ppa.launchpad.net trusty/main Sources

Hit http://ports.ubuntu.com trusty-updates/main Sources

Hit http://ppa.launchpad.net trusty/main armhf Packages

Hit http://ports.ubuntu.com trusty-updates/restricted Sources

Hit http://ppa.launchpad.net trusty/main Translation-en

Hit http://ports.ubuntu.com trusty-updates/universe Sources

Hit http://ppa.launchpad.net trusty/main Sources

Hit http://ports.ubuntu.com trusty-updates/main armhf Packages

Hit http://ppa.launchpad.net trusty/main armhf Packages

Hit http://ports.ubuntu.com trusty-updates/restricted armhf Packages

Hit http://ppa.launchpad.net trusty/main Translation-en

Hit http://ports.ubuntu.com trusty-updates/universe armhf Packages

Hit http://ppa.launchpad.net trusty/main Sources

Hit http://ports.ubuntu.com trusty-updates/main Translation-en

Hit http://ppa.launchpad.net trusty/main armhf Packages

Hit http://ports.ubuntu.com trusty-updates/restricted Translation-en

Hit http://ppa.launchpad.net trusty/main Translation-en

Hit http://ports.ubuntu.com trusty-updates/universe Translation-en

Hit http://ppa.launchpad.net trusty/main armhf Packages

Hit http://ports.ubuntu.com trusty-backports/main Sources

Hit http://ppa.launchpad.net trusty/main Translation-en

Hit http://ports.ubuntu.com trusty-backports/restricted Sources

Hit http://ports.ubuntu.com trusty-backports/main armhf Packages

Hit http://ports.ubuntu.com trusty-backports/restricted armhf Packages

Hit http://ports.ubuntu.com trusty-backports/main Translation-en

Hit http://ports.ubuntu.com trusty-backports/restricted Translation-en

Hit http://ports.ubuntu.com trusty-security/main Sources

Hit http://ports.ubuntu.com trusty-security/restricted Sources

Hit http://ports.ubuntu.com trusty-security/universe Sources

Hit http://ports.ubuntu.com trusty-security/multiverse Sources

Hit http://ports.ubuntu.com trusty-security/main armhf Packages

Hit http://ports.ubuntu.com trusty-security/restricted armhf Packages

Hit http://ports.ubuntu.com trusty-security/universe armhf Packages

Hit http://ports.ubuntu.com trusty-security/multiverse armhf Packages

Hit http://ports.ubuntu.com trusty-security/main Translation-en

Hit http://ports.ubuntu.com trusty-security/multiverse Translation-en

Hit http://ports.ubuntu.com trusty-security/restricted Translation-en

Hit http://ports.ubuntu.com trusty-security/universe Translation-en

Hit http://ports.ubuntu.com trusty Release

Hit http://ports.ubuntu.com trusty/main Sources

Hit http://ports.ubuntu.com trusty/restricted Sources

Hit http://ports.ubuntu.com trusty/universe Sources

Hit http://ports.ubuntu.com trusty/main armhf Packages

Hit http://ports.ubuntu.com trusty/restricted armhf Packages

Hit http://ports.ubuntu.com trusty/universe armhf Packages

Hit http://ports.ubuntu.com trusty/main Translation-en

Hit http://ports.ubuntu.com trusty/main Translation-en_AU

Hit http://ports.ubuntu.com trusty/restricted Translation-en

Hit http://ports.ubuntu.com trusty/restricted Translation-en_AU

Hit http://ports.ubuntu.com trusty/universe Translation-en

Hit http://ports.ubuntu.com trusty/universe Translation-en_AU

Ign http://ports.ubuntu.com trusty/main Translation-en_US

Ign http://ports.ubuntu.com trusty/restricted Translation-en_US

Ign http://ports.ubuntu.com trusty/universe Translation-en_US

Reading package lists... Done


추가해도 gpg키가 달라서 안된다고.. 으엉?

W: GPG error: http://archive.raspberrypi.org jessie InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY 82B129927FA3303E

W: Ignoring Provides line with DepCompareOp for package pypy-cffi

W: Ignoring Provides line with DepCompareOp for package pypy-cffi-backend-api-max

W: Ignoring Provides line with DepCompareOp for package pypy-cffi-backend-api-min 


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

뜬금포 odroid u3에 대한 나의 결론  (0) 2016.11.10
odroid vlc / uvc 카메라  (0) 2016.11.05
odroid fb Driver  (0) 2016.11.03
odroid u3 - mali 400  (0) 2016.11.02
odroid eMMC 8GB 작구나...  (0) 2016.10.29
Posted by 구차니
Linux2016. 11. 4. 17:16

간단하게 정리하면..

eMMC 쓰면 ext4 써도 무난(eMMC에서 셀 관리 하니)

NAND에서는 yaffs가 무난(NAND는 셀 관리 기능이 없으므로)


다만. 안드로이드에서 2.3 버전 이후 바꾼 이유는

성능 저하로 인해(yaffs가 single thread라는데 무슨 의미인지..) 그렇다고


 The problem with YAFFS, T'so explained in his blog entry, is that it is single-threaded and would likely "have been a bottleneck on dual-core systems." Concurrency will be important on next-generation Android devices that use multi-core ARM processors.


[링크 : http://arstechnica.com/.../2010/12/ext4-filesystem-hits-android-no-need-to-fear-data-loss/]

    [링크 : http://stackoverflow.com/questions/23946910/what-file-system-does-android-use]

[링크 : https://kldp.org/node/137454]

'Linux' 카테고리의 다른 글

base64 유틸리티  (0) 2016.12.28
리눅스 런레벨  (0) 2016.12.12
dri drm ddx  (0) 2016.10.23
fdisk 파티션이 2048 부터 시작하는 이유  (0) 2016.10.22
hostname을 이용한 자신의 아이피 받아오기  (0) 2016.10.18
Posted by 구차니
하드웨어/Network 장비2016. 11. 4. 16:53

결론은 5V던 9V던 멀 쓰던 상관없긴한다

용량만 맞추면 인가?


[링크 : http://gigglehd.com/zbxe/13265036]

    [링크 : http://yray.egloos.com/514716]


공식적으로는 9V / 5V 모델 두개로 나누어는 진다.

n704bcm은 9V

n6004m은 5V

100M 모델은 9V 기가비트는 5V 인가?

딱히 그런규칙은 또 아닌거 같고...



[링크 : https://iptime.com/iptime/?page_id=67&uid=17302&mod=document]

'하드웨어 > Network 장비' 카테고리의 다른 글

랜카드 티밍관련 조사...  (0) 2017.11.29
usb otg 그리고 micro USB type B  (1) 2017.04.26
망할 iptime 외부접속 보안 설정  (0) 2016.11.03
z-wave  (0) 2015.09.10
직비(zig-bee) / 블루투스 SPP(Serial Port Profile)  (0) 2015.07.02
Posted by 구차니
프로그램 사용/vi2016. 11. 4. 15:31

12.04 LTS에서 기본으로 vi가 연결되어 있는데

이래서 뜬금없이 X server 연결한다고 경고가 떴구나 싶은데..


$ alias

alias vi='vim -X' 


$ man vim

      -X          Don't connect to the X server.  Shortens startup time in a terminal, but the window title and

                   clipboard will not be used. 


도대체 왜 이걸 기본으로 해둔거지?

[링크 : http://stackoverflow.com/questions/12961680/why-does-vim-connect-to-x-by-default]

'프로그램 사용 > vi' 카테고리의 다른 글

vi ctrl-s / ctrl-q  (0) 2016.11.09
vim 버전별 옵션 차이  (0) 2016.11.08
vi 버전 차이?  (0) 2016.07.09
vi 문자열 치환  (0) 2015.08.04
vi 사각형 선택하기  (0) 2014.09.11
Posted by 구차니

으아 복잡해 -_-!!!

결론 : svn에서 복구 하려면 복사본 만들고 삭제해라!


cp -a ori back 

svn delete –force ori

svn revert ori

cp -a back ori 


[링크 : http://k44.kr/?p=2908]

Posted by 구차니
embeded/odroid2016. 11. 3. 11:34

음.. 기본값이랑 확인을 해봐야 할 듯


        Driver          "armsoc"

        Driver          "fbdev"


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


+

armsoc

$ cat /var/log/Xorg.0.log

[     7.839]

X.Org X Server 1.15.1

Release Date: 2014-04-13

[     7.839] X Protocol Version 11, Revision 0

[     7.839] Build Operating System: Linux 3.8.13.18 armv7l Ubuntu

[     7.839] Current Operating System: Linux odroid_2 3.8.13.30 #1 SMP PREEMPT Fri Feb 20 14:34:08 BRST 2015 armv7l

[     7.839] Kernel command line: console=tty1 console=ttySAC1,115200 mem=2047M console=tty1 console=ttySAC1,115200n8 root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro  mem=2047M

[     7.839] Build Date: 08 May 2014  05:31:05AM

[     7.839] xorg-server 2:1.15.1-0ubuntu2 (For technical support please see http://www.ubuntu.com/support)

[     7.839] Current version of pixman: 0.30.2

[     7.839]    Before reporting problems, check http://wiki.x.org

        to make sure that you have the latest version.

[     7.839] Markers: (--) probed, (**) from config file, (==) default setting,

        (++) from command line, (!!) notice, (II) informational,

        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.

[     7.840] (==) Log file: "/var/log/Xorg.0.log", Time: Sat Jan  1 11:30:11 2000

[     7.848] (==) Using config file: "/etc/X11/xorg.conf"

[     7.848] (==) Using system config directory "/usr/share/X11/xorg.conf.d"

[     7.857] (==) ServerLayout "Default Layout"

[     7.857] (**) |-->Screen "Default Screen" (0)

[     7.857] (**) |   |-->Monitor "<default monitor>"

[     7.858] (**) |   |-->Device "Mali-Fbdev"

[     7.858] (==) No monitor specified for screen "Default Screen".

        Using a default monitor configuration.

[     7.858] (**) Option "BlankTime" "0"

[     7.858] (**) Option "StandbyTime" "0"

[     7.858] (**) Option "SuspendTime" "0"

[     7.858] (**) Option "OffTime" "0"

[     7.858] (==) Automatically adding devices

[     7.858] (==) Automatically enabling devices

[     7.858] (==) Automatically adding GPU devices

[     7.865] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.

[     7.865]    Entry deleted from font path.

[     7.870] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.

[     7.870]    Entry deleted from font path.

[     7.874] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.

[     7.874]    Entry deleted from font path.

[     7.874] (==) FontPath set to:

        /usr/share/fonts/X11/misc,

        /usr/share/fonts/X11/100dpi/:unscaled,

        /usr/share/fonts/X11/Type1,

        /usr/share/fonts/X11/100dpi,

        built-ins

[     7.874] (==) ModulePath set to "/usr/lib/arm-linux-gnueabihf/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"

[     7.874] (II) The server relies on udev to provide the list of input devices.

        If no devices become available, reconfigure udev or disable AutoAddDevices.

[     7.874] (II) Loader magic: 0xb7008f18

[     7.874] (II) Module ABI versions:

[     7.874]    X.Org ANSI C Emulation: 0.4

[     7.874]    X.Org Video Driver: 15.0

[     7.874]    X.Org XInput driver : 20.0

[     7.874]    X.Org Server Extension : 8.0

[     7.875] (II) xfree86: Adding drm device (/dev/dri/card0)

[     7.875] Initializing built-in extension Generic Event Extension

[     7.875] Initializing built-in extension SHAPE

[     7.875] Initializing built-in extension MIT-SHM

[     7.875] Initializing built-in extension XInputExtension

[     7.875] Initializing built-in extension XTEST

[     7.875] Initializing built-in extension BIG-REQUESTS

[     7.875] Initializing built-in extension SYNC

[     7.875] Initializing built-in extension XKEYBOARD

[     7.876] Initializing built-in extension XC-MISC

[     7.876] Initializing built-in extension SECURITY

[     7.876] Initializing built-in extension XINERAMA

[     7.876] Initializing built-in extension XFIXES

[     7.876] Initializing built-in extension RENDER

[     7.876] Initializing built-in extension RANDR

[     7.876] Initializing built-in extension COMPOSITE

[     7.876] Initializing built-in extension DAMAGE

[     7.876] Initializing built-in extension MIT-SCREEN-SAVER

[     7.876] Initializing built-in extension DOUBLE-BUFFER

[     7.876] Initializing built-in extension RECORD

[     7.876] Initializing built-in extension DPMS

[     7.876] Initializing built-in extension Present

[     7.876] Initializing built-in extension DRI3

[     7.876] Initializing built-in extension X-Resource

[     7.876] Initializing built-in extension XVideo

[     7.876] Initializing built-in extension XVideo-MotionCompensation

[     7.876] Initializing built-in extension SELinux

[     7.876] Initializing built-in extension XFree86-VidModeExtension

[     7.876] Initializing built-in extension XFree86-DGA

[     7.876] Initializing built-in extension XFree86-DRI

[     7.876] Initializing built-in extension DRI2

[     7.876] (II) LoadModule: "glx"

[     7.879] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so

[     7.922] (II) Module glx: vendor="X.Org Foundation"

[     7.922]    compiled for 1.15.1, module version = 1.0.0

[     7.922]    ABI class: X.Org Server Extension, version 8.0

[     7.922] (==) AIGLX enabled

[     7.922] Loading extension GLX

[     7.922] (II) LoadModule: "armsoc"

[     7.924] (II) Loading /usr/lib/xorg/modules/drivers/armsoc_drv.so

[     7.930] (II) Module armsoc: vendor="X.Org Foundation"

[     7.930]    compiled for 1.15.1, module version = 1.0.0

[     7.930]    Module class: X.Org Video Driver

[     7.930]    ABI class: X.Org Video Driver, version 15.0

[     7.930] (II) ARMSOC: Driver for ARM Mali compatible chipsets

[     7.930] (++) using VT number 7


[     7.935] (WW) Falling back to old probe method for armsoc

[     7.936] (II) No BusID or DriverName specified - opening /dev/dri/card0

[     7.936] (II) Got BusID platform:exynos-drm:00

[     7.936] (II) Opened DRM

[     7.936] (II)    DeviceName is [/dev/dri/card0]

[     7.936] (II)    bus_id is [platform:exynos-drm:00]

[     7.936] (II)    DriverName is [exynos]

[     7.936] (II)    version is [1.0.0]

[     7.936] (II) Screen:0,  CRTC:-1

[     7.936] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support

[     7.936] (II) ARMSOC(0): Creating default Display subsection in Screen section

        "Default Screen" for depth/fbbpp 24/32

[     7.936] (**) ARMSOC(0): Depth 24, (--) framebuffer bpp 32

[     7.937] (==) ARMSOC(0): RGB weight 888

[     7.937] (==) ARMSOC(0): Using gamma correction (1.0, 1.0, 1.0)

[     7.937] (==) ARMSOC(0): Default visual is TrueColor

[     7.937] (II) No BusID or DriverName specified - opening /dev/dri/card0

[     7.937] (II) Got BusID platform:exynos-drm:00

[     7.937] (II) Opened DRM

[     7.937] (II)    DeviceName is [/dev/dri/card0]

[     7.937] (II)    bus_id is [platform:exynos-drm:00]

[     7.937] (II)    DriverName is [exynos]

[     7.937] (II)    version is [1.0.0]

[     7.937] (II) ARMSOC(0): Chipset: Mali

[     7.937] (**) ARMSOC(0): Option "Debug" "false"

[     7.937] (II) ARMSOC(0): Buffer Flipping is Enabled

[     7.937] (II) ARMSOC(0): Setting the video modes ...

[     7.937] (II) ARMSOC(0): Adding all CRTCs

[     7.937] (II) ARMSOC(0): Got CRTC: 0 (id: 4)

[     7.937] (II) ARMSOC(0): Got CRTC: 1 (id: 10)

[     7.937] (II) ARMSOC(0): Got CRTC: 2 (id: 12)

[     7.938] (II) ARMSOC(0): Output HDMI-1 has no monitor section

[     7.938] (II) ARMSOC(0): EDID for output HDMI-1

[     7.938] (II) ARMSOC(0): Output HDMI-1 disconnected

[     7.938] (WW) ARMSOC(0): No outputs definitely connected, trying again...

[     7.938] (II) ARMSOC(0): Output HDMI-1 disconnected

[     7.938] (WW) ARMSOC(0): Unable to find connected outputs - setting 1024x768 initial framebuffer

[     7.938] (II) ARMSOC(0): Got KMS resources

[     7.938] (==) ARMSOC(0): DPI set to (96, 96)

[     7.938] (II) Loading sub module "dri2"

[     7.938] (II) LoadModule: "dri2"

[     7.938] (II) Module "dri2" already built-in

[     7.938] (II) Loading sub module "exa"

[     7.938] (II) LoadModule: "exa"

[     7.939] (II) Loading /usr/lib/xorg/modules/libexa.so

[     7.942] (II) Module exa: vendor="X.Org Foundation"

[     7.942]    compiled for 1.15.1, module version = 2.6.0

[     7.942]    ABI class: X.Org Video Driver, version 15.0

[     7.942] (II) Loading sub module "fb"

[     7.942] (II) LoadModule: "fb"

[     7.943] (II) Loading /usr/lib/xorg/modules/libfb.so

[     7.946] (II) Module fb: vendor="X.Org Foundation"

[     7.946]    compiled for 1.15.1, module version = 1.0.0

[     7.946]    ABI class: X.Org ANSI C Emulation, version 0.4

[     7.946] (--) Depth 24 pixmap format is 32 bpp

[     7.962] (II) ARMSOC(0): Initialized a 24 depth visual for 32bpp

[     7.963] (II) ARMSOC(0): Soft EXA mode

[     7.963] (II) EXA(0): Driver allocated offscreen pixmaps

[     7.963] (II) EXA(0): Driver registered support for the following operations:

[     7.963] (II)         Solid

[     7.963] (II)         Copy

[     7.963] (II)         Composite (RENDER acceleration)

[     7.963] (II) ARMSOC(0): Setting swap chain size: 2

[     7.963] (II) ARMSOC(0): [DRI2] Setup complete

[     7.963] (II) ARMSOC(0): [DRI2]   DRI driver: armsoc

[     7.963] (==) ARMSOC(0): Backing store enabled

[     7.963] (==) ARMSOC(0): Silken mouse enabled

[     7.965] (II) ARMSOC(0): HW cursor init()

[     7.966] (II) ARMSOC(0): HW cursor initialized

[     7.966] (II) ARMSOC(0): RandR 1.2 enabled, ignore the following RandR disabled message.

[     7.967] (--) RandR disabled

[     7.984] (II) SELinux: Disabled on system

[     7.988] (EE) AIGLX error: dlopen of /usr/lib/arm-linux-gnueabihf/dri/armsoc_dri.so failed (/usr/lib/arm-linux-gnueabihf/dri/armsoc_dri.so: cannot open shared object file: No such file or directory)

[     7.988] (EE) AIGLX: reverting to software rendering

[     8.039] (II) AIGLX: Loaded and initialized swrast

[     8.039] (II) GLX: Initialized DRISWRAST GL provider for screen 0

[     8.120] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm

[     8.146] (II) config/udev: Adding drm device (/dev/dri/card0)

[     8.146] (II) config/udev: Ignoring already known drm device (/dev/dri/card0)

[     8.148] (II) config/udev: Adding input device gpio-keys (/dev/input/event3)

[     8.148] (**) gpio-keys: Applying InputClass "evdev keyboard catchall"

[     8.148] (II) LoadModule: "evdev"

[     8.148] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so

[     8.153] (II) Module evdev: vendor="X.Org Foundation"

[     8.153]    compiled for 1.15.0, module version = 2.8.2

[     8.153]    Module class: X.Org XInput Driver

[     8.153]    ABI class: X.Org XInput driver, version 20.0

[     8.153] (II) Using input driver 'evdev' for 'gpio-keys'

[     8.153] (**) gpio-keys: always reports core events

[     8.154] (**) evdev: gpio-keys: Device: "/dev/input/event3"

[     8.154] (--) evdev: gpio-keys: Vendor 0x1 Product 0x1

[     8.154] (--) evdev: gpio-keys: Found keys

[     8.154] (II) evdev: gpio-keys: Configuring as keyboard

[     8.154] (**) Option "config_info" "udev:/sys/devices/platform/gpio-keys.0/input/input3/event3"

[     8.154] (II) XINPUT: Adding extended input device "gpio-keys" (type: KEYBOARD, id 6)

[     8.154] (**) Option "xkb_rules" "evdev"

[     8.154] (**) Option "xkb_model" "pc105"

[     8.154] (**) Option "xkb_layout" "us"

[     8.156] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event0)

[     8.157] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"

[     8.157] (II) Using input driver 'evdev' for 'USB Optical Mouse'

[     8.157] (**) USB Optical Mouse: always reports core events

[     8.157] (**) evdev: USB Optical Mouse: Device: "/dev/input/event0"

[     8.157] (--) evdev: USB Optical Mouse: Vendor 0x1bcf Product 0x5

[     8.157] (--) evdev: USB Optical Mouse: Found 9 mouse buttons

[     8.157] (--) evdev: USB Optical Mouse: Found scroll wheel(s)

[     8.157] (--) evdev: USB Optical Mouse: Found relative axes

[     8.157] (--) evdev: USB Optical Mouse: Found x and y relative axes

[     8.157] (II) evdev: USB Optical Mouse: Configuring as mouse

[     8.157] (II) evdev: USB Optical Mouse: Adding scrollwheel support

[     8.157] (**) evdev: USB Optical Mouse: YAxisMapping: buttons 4 and 5

[     8.157] (**) evdev: USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200

[     8.157] (**) Option "config_info" "udev:/sys/devices/platform/s5p-ehci/usb1/1-3/1-3.2/1-3.2:1.0/input/input0/event0"

[     8.157] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE, id 7)

[     8.160] (II) evdev: USB Optical Mouse: initialized for relative axes.

[     8.160] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1

[     8.162] (**) USB Optical Mouse: (accel) acceleration profile 0

[     8.162] (**) USB Optical Mouse: (accel) acceleration factor: 2.000

[     8.162] (**) USB Optical Mouse: (accel) acceleration threshold: 4

[     8.167] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse0)

[     8.167] (II) No input driver specified, ignoring this device.

[     8.168] (II) This device may have been added with another device file.

[     8.169] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event1)

[     8.169] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"

[     8.169] (II) Using input driver 'evdev' for '  USB Keyboard'

[     8.169] (**)   USB Keyboard: always reports core events

[     8.169] (**) evdev:   USB Keyboard: Device: "/dev/input/event1"

[     8.169] (--) evdev:   USB Keyboard: Vendor 0x5af Product 0x802

[     8.169] (--) evdev:   USB Keyboard: Found keys

[     8.169] (II) evdev:   USB Keyboard: Configuring as keyboard

[     8.169] (**) Option "config_info" "udev:/sys/devices/platform/s5p-ehci/usb1/1-3/1-3.3/1-3.3:1.0/input/input1/event1"

[     8.169] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD, id 8)

[     8.169] (**) Option "xkb_rules" "evdev"

[     8.169] (**) Option "xkb_model" "pc105"

[     8.169] (**) Option "xkb_layout" "us"

[     8.172] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event2)

[     8.172] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"

[     8.172] (II) Using input driver 'evdev' for '  USB Keyboard'

[     8.172] (**)   USB Keyboard: always reports core events

[     8.172] (**) evdev:   USB Keyboard: Device: "/dev/input/event2"

[     8.172] (--) evdev:   USB Keyboard: Vendor 0x5af Product 0x802

[     8.172] (--) evdev:   USB Keyboard: Found keys

[     8.172] (II) evdev:   USB Keyboard: Configuring as keyboard

[     8.172] (**) Option "config_info" "udev:/sys/devices/platform/s5p-ehci/usb1/1-3/1-3.3/1-3.3:1.1/input/input2/event2"

[     8.172] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD, id 9)

[     8.172] (**) Option "xkb_rules" "evdev"

[     8.172] (**) Option "xkb_model" "pc105"

[     8.172] (**) Option "xkb_layout" "us" 


fbdev

$ cat /var/log/Xorg.0.log

[     6.957]

X.Org X Server 1.15.1

Release Date: 2014-04-13

[     6.957] X Protocol Version 11, Revision 0

[     6.957] Build Operating System: Linux 3.8.13.18 armv7l Ubuntu

[     6.957] Current Operating System: Linux odroid_2 3.8.13.30 #1 SMP PREEMPT Fri Feb 20 14:34:08 BRST 2015 armv7l

[     6.957] Kernel command line: console=tty1 console=ttySAC1,115200 mem=2047M console=tty1 console=ttySAC1,115200n8 root=UUID=e139ce78-9841-40fe-8823-96a304a09859 rootwait ro  mem=2047M

[     6.957] Build Date: 08 May 2014  05:31:05AM

[     6.958] xorg-server 2:1.15.1-0ubuntu2 (For technical support please see http://www.ubuntu.com/support)

[     6.958] Current version of pixman: 0.30.2

[     6.958]    Before reporting problems, check http://wiki.x.org

        to make sure that you have the latest version.

[     6.958] Markers: (--) probed, (**) from config file, (==) default setting,

        (++) from command line, (!!) notice, (II) informational,

        (WW) warning, (EE) error, (NI) not implemented, (??) unknown.

[     6.958] (==) Log file: "/var/log/Xorg.0.log", Time: Fri Nov  4 00:31:29 2016

[     6.966] (==) Using config file: "/etc/X11/xorg.conf"

[     6.966] (==) Using system config directory "/usr/share/X11/xorg.conf.d"

[     6.973] (==) ServerLayout "Default Layout"

[     6.973] (**) |-->Screen "Default Screen" (0)

[     6.973] (**) |   |-->Monitor "<default monitor>"

[     6.973] (**) |   |-->Device "Mali-Fbdev"

[     6.973] (==) No monitor specified for screen "Default Screen".

        Using a default monitor configuration.

[     6.974] (**) Option "BlankTime" "0"

[     6.974] (**) Option "StandbyTime" "0"

[     6.974] (**) Option "SuspendTime" "0"

[     6.974] (**) Option "OffTime" "0"

[     6.974] (==) Automatically adding devices

[     6.974] (==) Automatically enabling devices

[     6.974] (==) Automatically adding GPU devices

[     6.980] (WW) The directory "/usr/share/fonts/X11/cyrillic" does not exist.

[     6.981]    Entry deleted from font path.

[     6.984] (WW) The directory "/usr/share/fonts/X11/75dpi/" does not exist.

[     6.985]    Entry deleted from font path.

[     6.989] (WW) The directory "/usr/share/fonts/X11/75dpi" does not exist.

[     6.989]    Entry deleted from font path.

[     6.989] (==) FontPath set to:

        /usr/share/fonts/X11/misc,

        /usr/share/fonts/X11/100dpi/:unscaled,

        /usr/share/fonts/X11/Type1,

        /usr/share/fonts/X11/100dpi,

        built-ins

[     6.989] (==) ModulePath set to "/usr/lib/arm-linux-gnueabihf/xorg/extra-modules,/usr/lib/xorg/extra-modules,/usr/lib/xorg/modules"

[     6.989] (II) The server relies on udev to provide the list of input devices.

        If no devices become available, reconfigure udev or disable AutoAddDevices.

[     6.989] (II) Loader magic: 0xb6fbef18

[     6.989] (II) Module ABI versions:

[     6.989]    X.Org ANSI C Emulation: 0.4

[     6.989]    X.Org Video Driver: 15.0

[     6.989]    X.Org XInput driver : 20.0

[     6.989]    X.Org Server Extension : 8.0

[     6.989] (II) xfree86: Adding drm device (/dev/dri/card0)

[     6.990] Initializing built-in extension Generic Event Extension

[     6.990] Initializing built-in extension SHAPE

[     6.990] Initializing built-in extension MIT-SHM

[     6.990] Initializing built-in extension XInputExtension

[     6.990] Initializing built-in extension XTEST

[     6.990] Initializing built-in extension BIG-REQUESTS

[     6.990] Initializing built-in extension SYNC

[     6.990] Initializing built-in extension XKEYBOARD

[     6.990] Initializing built-in extension XC-MISC

[     6.990] Initializing built-in extension SECURITY

[     6.990] Initializing built-in extension XINERAMA

[     6.990] Initializing built-in extension XFIXES

[     6.990] Initializing built-in extension RENDER

[     6.990] Initializing built-in extension RANDR

[     6.990] Initializing built-in extension COMPOSITE

[     6.990] Initializing built-in extension DAMAGE

[     6.990] Initializing built-in extension MIT-SCREEN-SAVER

[     6.990] Initializing built-in extension DOUBLE-BUFFER

[     6.990] Initializing built-in extension RECORD

[     6.990] Initializing built-in extension DPMS

[     6.990] Initializing built-in extension Present

[     6.990] Initializing built-in extension DRI3

[     6.990] Initializing built-in extension X-Resource

[     6.990] Initializing built-in extension XVideo

[     6.991] Initializing built-in extension XVideo-MotionCompensation

[     6.991] Initializing built-in extension SELinux

[     6.991] Initializing built-in extension XFree86-VidModeExtension

[     6.991] Initializing built-in extension XFree86-DGA

[     6.991] Initializing built-in extension XFree86-DRI

[     6.991] Initializing built-in extension DRI2

[     6.991] (II) LoadModule: "glx"

[     6.995] (II) Loading /usr/lib/xorg/modules/extensions/libglx.so

[     7.081] (II) Module glx: vendor="X.Org Foundation"

[     7.081]    compiled for 1.15.1, module version = 1.0.0

[     7.081]    ABI class: X.Org Server Extension, version 8.0

[     7.081] (==) AIGLX enabled

[     7.081] Loading extension GLX

[     7.081] (II) LoadModule: "fbdev"

[     7.084] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so

[     7.087] (II) Module fbdev: vendor="X.Org Foundation"

[     7.088]    compiled for 1.15.0, module version = 0.4.4

[     7.088]    Module class: X.Org Video Driver

[     7.088]    ABI class: X.Org Video Driver, version 15.0

[     7.088] (II) FBDEV: driver for framebuffer: fbdev

[     7.089] (++) using VT number 7


[     7.095] (WW) Falling back to old probe method for fbdev

[     7.095] (II) Loading sub module "fbdevhw"

[     7.095] (II) LoadModule: "fbdevhw"

[     7.097] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so

[     7.100] (II) Module fbdevhw: vendor="X.Org Foundation"

[     7.101]    compiled for 1.15.1, module version = 0.0.2

[     7.101]    ABI class: X.Org Video Driver, version 15.0

[     7.101] (EE) open /dev/fb1: No such file or directory

[     7.101] (EE) No devices detected.

[     7.102] (==) Matched modesetting as autoconfigured driver 0

[     7.102] (==) Matched fbdev as autoconfigured driver 1

[     7.102] (==) Assigned the driver to the xf86ConfigLayout

[     7.102] (II) LoadModule: "modesetting"

[     7.102] (II) Loading /usr/lib/xorg/modules/drivers/modesetting_drv.so

[     7.108] (II) Module modesetting: vendor="X.Org Foundation"

[     7.108]    compiled for 1.15.0, module version = 0.8.1

[     7.108]    Module class: X.Org Video Driver

[     7.108]    ABI class: X.Org Video Driver, version 15.0

[     7.108] (II) LoadModule: "fbdev"

[     7.109] (II) Loading /usr/lib/xorg/modules/drivers/fbdev_drv.so

[     7.109] (II) Module fbdev: vendor="X.Org Foundation"

[     7.109]    compiled for 1.15.0, module version = 0.4.4

[     7.109]    Module class: X.Org Video Driver

[     7.109]    ABI class: X.Org Video Driver, version 15.0

[     7.109] (II) UnloadModule: "fbdev"

[     7.109] (II) Unloading fbdev

[     7.109] (II) Failed to load module "fbdev" (already loaded, -1224869584)

[     7.109] (II) FBDEV: driver for framebuffer: fbdev

[     7.110] (II) modesetting: Driver for Modesetting Kernel Drivers: kms

[     7.110] (++) using VT number 7


[     7.110] (WW) xf86OpenConsole: setpgid failed: Operation not permitted

[     7.110] (WW) xf86OpenConsole: setsid failed: Operation not permitted

[     7.110] (WW) Falling back to old probe method for fbdev

[     7.110] (II) Loading sub module "fbdevhw"

[     7.110] (II) LoadModule: "fbdevhw"

[     7.111] (II) Loading /usr/lib/xorg/modules/libfbdevhw.so

[     7.111] (II) Module fbdevhw: vendor="X.Org Foundation"

[     7.111]    compiled for 1.15.1, module version = 0.0.2

[     7.111]    ABI class: X.Org Video Driver, version 15.0

[     7.111] (EE) open /dev/fb1: No such file or directory

[     7.111] (II) modesetting(0): using drv /dev/dri/card0

[     7.111] (WW) VGA arbiter: cannot open kernel arbiter, no multi-card support

[     7.113] (II) modesetting(0): Creating default Display subsection in Screen section

        "Default Screen" for depth/fbbpp 24/32

[     7.113] (**) modesetting(0): Depth 24, (--) framebuffer bpp 32

[     7.114] (==) modesetting(0): RGB weight 888

[     7.114] (==) modesetting(0): Default visual is TrueColor

[     7.114] (II) modesetting(0): ShadowFB: preferred NO, enabled NO

[     7.114] (II) modesetting(0): Output HDMI-0 has no monitor section

[     7.114] (II) modesetting(0): EDID for output HDMI-0

[     7.114] (II) modesetting(0): Output HDMI-0 disconnected

[     7.114] (WW) modesetting(0): No outputs definitely connected, trying again...

[     7.114] (II) modesetting(0): Output HDMI-0 disconnected

[     7.114] (WW) modesetting(0): Unable to find connected outputs - setting 1024x768 initial framebuffer

[     7.115] (II) modesetting(0): Using default gamma of (1.0, 1.0, 1.0) unless otherwise stated.

[     7.115] (==) modesetting(0): DPI set to (96, 96)

[     7.115] (II) Loading sub module "fb"

[     7.115] (II) LoadModule: "fb"

[     7.115] (II) Loading /usr/lib/xorg/modules/libfb.so

[     7.123] (II) Module fb: vendor="X.Org Foundation"

[     7.123]    compiled for 1.15.1, module version = 1.0.0

[     7.123]    ABI class: X.Org ANSI C Emulation, version 0.4

[     7.123] (II) UnloadModule: "fbdev"

[     7.123] (II) Unloading fbdev

[     7.123] (II) UnloadSubModule: "fbdevhw"

[     7.123] (II) Unloading fbdevhw

[     7.123] (II) UnloadSubModule: "fbdevhw"

[     7.123] (II) Unloading fbdevhw

[     7.124] (==) Depth 24 pixmap format is 32 bpp

[     7.143] (==) modesetting(0): Backing store enabled

[     7.143] (==) modesetting(0): Silken mouse enabled

[     7.146] (II) modesetting(0): RandR 1.2 enabled, ignore the following RandR disabled message.

[     7.147] (WW) modesetting(0): Option "fbdev" is not used

[     7.147] (WW) modesetting(0): Option "Debug" is not used

[     7.147] (--) RandR disabled

[     7.165] (II) SELinux: Disabled on system

[     7.168] (II) AIGLX: Screen 0 is not DRI2 capable

[     7.168] (EE) AIGLX: reverting to software rendering

[     7.235] (II) AIGLX: Loaded and initialized swrast

[     7.235] (II) GLX: Initialized DRISWRAST GL provider for screen 0

[     7.236] (II) modesetting(0): Damage tracking initialized

[     7.340] (II) XKB: reuse xkmfile /var/lib/xkb/server-B20D7FC79C7F597315E3E501AEF10E0D866E8E92.xkm

[     7.372] (II) config/udev: Adding drm device (/dev/dri/card0)

[     7.372] (II) config/udev: Ignoring already known drm device (/dev/dri/card0)

[     7.374] (II) config/udev: Adding input device gpio-keys (/dev/input/event3)

[     7.374] (**) gpio-keys: Applying InputClass "evdev keyboard catchall"

[     7.374] (II) LoadModule: "evdev"

[     7.375] (II) Loading /usr/lib/xorg/modules/input/evdev_drv.so

[     7.386] (II) Module evdev: vendor="X.Org Foundation"

[     7.387]    compiled for 1.15.0, module version = 2.8.2

[     7.387]    Module class: X.Org XInput Driver

[     7.387]    ABI class: X.Org XInput driver, version 20.0

[     7.387] (II) Using input driver 'evdev' for 'gpio-keys'

[     7.387] (**) gpio-keys: always reports core events

[     7.387] (**) evdev: gpio-keys: Device: "/dev/input/event3"

[     7.387] (--) evdev: gpio-keys: Vendor 0x1 Product 0x1

[     7.387] (--) evdev: gpio-keys: Found keys

[     7.387] (II) evdev: gpio-keys: Configuring as keyboard

[     7.387] (**) Option "config_info" "udev:/sys/devices/platform/gpio-keys.0/input/input3/event3"

[     7.387] (II) XINPUT: Adding extended input device "gpio-keys" (type: KEYBOARD, id 6)

[     7.387] (**) Option "xkb_rules" "evdev"

[     7.387] (**) Option "xkb_model" "pc105"

[     7.387] (**) Option "xkb_layout" "us"

[     7.390] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/event0)

[     7.390] (**) USB Optical Mouse: Applying InputClass "evdev pointer catchall"

[     7.390] (II) Using input driver 'evdev' for 'USB Optical Mouse'

[     7.390] (**) USB Optical Mouse: always reports core events

[     7.390] (**) evdev: USB Optical Mouse: Device: "/dev/input/event0"

[     7.390] (--) evdev: USB Optical Mouse: Vendor 0x1bcf Product 0x5

[     7.390] (--) evdev: USB Optical Mouse: Found 9 mouse buttons

[     7.391] (--) evdev: USB Optical Mouse: Found scroll wheel(s)

[     7.391] (--) evdev: USB Optical Mouse: Found relative axes

[     7.391] (--) evdev: USB Optical Mouse: Found x and y relative axes

[     7.391] (II) evdev: USB Optical Mouse: Configuring as mouse

[     7.391] (II) evdev: USB Optical Mouse: Adding scrollwheel support

[     7.391] (**) evdev: USB Optical Mouse: YAxisMapping: buttons 4 and 5

[     7.391] (**) evdev: USB Optical Mouse: EmulateWheelButton: 4, EmulateWheelInertia: 10, EmulateWheelTimeout: 200

[     7.391] (**) Option "config_info" "udev:/sys/devices/platform/s5p-ehci/usb1/1-3/1-3.2/1-3.2:1.0/input/input0/event0"

[     7.391] (II) XINPUT: Adding extended input device "USB Optical Mouse" (type: MOUSE, id 7)

[     7.391] (II) evdev: USB Optical Mouse: initialized for relative axes.

[     7.392] (**) USB Optical Mouse: (accel) keeping acceleration scheme 1

[     7.392] (**) USB Optical Mouse: (accel) acceleration profile 0

[     7.392] (**) USB Optical Mouse: (accel) acceleration factor: 2.000

[     7.392] (**) USB Optical Mouse: (accel) acceleration threshold: 4

[     7.393] (II) config/udev: Adding input device USB Optical Mouse (/dev/input/mouse0)

[     7.394] (II) No input driver specified, ignoring this device.

[     7.394] (II) This device may have been added with another device file.

[     7.398] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event1)

[     7.398] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"

[     7.398] (II) Using input driver 'evdev' for '  USB Keyboard'

[     7.398] (**)   USB Keyboard: always reports core events

[     7.398] (**) evdev:   USB Keyboard: Device: "/dev/input/event1"

[     7.398] (--) evdev:   USB Keyboard: Vendor 0x5af Product 0x802

[     7.398] (--) evdev:   USB Keyboard: Found keys

[     7.398] (II) evdev:   USB Keyboard: Configuring as keyboard

[     7.398] (**) Option "config_info" "udev:/sys/devices/platform/s5p-ehci/usb1/1-3/1-3.3/1-3.3:1.0/input/input1/event1"

[     7.398] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD, id 8)

[     7.398] (**) Option "xkb_rules" "evdev"

[     7.398] (**) Option "xkb_model" "pc105"

[     7.398] (**) Option "xkb_layout" "us"

[     7.401] (II) config/udev: Adding input device   USB Keyboard (/dev/input/event2)

[     7.401] (**)   USB Keyboard: Applying InputClass "evdev keyboard catchall"

[     7.401] (II) Using input driver 'evdev' for '  USB Keyboard'

[     7.401] (**)   USB Keyboard: always reports core events

[     7.401] (**) evdev:   USB Keyboard: Device: "/dev/input/event2"

[     7.401] (--) evdev:   USB Keyboard: Vendor 0x5af Product 0x802

[     7.401] (--) evdev:   USB Keyboard: Found keys

[     7.401] (II) evdev:   USB Keyboard: Configuring as keyboard

[     7.401] (**) Option "config_info" "udev:/sys/devices/platform/s5p-ehci/usb1/1-3/1-3.3/1-3.3:1.1/input/input2/event2"

[     7.401] (II) XINPUT: Adding extended input device "  USB Keyboard" (type: KEYBOARD, id 9)

[     7.401] (**) Option "xkb_rules" "evdev"

[     7.402] (**) Option "xkb_model" "pc105"

[     7.402] (**) Option "xkb_layout" "us"

[     7.513] (II) modesetting(0): Disabling kernel dirty updates, not required. 



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

odroid vlc / uvc 카메라  (0) 2016.11.05
라즈베리 파이 / odroid 패키지 업데이트 비교  (0) 2016.11.05
odroid u3 - mali 400  (0) 2016.11.02
odroid eMMC 8GB 작구나...  (0) 2016.10.29
X 시작을 못하는 이유..2  (0) 2016.10.25
Posted by 구차니