141 lines
3.6 KiB
Plaintext
141 lines
3.6 KiB
Plaintext
# fedora-livecd-soas.ks
|
|
#
|
|
# Description:
|
|
# - A Sugar environment that you can carry in your pocket
|
|
#
|
|
# Maintainers:
|
|
# - Sebastian Dziallas <sdz AT fedoraproject DOT org>
|
|
# - Peter Robinson <pbrobinson AT gmail DOT com>
|
|
# - Mel Chua <mchua AT fedoraproject DOT org>
|
|
|
|
%include fedora-live-mini.ks
|
|
|
|
%packages
|
|
|
|
# == Core Sugar Platform ==
|
|
sugar
|
|
|
|
# == Platform Components ==
|
|
# from http://wiki.sugarlabs.org/go/0.88/Platform_Components
|
|
alsa-plugins-pulseaudio
|
|
alsa-utils
|
|
etoys
|
|
csound-python
|
|
evince-djvu
|
|
gstreamer-plugins-good
|
|
gstreamer-plugins-espeak
|
|
gstreamer-plugins-bad-free
|
|
pulseaudio
|
|
|
|
# == Sugar Activities ==
|
|
sugar-browse # Because they need this to install activities.
|
|
sugar-log # Because they need this for debugging.
|
|
sugar-physics # Because this is a great demo example (quick demo).
|
|
sugar-terminal # Because this makes debugging easier.
|
|
sugar-turtleart # Because this is a great demo example (extended demo).
|
|
sugar-xoirc # Because this helps us help them.
|
|
|
|
# Add these temporarily to the release while we test and finalise the release.
|
|
# They are NOT guaranteed for the final release!
|
|
|
|
etoys-sugar
|
|
sugar-chat
|
|
sugar-read
|
|
sugar-record
|
|
sugar-write
|
|
|
|
# Write breaks unless we do this (we don't need it anyways)
|
|
-@input-methods
|
|
|
|
# == Activities from ASLO ==
|
|
# These are activities we're going to polish to the same level
|
|
# as the ones included in the SoaS image, but encourage people
|
|
# to download from ASLO as part of the SoaS experience of exploring
|
|
# other Activities in there.
|
|
|
|
# sugar-maze
|
|
# sugar-speak
|
|
# sugar-tamtam-*
|
|
# sugar-visualmatch
|
|
|
|
# These are Activities that aren't quite there, but are important,
|
|
# so we're going to encourage people to test them.
|
|
|
|
# sugar-pippy
|
|
|
|
# == System ==
|
|
# Automatically logs in the liveuser
|
|
# We're going to replace this with nodm
|
|
# http://bugs.sugarlabs.org/ticket/1849
|
|
gdm
|
|
|
|
# Needed to show external hard drives
|
|
gvfs
|
|
|
|
# Needed for battery monitoring and power management
|
|
gnome-power-manager
|
|
|
|
# Get the Sugar boot screen
|
|
-plymouth-system-theme
|
|
-plymouth-theme-charge
|
|
sugar-logos
|
|
|
|
# == Hardware ==
|
|
# Lets support Broadcom and XO wifi hardware
|
|
b43-openfwwf
|
|
libertas-usb8388-firmware
|
|
|
|
# == Fonts ==
|
|
# More font support according to:
|
|
# http://bugs.sugarlabs.org/ticket/1119
|
|
google-droid-fonts-common
|
|
google-droid-sans-fonts
|
|
google-droid-sans-mono-fonts
|
|
google-droid-serif-fonts
|
|
|
|
%end
|
|
|
|
%post
|
|
|
|
# Rebuild initrd for Sugar boot screen
|
|
KERNEL_VERSION=$(rpm -q kernel --qf '%{version}-%{release}.%{arch}\n')
|
|
/usr/sbin/plymouth-set-default-theme sugar
|
|
/sbin/dracut -f /boot/initramfs-$KERNEL_VERSION.img $KERNEL_VERSION
|
|
|
|
cat >> /etc/rc.d/init.d/livesys << EOF
|
|
|
|
# Don't use the default system user (in SoaS liveuser) as nick name
|
|
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t string /desktop/sugar/user/default_nick disabled >/dev/null
|
|
|
|
# Disable the logout menu item in Sugar
|
|
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /desktop/sugar/show_logout false >/dev/null
|
|
|
|
# Enable Sugar power management
|
|
gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /desktop/sugar/power/automatic True >/dev/null
|
|
|
|
# Add our activities to the favorites
|
|
cat > /usr/share/sugar/data/activities.defaults << FOE
|
|
org.laptop.AbiWordActivity
|
|
org.laptop.Chat
|
|
org.laptop.Log
|
|
org.laptop.physics
|
|
org.laptop.RecordActivity
|
|
org.laptop.Terminal
|
|
org.laptop.TurtleArtActivity
|
|
org.laptop.WebActivity
|
|
org.laptop.sugar.ReadActivity
|
|
org.sugarlabs.IRC
|
|
org.vpri.EtoysActivity
|
|
FOE
|
|
|
|
# Set up auto-login for for liveuser
|
|
cat >> /etc/gdm/custom.conf << FOE
|
|
[daemon]
|
|
AutomaticLoginEnable=true
|
|
AutomaticLogin=liveuser
|
|
FOE
|
|
|
|
EOF
|
|
|
|
%end
|