일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- yocto
- l4t
- RDEPENDS
- linux
- nvidia
- orin nx
- lineedit
- vpi
- gstsample
- vpiimage
- 티스토리챌린지
- mkfs.ext4
- boot process
- cpu frequency
- libargus api
- /dev/kmsg
- 오블완
- Jetson
- udpsink
- libargus
- LAYERS
- meta-tegra
- bash
- camera
- gcc7
- server error
- bitbake
- ssd 포맷
- 봉화 숲속캠핑장
- nvarguscamerasrc
- Today
- Total
목록전체 글 (105)
DREAMER
아래 명령어로 Weston을 실행할 수 있다. sudo service gdm stop sudo pkill -9 Xorg unset DISPLAY mkdir /tmp/xdg export XDG_RUNTIME_DIR=/tmp/xdg weston-launch & 동작을 확인 했으면, init.d에 적절한 스크립트 파일을 생성하여 부팅시에 실행되게 한다. 또한, 아래 옵션을 comment 한다. 해당 파일의 맨 마지막줄에 uncomment되어있을 것이다. 아래와 같이 comment로 변경한다. "/etc/modprobe.d/tegra-udrm.conf" options tegra-udrm modeset=1 ------------------------------------------------------------..
다음 게시물을 참고하여 custom layer의 conf/layer.conf를 수정하면 된다. https://yeonsozzz.tistory.com/45
욕토 프로젝트의 릴리즈 프로세스는 일정이 존재하며 major와 minor 릴리즈로 구성되어있다. 이 글에서는 Yocto Project Release의 이름 정보와 life cycle, stability를 설명한다. 1. Major and Minor Release 주기 욕토 프로젝트는 매년 4월/10월 6개월주기로 일년에 2번의 정기적인 major 릴리즈를 제공한다. Minor Release는 다음과 같다. 2.2 (Morty) 2.1 (Krogoth) 3.1 (Dunfell) (Jetson TX2 NX, Nano) 자세한 릴리즈 정보는 아래 링크를 참조. https://wiki.yoctoproject.org/wiki/Releases 이 주기가 완전히 정확하게 지켜지지는 않지만, 6개월이라는 주기는 사용자..
현재 작업중인 Jetson TX2 NX와 Nano는 Dunfell 브랜치의 3.1버전으로 빌드를 한다. Jetson TX2 NX에 systemd로 init을 변경하려 하였더니 kbd 패키지 빌드 시 에러가 발생하였다. | analyze.l:466:19: error: format not a string literal and no format arguments [-Werror=format-security] | ../../../kbd-2.2.0/src/libkeymap/contextP.h:79:55: note: in definition of macro 'lk_log_cond' | 79 | lk_log(ctx, level, __FILE__, __LINE__, __func__, ##arg); \ | | ^~~ |..
1. local.conf를 수정하여 Customizing 2. Custom IMAGE_FEATURES, EXTRA_IMAGE_FEATURES로 Customizing 3. Custom .bb 파일로 Customizing 이미지에 추가할 패키지들을 정의하여 custom 레시피를 생성하는 방식으로도 image customizing 할 수 있습니다. 밑에 예시는 custom 레시피에 필요한 형식입니다. IMAGE_INSTALL = "packagegroup-core-x11-base package1 package2" inherit core-image custom 레시피를 사용하여 소프트웨어를 정의하면 이미지의 모든 contents를 제어할 수 있습니다. 반드시 IMAGE_INSTALL 변수에 올바른 이름을 적어야하..