summaryrefslogtreecommitdiffstats
path: root/meta-linaro/recipes-linaro/images/linaro-image-common.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta-linaro/recipes-linaro/images/linaro-image-common.inc')
-rw-r--r--meta-linaro/recipes-linaro/images/linaro-image-common.inc93
1 files changed, 93 insertions, 0 deletions
diff --git a/meta-linaro/recipes-linaro/images/linaro-image-common.inc b/meta-linaro/recipes-linaro/images/linaro-image-common.inc
new file mode 100644
index 0000000..223df3a
--- /dev/null
+++ b/meta-linaro/recipes-linaro/images/linaro-image-common.inc
@@ -0,0 +1,93 @@
1inherit core-image
2
3IMAGE_FEATURES += "ssh-server-openssh nfs-server package-management"
4
5HUGETLB_armv7a = "libhugetlbfs-tests"
6HUGETLB_aarch64 = "libhugetlbfs-tests"
7HUGETLB ?= ""
8
9IMAGE_INSTALL += " \
10 bash \
11 e2fsprogs-e2fsck \
12 kexec-tools \
13 linaro-lava-tests \
14 nss-myhostname \
15 procps \
16 stress \
17 stress-dbg \
18 sudo \
19 util-linux-fsck \
20 "
21
22SDK_IMAGE_INSTALL += "\
23 acpica \
24 bison \
25 boost-date-time \
26 boost-filesystem \
27 boost-graph \
28 boost-iostreams \
29 boost-program-options \
30 boost-regex \
31 boost-signals \
32 boost-system \
33 boost-thread \
34 cmake \
35 curl \
36 dmidecode \
37 efibootmgr \
38 elfutils-dev \
39 expat \
40 flex \
41 gator \
42 gd \
43 git \
44 glog \
45 icu \
46 idlestat \
47 libbz2 \
48 libc-client-dev \
49 libcap \
50 libdwarf-dev \
51 libevent-fb \
52 libmcrypt \
53 libmemcached \
54 libmysqlclient-r \
55 libpam \
56 libpcre \
57 libunwind \
58 libxml2 \
59 lshw \
60 ltp \
61 ncurses \
62 onig \
63 openldap \
64 openssh-sftp-server \
65 openssl \
66 perf \
67 pm-qa \
68 powerdebug \
69 powertop \
70 python \
71 python-misc \
72 python-multiprocessing \
73 python-numpy \
74 python-scons \
75 python-shell \
76 python-threading \
77 qemu \
78 readline \
79 sshfs-fuse \
80 tbb \
81 trace-cmd \
82 xserver-xorg-xvfb \
83 xz \
84 zlib \
85 ${HUGETLB} \
86 "
87
88IMAGE_PREPROCESS_COMMAND += "make_boot_verbose; "
89
90
91fakeroot make_boot_verbose () {
92 sed -i -e 's/VERBOSE=no/VERBOSE=yes/' ${IMAGE_ROOTFS}/etc/default/rcS
93}