반응형
Notice
Recent Posts
Recent Comments
Link
250x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 티스토리챌린지
- bitbake
- ssd 포맷
- server error
- RDEPENDS
- cpu frequency
- /dev/kmsg
- orin nx
- libargus
- meta-tegra
- boot process
- libargus api
- camera
- nvidia
- lineedit
- 오블완
- vpiimage
- nvarguscamerasrc
- LAYERS
- l4t
- 봉화 숲속캠핑장
- udpsink
- mkfs.ext4
- Jetson
- linux
- gcc7
- gstsample
- yocto
- bash
- vpi
Archives
- Today
- Total
DREAMER
[Development Tasks Manual] 4. Customizing Images 본문
728x90
반응형
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 변수에 올바른 이름을 적어야하며, Debian 표기법이 아닌 OpenEmbedded 표기법을 사용해야 합니다. 예를들어, libc6-dev가 아닌 glibc-dev6으로 작성해야 합니다.
custom 이미지를 생성하는 또다른 방법으로는 이미 존재하는 이미지를 기반으로 하는 것입니다. 예를 들어 core-image-weston을 기반으로 이미지를 생성하려면, poky/meta/recipes-graphics/images/core-image-weston.bb 파일을 원하는 이미지 이름의 recipe파일로 복사한 다음 마지막 줄을 추가하면 됩니다.
IMAGE_INSTALL += "strace"
4. Custom 패키지 그룹으로 Customizing
5. Image Host를 Customizing
728x90
반응형
'프로그래밍 > YOCTO' 카테고리의 다른 글
[bitbake] error, QA Issue: glibc-locale: Files/directories were installed but not shipped in any package: (solved) (0) | 2023.03.23 |
---|---|
[Tasks] task order (0) | 2023.03.22 |
[bitbake] WARNING: python should use 4 spaces indentation, (solved) (0) | 2023.03.22 |
[directory] 디렉터리 설명 (작성중) (0) | 2023.03.22 |
[Development Tasks Manual] 3.25 Selecting an Initialization Manager (0) | 2023.03.21 |
Comments