We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
too add files to a partition you need to have steps like:
file-resource bootcode.bin { host-path = "${NERVES_SYSTEM}/images/rpi-firmware/bootcode.bin" }
then in the each task you must:
on-resource bootcode.bin { fat_write(${BOOT_PART_OFFSET}, "bootcode.bin") }
This leads to a ton of duplicated lines. (especially when you have a part_a/part_b system)
It would be nice to just be able to specify a list of files you are concerned with
The text was updated successfully, but these errors were encountered:
Agreed
Sorry, something went wrong.
so true, after looking at the duplication, i was pretty sure someone had already reported this (adding the overlay dir for rpi is a lot of work :) )
No branches or pull requests
too add files to a partition you need to have steps like:
then in the each task you must:
This leads to a ton of duplicated lines. (especially when you have a part_a/part_b system)
It would be nice to just be able to specify a list of files you are concerned with
The text was updated successfully, but these errors were encountered: