doc/user_manual: update Prebuilt .deb packages from somewhere part

Message ID 20230601100753.3523602-1-srinuvasan_a@mentor.com
State Rejected, archived
Headers show
Series doc/user_manual: update Prebuilt .deb packages from somewhere part | expand

Commit Message

Srinuvasan Arjunan June 1, 2023, 10:07 a.m. UTC
From: Srinuvasan A <srinuvasan.a@siemens.com>

When we add prebuilt .deb packages from somewhere, this should be
install via IMAGE_PREINSTALL not IMAGE_INSTALL, corrected this variable
name at this chance.

Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
---
 doc/user_manual.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Jan Kiszka June 1, 2023, 10:33 a.m. UTC | #1
On 01.06.23 12:07, Srinuvasan Arjunan wrote:
> From: Srinuvasan A <srinuvasan.a@siemens.com>
> 
> When we add prebuilt .deb packages from somewhere, this should be
> install via IMAGE_PREINSTALL not IMAGE_INSTALL, corrected this variable
> name at this chance.
> 
> Signed-off-by: Srinuvasan A <srinuvasan.a@siemens.com>
> ---
>  doc/user_manual.md | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/doc/user_manual.md b/doc/user_manual.md
> index e07b76d..ada8f9a 100644
> --- a/doc/user_manual.md
> +++ b/doc/user_manual.md
> @@ -906,7 +906,7 @@ from which would be the better way.
>  
>  Such single debs can be included if need be. You just need to write a recipe
>  that just fetches those debs to its `WORKDIR` and deploys them. They can then
> -be installed via `IMAGE_INSTALL`. Have a look at `prebuilt-deb`.
> +be installed via `IMAGE_PREINSTALL`. Have a look at `prebuilt-deb`.
>  

No, this is wrong. prebuilt-deb is an own recipe that we need to DEPEND
upon, and that is ensured via IMAGE_INSTALL. IMAGE_INSTALL = DEPEND +
IMAGE_PREINSTALL.

Jan

Patch

diff --git a/doc/user_manual.md b/doc/user_manual.md
index e07b76d..ada8f9a 100644
--- a/doc/user_manual.md
+++ b/doc/user_manual.md
@@ -906,7 +906,7 @@  from which would be the better way.
 
 Such single debs can be included if need be. You just need to write a recipe
 that just fetches those debs to its `WORKDIR` and deploys them. They can then
-be installed via `IMAGE_INSTALL`. Have a look at `prebuilt-deb`.
+be installed via `IMAGE_PREINSTALL`. Have a look at `prebuilt-deb`.
 
 ---