diff options
author | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
---|---|---|
committer | Tudor Florea <tudor.florea@enea.com> | 2015-10-08 22:46:13 +0200 |
commit | 8d89651ef729e560ad96dcfc002fcde6ff7f923b (patch) | |
tree | eb5be01c25f735d12fe9881ee6327c9b7e8bbe39 /meta-linaro/recipes-linaro/images/linaro-image-lng.bb | |
download | meta-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.bb | 64 |
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 @@ | |||
1 | require linaro-image-common.inc | ||
2 | |||
3 | IMAGE_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 | |||
30 | IMAGE_INSTALL_append_armv7a = " \ | ||
31 | latency-test \ | ||
32 | systemtap \ | ||
33 | valgrind \ | ||
34 | trinity-example \ | ||
35 | " | ||
36 | |||
37 | IMAGE_INSTALL_append_aarch64 = " \ | ||
38 | trinity-example \ | ||
39 | " | ||
40 | |||
41 | IMAGE_INSTALL_append_qemux86 = " \ | ||
42 | " | ||
43 | |||
44 | IMAGE_FEATURES += "\ | ||
45 | dev-pkgs \ | ||
46 | staticdev-pkgs \ | ||
47 | tools-debug \ | ||
48 | tools-sdk \ | ||
49 | " | ||
50 | IMAGE_FSTYPES_append_qemux86 += "cpio.gz" | ||
51 | IMAGE_FSTYPES_lng-x86-64 = "tar.gz cpio.gz" | ||
52 | IMAGE_FSTYPES_lng-rt-x86-64 = "tar.gz cpio.gz" | ||
53 | |||
54 | EXTRA_IMAGE_FEATURES_append_qemux86 = " autoserial" | ||
55 | FEATURE_PACKAGES_autoserial = "auto-serial-console" | ||
56 | |||
57 | IMAGE_PREPROCESS_COMMAND_qemux86 += "qemux86_fixup;" | ||
58 | |||
59 | qemux86_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 | } | ||