blob: a857c5b3318ccfd282bd6ce32502f347bc666e71 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
|
#------------------------------------------------------
# freesmartphone.org Image Recipe
#------------------------------------------------------
IMAGE_LINGUAS = ""
# getting the base system up
BASE_INSTALL = "\
${MACHINE_TASK_PROVIDER} \
netbase \
sysfsutils \
module-init-tools-depmod \
rsync \
screen \
fbset \
fbset-modes \
"
# getting an X window system up
X_INSTALL = "\
e-wm \
illume \
illume-theme-freesmartphone \
${XSERVER} \
xserver-kdrive-common \
xserver-nodm-init \
xauth \
xhost \
xset \
xrandr \
\
fontconfig-utils \
\
ttf-dejavu-common \
ttf-dejavu-sans \
ttf-dejavu-serif \
\
"
# useful command line tools
TOOLS_INSTALL = "\
# bash \
dosfstools \
htop \
iptables \
lsof \
mickeydbus \
mickeyterm \
mtd-utils \
nano \
powertop \
s3c24xx-gpio \
sysstat \
"
# audio
AUDIO_INSTALL = "\
alsa-oss \
alsa-state \
alsa-utils-aplay \
alsa-utils-amixer \
gst-meta-audio \
gst-plugin-mad \
gst-plugin-modplug \
gst-plugin-sid \
fso-sounds \
"
GTK_INSTALL = "\
openmoko-calculator2 \
openmoko-terminal2 \
gpe-scap \
tangogps-fso \
"
GAMES_INSTALL = "\
numptyphysics \
"
# FIXME these should rather be part of alsa-state,
# once Om stabilizes them...
AUDIO_INSTALL_append_om-gta01 = "\
openmoko-alsa-scenarios \
"
AUDIO_INSTALL_append_om-gta02 = "\
openmoko-alsa-scenarios \
"
# python
PYTHON_INSTALL = "\
task-python-efl \
python-codecs \
python-gst \
"
# zhone
ZHONE_INSTALL = "\
gsm0710muxd \
frameworkd \
zhone \
"
IMAGE_INSTALL = "\
${BASE_INSTALL} \
${X_INSTALL} \
${GTK_INSTALL} \
${GAMES_INSTALL} \
${AUDIO_INSTALL} \
${TOOLS_INSTALL} \
${PYTHON_INSTALL} \
${ZHONE_INSTALL} \
"
inherit image
# perform some convenience tweaks to the rootfs
fso_rootfs_postprocess() {
curdir=$PWD
cd ${IMAGE_ROOTFS}
# date/time
date "+%m%d%H%M%Y" >./etc/timestamp
# alias foo
echo "alias pico=nano" >>./etc/profile
echo "alias fso='cd /local/pkg/fso'" >>./etc/profile
echo "alias ipkg='opkg'" >>./etc/profile
# nfs
mkdir -p ./local/pkg
echo >>./etc/fstab
echo "# NFS Host" >>./etc/fstab
echo "192.168.0.200:/local/pkg /local/pkg nfs noauto,nolock,soft,rsize=32768,wsize=32768 0 0" >>./etc/fstab
# fix .desktop files for illume
desktop=`find ./usr/share/applications -name "*.desktop"`
for file in $desktop; do
echo "Categories=Office;" >>$file
done
# minimal gtk theme foo
mkdir -p ./etc/gtk-2.0/
echo 'gtk-font-name = "Sans 5"' >> ./etc/gtk-2.0/gtkrc
cd $curdir
}
ROOTFS_POSTPROCESS_COMMAND += "fso_rootfs_postprocess"
|