From: pierre.daye@p3lab.com
To: yocto@lists.yoctoproject.org
Subject: Scarthgap recipe to save and package to secondary partition
Date: Thu, 12 Dec 2024 05:14:04 -0800 [thread overview]
Message-ID: <vnCM.1734009244366914529.Gp65@lists.yoctoproject.org> (raw)
[-- Attachment #1: Type: text/plain, Size: 1964 bytes --]
Hello,
I am updating our system from Honnister to Scarthgap.
I do have a wks file that prepare the system with multiple partitions (a boot, two rootfs, one persistent media and one swap).
>
> part /boot --source bootimg-partition --ondisk mmcblk1 --fstype=vfat
> --label boot_A --active --align 4096 --size 20 --fsoptions "vfat
> rw,relatime,fmask=0022,dmask=0022,codepage=437,iocharset=iso8859-1,shortname=mixed,errors=remount-ro"
>
> part / --source rootfs --ondisk mmcblk1 --fstype=ext4 --label root_A
> --align 4096 --exclude-path=media/
> part --source rootfs --ondisk mmcblk1 --fstype=ext4 --label root_B --align
> 4096
> part /media --rootfs-dir=${IMAGE_ROOTFS}/media --size=128M --ondisk
> mmcblk1 --fstype=ext4 --label data --align 4096
> part swap --ondisk mmcblk1 --size 44 --label swap --fstype=swap
> --size=2048M --overhead-factor 1
>
I am trying to store configuration files onto the persistent media partition in one of my recipes. I am showing here the relevant part:
>
> do_install:append() {
> mkdir -p ${D}/media/data/calibrations
> install -m 0644 ${S}/../system_config.json
> ${D}/media/data/system_config.json
> install -m 0644 ${S}/../system_config_temperature.json
> ${D}/media/data/system_config_temperature.json
> install -m 0644 ${S}/../calib_0000_00_00_00_00_00.raw
> ${D}/media/data/calibrations/calib_0000_00_00_00_00_00.raw
> }
> FILES:${PN} += "/usr/share/p3_paradigms/*"
> FILES:${PN} += "/media/data/* "
> FILES:${PN} += "/media/data/calibrations/* "
>
The recipe was working great under honnister and my wic file contained the media partition and all the files I copied into it with the recipe. However, when I use the same approach with Scarthgap, I have QA error for empty-dirs
>
> do_package_qa: QA Issue: embedded-services installs files in /media, but
> it is expected to be empty [empty-dirs]
>
Any idea on how I can solve this? What am I doing wrongly?
Thanks!
[-- Attachment #2: Type: text/html, Size: 2405 bytes --]
next reply other threads:[~2024-12-12 13:14 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-12 13:14 pierre.daye [this message]
2024-12-12 13:19 ` [yocto] Scarthgap recipe to save and package to secondary partition Gyorgy Sarvari
2024-12-12 13:36 ` Gyorgy Sarvari
2024-12-12 13:37 ` pierre.daye
2024-12-12 14:36 ` pierre.daye
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=vnCM.1734009244366914529.Gp65@lists.yoctoproject.org \
--to=pierre.daye@p3lab.com \
--cc=yocto@lists.yoctoproject.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.