aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/images/udumpty-image.bb
blob: 8f616d97f803eabf4adbfafe157cdb3ffc6d26b0 (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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
# Image that mimics the default desktop of a certain distro

SPLASH ?= ' ${@base_contains("MACHINE_FEATURES", "screen", "psplash-angstrom", "",d)}'
XSERVER ?= "xserver-xorg \
           xf86-input-evdev \
           xf86-input-mouse \
           xf86-video-fbdev \
           xf86-input-keyboard \
"


ANGSTROM_EXTRA_INSTALL ?= ""

export IMAGE_BASENAME = "Udumpty-image"

DEPENDS = "task-base"
IMAGE_INSTALL = "\
    ${XSERVER} \
    task-base-extended \
    angstrom-x11-base-depends \
    angstrom-gpe-task-base \
    ${ANGSTROM_EXTRA_INSTALL} \
    angstrom-zeroconf-audio \
    angstrom-led-config \ 
    gpe-scap \
    psplash \
    metacity \
    xterm \ 
    epiphany \
    swfdec-mozilla \
    hicolor-icon-theme gnome-icon-theme \
    abiword \
    gnumeric \
    gimp \
    powertop oprofile \
    pidgin \
    totem mplayer omapfbplay \
    gnome-games \
    rt73-firmware zd1211-firmware \
	synergy \
	x11vnc \
	angstrom-gnome-icon-theme-enable \
	gnome-panel \
	gnome-control-center \
	gnome-settings-daemon \
	gnome-session \
    ${SPLASH} \
"

IMAGE_PREPROCESS_COMMAND = "create_etc_timestamp"

#zap root password for release images
ROOTFS_POSTPROCESS_COMMAND += '${@base_conditional("DISTRO_TYPE", "release", "zap_root_password; ", "",d)}'

inherit image