diff options
author | Koen Kooi <koen@openembedded.org> | 2007-12-04 12:59:16 +0000 |
---|---|---|
committer | Koen Kooi <koen@openembedded.org> | 2007-12-04 12:59:16 +0000 |
commit | 4627823d89a8fe45436f230958a1c4adab092385 (patch) | |
tree | 0c2914893eeff5bbf843f77ae8fdd5677cc81f54 | |
parent | e38a45e8895fcd771dcb4c674e728ee3147b6495 (diff) |
console-mipv6-image: add skeleton image for ipv6 mobility folks
-rw-r--r-- | packages/images/console-mipv6-image.bb | 7 | ||||
-rw-r--r-- | packages/tasks/task-mipl.bb | 16 |
2 files changed, 23 insertions, 0 deletions
diff --git a/packages/images/console-mipv6-image.bb b/packages/images/console-mipv6-image.bb new file mode 100644 index 0000000000..3c9995cf2e --- /dev/null +++ b/packages/images/console-mipv6-image.bb @@ -0,0 +1,7 @@ +# This image is for testing the ipv6 mobility extensions + +require console-image.bb +IMAGE_INSTALL += " task-mipl " + +export IMAGE_BASENAME = "console-mobile-ipv6-image" + diff --git a/packages/tasks/task-mipl.bb b/packages/tasks/task-mipl.bb new file mode 100644 index 0000000000..9e2dce52f1 --- /dev/null +++ b/packages/tasks/task-mipl.bb @@ -0,0 +1,16 @@ +# Tasks for IPv6 Mobility extensions, needs: +# CONFIG_IPV6_MIP6=y +# CONFIG_IPV6=y +# in the kernel .config + +DESCRIPTION = "Mobile ipv6 extensions" + +inherit task + +PACKAGE_ARCH = "all" + +RDEPENDS = "mipv6" +RRECOMMENDS = "kernel-module-ipv6 \ + kernel-module-mip6 \ + " + |