Skip to main content
Mark81
Associate III
January 30, 2020
Solved

Copy file into bootfs partition

  • January 30, 2020
  • 1 reply
  • 928 views

Using the Distribution Package for STM32MP1 I wrote a simple function to copy some file to the rootfs image and execute fine-tuning commands:

my_postprocess_function() {
	cp -dr /home/osboxes/Documents/overlay/* ${IMAGE_ROOTFS}
	ln -s /lib/systemd/system/apache2.service ${IMAGE_ROOTFS}/etc/systemd/system/multi-user.target.wants/apache2.service
}
 
ROOTFS_POSTPROCESS_COMMAND += "my_postprocess_function; "

It works fine but of course don't work for files in `/boot` because it's another partition and the tree under `${IMAGE_ROOTFS}` does not contain it.

So, what's the right syntax to execute any command in the `boot/` directory?

This topic has been closed for replies.

1 reply

Olivier GALLIEN
Technical Moderator
February 19, 2020
Olivier GALLIEN In order to give better visibility on the answered topics, please click on 'Accept as Solution' on the reply which solved your issue or answered your question.