-
Notifications
You must be signed in to change notification settings - Fork 9
/
nemo-i486-vm-wayland.ks
88 lines (71 loc) · 2.4 KB
/
nemo-i486-vm-wayland.ks
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
# -*-mic2-options-*- -f livecd --record-pkgs=name --pkgmgr=zypp --arch=i486 -*-mic2-options-*-
#
# Do not Edit! Generated by:
# kickstarter.py
#
lang en_US.UTF-8
keyboard us
timezone --utc UTC
part / --size 3000 --ondisk sda --fstype=ext3
rootpw nemo
xconfig --startxonboot
bootloader --timeout=0 --append="quiet video=vesafb:mtrr:3 vga=864 vt.global_cursor_default=0"
user --name nemo --groups audio,video --password nemo
repo --name=mer-core --baseurl=http://releases.merproject.org/releases/@MER_RELEASE@/builds/i486/packages --debuginfo
repo --name=nemo-ux --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/ux/@NEMO_RELEASE@_i486/
repo --name=nemo-apps --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/apps/@NEMO_RELEASE@_i486/
repo --name=nemo-adaptation-x86-generic --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/hw:/x86:/x86-common/@NEMO_RELEASE@_i486/
repo --name=nemo-mw --baseurl=http://repo.merproject.org/obs/nemo:/@FLAVOUR@:/mw/@NEMO_RELEASE@_i486/
repo --name=mer-qt --baseurl=http://repo.merproject.org/obs/mer:/qt:/devel/latest_i486/
%packages
@Nemo Complete Wayland
#------ BEGIN X86-VM-SUPPORT -------
acpid
linux-firmware
installer-shell
kernel-adaptation-pc
# swrast package is here because of
# https://bugs.nemomobile.org/show_bug.cgi?id=347
# and similar bugs
mesa-llvmpipe-dri-swrast-driver
mesa-llvmpipe-libGLESv2
nemo-configs-x86-vm-wayland
contextkit-plugin-upower
mesa-llvmpipe-libwayland-egl
qt5-plugin-imageformat-jpeg
qt5-plugin-generic-evdev
qt5-plugin-platform-eglfs
qt5-qtdeclarative-qmlscene
qt5-qtwayland-wayland_egl
#------ END X86-VM-SUPPORT -------
#contribution by Jolla
qt5-plugin-generic-vboxtouch
# Vbox support packages
virtualbox-guest-modules
virtualbox-guest-tools
qt5-qtmultimedia-gsttools
qt5-qtmultimedia-plugin-mediaservice-gstmediaplayer
gst-plugins-good
%end
%post
## rpm-rebuilddb.post from mer-kickstarter-configs package
# Rebuild db using target's rpm
echo -n "Rebuilding db using target rpm.."
rm -f /var/lib/rpm/__db*
rpm --rebuilddb
echo "done"
## end rpm-rebuilddb.post
if [ "@SSU_RELEASE_TYPE@" = "rnd" ]; then
[ -n "@NEMO_RELEASE@" ] && ssu release -r @NEMO_RELEASE@
[ -n "@FLAVOUR@" ] && ssu flavour @FLAVOUR@
ssu mode 2
else
[ -n "@NEMO_RELEASE@" ] && ssu release @NEMO_RELEASE@
ssu mode 4
fi
%end
%post --nochroot
if [ -n "$IMG_NAME" ]; then
echo "BUILD: $IMG_NAME" >> $INSTALL_ROOT/etc/meego-release
fi
%end