Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/soas.ks
diff options
context:
space:
mode:
authorMarco Pesenti Gritti <marco@marcopg.org>2009-02-07 14:07:02 (GMT)
committer Marco Pesenti Gritti <marco@marcopg.org>2009-02-07 14:07:02 (GMT)
commit9062ac7462de89aa216b90010897554c44cd84b3 (patch)
treef88c783375b3bd36a4f82f0a4f5b2a1fa6db0174 /soas.ks
parentf2336c6d7ff0ccb7d51f5d89ec165ff6dfd3d4c0 (diff)
Use mirrors.
Diffstat (limited to 'soas.ks')
-rw-r--r--soas.ks131
1 files changed, 0 insertions, 131 deletions
diff --git a/soas.ks b/soas.ks
deleted file mode 100644
index 2a8d9f4..0000000
--- a/soas.ks
+++ /dev/null
@@ -1,131 +0,0 @@
-%include fedora-live-base.ks
-
-%packages
-
-# sugar!
-@sugar-desktop
-
-# e-mail client
-alpine
-
-# display manager
-slim
-
-# exclude input methods
--scim*
--m17n*
-
-# avoid weird case where we pull in more festival stuff than we need
-festival
-festvox-slt-arctic-hts
-
-# dictionaries are big
--aspell-*
--hunspell-*
--man-pages-*
--words
-
-%end
-
-%post
-cat > /etc/sysconfig/desktop <<EOF
-DISPLAYMANAGER=/usr/bin/slim-dynwm
-EOF
-
-cat >> /etc/rc.d/init.d/livesys << EOF
-
-chkconfig --level 5 setroubleshoot off 2>/dev/null
-chkconfig --level 5 sendmail off 2>/dev/null
-chkconfig --level 5 bluetooth off 2>/dev/null
-chkconfig --level 5 cupsd off 2>/dev/null
-
-# disable screensaver locking
-gconftool-2 --direct --config-source=xml:readwrite:/etc/gconf/gconf.xml.defaults -s -t bool /apps/gnome-screensaver/lock_enabled false >/dev/null
-
-# set up timed auto-login for after 60 seconds
-cat >> /etc/slim.conf << FOE
-auto_login yes
-default_user liveuser
-FOE
-
-# setup xinitrc
-echo "sugar" > /home/liveuser/.Xclients
-chmod a+x /home/liveuser/.Xclients
-chown liveuser:liveuser /home/liveuser/.Xclients
-
-if [ \`grep -c QEMU /proc/cpuinfo\` -ne 0 ]; then
- cat > /etc/X11/xorg.conf <<FOE
-Section "ServerLayout"
- Identifier "Default layout"
- Screen 0 "Screen0" 0 0
- InputDevice "Keyboard0" "CoreKeyboard"
-EndSection
-
-Section "InputDevice"
- Identifier "Keyboard0"
- Driver "kbd"
- Option "XkbModel" "pc105+inet"
- Option "XkbLayout" "us"
-EndSection
-
-Section "Monitor"
- Identifier "Monitor0"
- ModelName "Monitor 1024x768"
- HorizSync 31.5 - 61.0
- VertRefresh 50.0 - 75.0
- Option "dpms"
-EndSection
-
-Section "Device"
- Identifier "Videocard0"
- Driver "cirrus"
-EndSection
-
-Section "Screen"
- Identifier "Screen0"
- Device "Videocard0"
- Monitor "Monitor0"
- DefaultDepth 24
- SubSection "Display"
- Viewport 0 0
- Depth 24
- EndSubSection
-EndSection
-FOE
-fi
-
-mkdir -p /home/liveuser/Activities
-chown liveuser:liveuser /home/liveuser/Activities
-for bundle in \`find /usr/share/sugar/bundles -maxdepth 1\` ; do
- ln -s \$bundle /home/liveuser/Activities
-done
-
-EOF
-
-%end
-
-%post --nochroot
-
-ACTIVITIES="
-http://dev.laptop.org/~morgan/bundles/other/Paint-23.xo
-http://dev.laptop.org/~cscott/bundles/Pippy-30.xo
-"
-
-WD=$PWD
-BUNDLES_DIR=$INSTALL_ROOT/usr/share/sugar/bundles
-
-mkdir -p $BUNDLES_DIR
-cd $BUNDLES_DIR
-
-for url in $ACTIVITIES ; do
- curl -O $url
-done
-
-for file in *.xo ; do
- unzip $file
- rm $file
-done
-
-cd $WD
-
-%end