diff options
author | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:19:58 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2014-10-10 03:19:58 +0200 |
commit | f98b448ee835646be48f530b3e6fe13b32b093f5 (patch) | |
tree | 9d1062f1e8893e72829df650f5e558c5fb255955 /recipes-fsl | |
download | meta-fsl-arm-daisy-140929.tar.gz |
initial commit for Enea Linux 4.0-140929daisy-140929
Migrated from the internal git server on the daisy-enea-point-release branch
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'recipes-fsl')
-rw-r--r-- | recipes-fsl/images/fsl-image-mfgtool-initramfs.bb | 8 | ||||
-rw-r--r-- | recipes-fsl/packagegroups/packagegroup-fsl-mfgtool.bb | 47 |
2 files changed, 55 insertions, 0 deletions
diff --git a/recipes-fsl/images/fsl-image-mfgtool-initramfs.bb b/recipes-fsl/images/fsl-image-mfgtool-initramfs.bb new file mode 100644 index 0000000..7d79d1e --- /dev/null +++ b/recipes-fsl/images/fsl-image-mfgtool-initramfs.bb | |||
@@ -0,0 +1,8 @@ | |||
1 | # Copyright (C) 2014 O.S. Systems Software LTDA. | ||
2 | |||
3 | DESCRIPTION = "Small image to be used with Manufacturing Tool \ | ||
4 | (mfg-tool) in a production environment." | ||
5 | |||
6 | LICENSE = "MIT" | ||
7 | |||
8 | inherit mfgtool-initramfs-image | ||
diff --git a/recipes-fsl/packagegroups/packagegroup-fsl-mfgtool.bb b/recipes-fsl/packagegroups/packagegroup-fsl-mfgtool.bb new file mode 100644 index 0000000..92f882d --- /dev/null +++ b/recipes-fsl/packagegroups/packagegroup-fsl-mfgtool.bb | |||
@@ -0,0 +1,47 @@ | |||
1 | # Copyright (C) 2014 O.S. Systems Software LTDA. | ||
2 | |||
3 | SUMMARY = "Freescale Manufacturing Tool requirements" | ||
4 | LICENSE = "MIT" | ||
5 | |||
6 | inherit packagegroup | ||
7 | |||
8 | PACKAGES = " \ | ||
9 | ${PN}-base \ | ||
10 | ${PN}-mtd \ | ||
11 | ${PN}-extfs \ | ||
12 | " | ||
13 | |||
14 | # The essential packages for device bootup that may be set in the | ||
15 | # machine configuration file. | ||
16 | MACHINE_ESSENTIAL_EXTRA_RDEPENDS ?= "" | ||
17 | |||
18 | # Distro can override the following VIRTUAL-RUNTIME providers: | ||
19 | VIRTUAL-RUNTIME_keymaps ?= "keymaps" | ||
20 | |||
21 | RDEPENDS_${PN}-base = " \ | ||
22 | bash \ | ||
23 | imx-uuc \ | ||
24 | util-linux \ | ||
25 | coreutils \ | ||
26 | dosfstools \ | ||
27 | mmc-utils \ | ||
28 | base-files \ | ||
29 | base-passwd \ | ||
30 | busybox \ | ||
31 | ${@base_contains("MACHINE_FEATURES", "keyboard", "${VIRTUAL-RUNTIME_keymaps}", "", d)} \ | ||
32 | ${MACHINE_ESSENTIAL_EXTRA_RDEPENDS} \ | ||
33 | " | ||
34 | |||
35 | RDEPENDS_${PN}-mtd = " \ | ||
36 | ${PN}-base \ | ||
37 | imx-kobs \ | ||
38 | mtd-utils \ | ||
39 | mtd-utils-ubifs \ | ||
40 | " | ||
41 | |||
42 | RDEPENDS_${PN}-extfs = " \ | ||
43 | ${PN}-base \ | ||
44 | e2fsprogs-mke2fs \ | ||
45 | " | ||
46 | |||
47 | PACKAGE_ARCH = "${MACHINE_ARCH}" | ||