blob: cbb2e7dca6b60190c8e1db9d4703d4c66dcbded1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# this image was created for use with the BeagleBoard for diagnostics
# for creating a small ramdisk image
require minimal-image.bb
IMAGE_INSTALL += " \
dosfstools \
e2fsprogs \
e2fsprogs-mke2fs \
mtd-utils \
alsa-utils \
alsa-utils-aplay \
mplayer \
memtester \
evtest \
i2c-tools \
cpufrequtils \
angstrom-uboot-scripts \
beagleboard-test-scripts \
nano \
cpuburn-neon \
kernel-module-mt9t112 \
u-boot-mkimage \
sox \
devmem2 \
ti-dsplink-examples \
"
export IMAGE_BASENAME = "beagleboard-test-image"
EXTRA_IMAGEDEPENDS += "x-load u-boot virtual/kernel"
IMAGE_FSTYPES += "ext2.gz cpio.gz.u-boot"
IMAGE_ROOTFS_SIZE_ext2 = "131072"
EXTRA_IMAGECMD_ext2.gz += "-i 8192"
|