OE4T / tegra-demo-distro

Reference/demonstration distro for meta-tegra
MIT License
73 stars 74 forks source link

package_write_rpm error. #247

Closed leadercxn closed 1 year ago

leadercxn commented 1 year ago

Hi OE4T developer, I met a probleam like this: I want to install some files into my rootfs, and I write a ac8265.bb file and build it into my image.bb,but when I build my project, it show some error like pic2. I don't know the reason I have wrote do_package_write_rpm[noexec] = "1" in my bb file, it warned me to the mistakes.

image image
madisongh commented 1 year ago

The RPM packages are needed for constructing the rootfs, so you should not disable the execution of the packaging tasks in your recipe, or override the do_package_write_rpm function.

leadercxn commented 1 year ago

@madisongh Hi, I use IMAGE_INSTALL += " kernel-modules linux-firmware " to install kernel modules and some firmware into rootfs.

image