diff options
author | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-11 20:07:09 +0000 |
---|---|---|
committer | Marcin Juszkiewicz <hrw@openembedded.org> | 2006-10-11 20:07:09 +0000 |
commit | fe97037fb6f8ff4408c20127e0a4dfee87a4f9b1 (patch) | |
tree | c2640849e77e4273b0c226a534aedf9d6994aeac | |
parent | 8736cce97eaa6c08523a58a58504ec639d50e678 (diff) |
rootfs_ipk.bbclass: Add ipkg packages into rootfs to unbreak task-base
- When we used task-base then ipkg/ipkg-link/ipkg-collateral was not installed
into image.
- Maybe it is not best sollution but it works and it duplicate solution which
was added years ago.
-rw-r--r-- | classes/rootfs_ipk.bbclass | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/rootfs_ipk.bbclass b/classes/rootfs_ipk.bbclass index 25738e8cb1..e658fd8548 100644 --- a/classes/rootfs_ipk.bbclass +++ b/classes/rootfs_ipk.bbclass @@ -16,6 +16,8 @@ do_build[nostamp] = 1 IPKG_ARGS = "-f ${T}/ipkg.conf -o ${IMAGE_ROOTFS}" +IPKG_INSTALL += "ipkg ipkg-link ipkg-collateral" + ROOTFS_POSTPROCESS_COMMAND ?= "" PID = "${@os.getpid()}" |