summaryrefslogtreecommitdiffstats
path: root/meta-linaro/recipes-linaro/images/linaro-image-lng.bb
diff options
context:
space:
mode:
authorTudor Florea <tudor.florea@enea.com>2015-10-08 22:46:13 +0200
committerTudor Florea <tudor.florea@enea.com>2015-10-08 22:46:13 +0200
commit8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch)
treeeb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro/recipes-linaro/images/linaro-image-lng.bb
downloadmeta-linaro-dizzy-enea.tar.gz
initial commit for Enea Linux 5.0 armdizzy-enea
Signed-off-by: Tudor Florea <tudor.florea@enea.com>
Diffstat (limited to 'meta-linaro/recipes-linaro/images/linaro-image-lng.bb')
-rw-r--r--meta-linaro/recipes-linaro/images/linaro-image-lng.bb64
1 files changed, 64 insertions, 0 deletions
diff --git a/meta-linaro/recipes-linaro/images/linaro-image-lng.bb b/meta-linaro/recipes-linaro/images/linaro-image-lng.bb
new file mode 100644
index 0000000..7d46d68
--- /dev/null
+++ b/meta-linaro/recipes-linaro/images/linaro-image-lng.bb
@@ -0,0 +1,64 @@
1require linaro-image-common.inc
2
3IMAGE_INSTALL += " \
4 arndale-pre-boot \
5 bridge-utils \
6 calibrator \
7 curl \
8 cronie \
9 daq-odp \
10 fping \
11 git \
12 lmbench \
13 lng-network-config \
14 ltp \
15 netperf \
16 odp \
17 openssh-sftp-server \
18 openvswitch \
19 packagegroup-core-buildessential \
20 procps \
21 python-numpy \
22 qemu \
23 rt-tests \
24 snort \
25 trace-cmd \
26 tunctl \
27 usecpu \
28 "
29
30IMAGE_INSTALL_append_armv7a = " \
31 latency-test \
32 systemtap \
33 valgrind \
34 trinity-example \
35 "
36
37IMAGE_INSTALL_append_aarch64 = " \
38 trinity-example \
39 "
40
41IMAGE_INSTALL_append_qemux86 = " \
42 "
43
44IMAGE_FEATURES += "\
45 dev-pkgs \
46 staticdev-pkgs \
47 tools-debug \
48 tools-sdk \
49 "
50IMAGE_FSTYPES_append_qemux86 += "cpio.gz"
51IMAGE_FSTYPES_lng-x86-64 = "tar.gz cpio.gz"
52IMAGE_FSTYPES_lng-rt-x86-64 = "tar.gz cpio.gz"
53
54EXTRA_IMAGE_FEATURES_append_qemux86 = " autoserial"
55FEATURE_PACKAGES_autoserial = "auto-serial-console"
56
57IMAGE_PREPROCESS_COMMAND_qemux86 += "qemux86_fixup;"
58
59qemux86_fixup() {
60 sed -i '/getty 115200 ttyS0/d' ${IMAGE_ROOTFS}/etc/inittab
61
62 echo "auto eth0" >> ${IMAGE_ROOTFS}/etc/network/interfaces
63 echo "iface eth0 inet dhcp" >> ${IMAGE_ROOTFS}/etc/network/interfaces
64}