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
|
#
# Do not Edit! Generated by:
# kickstarter.py
#
lang en_US.UTF-8
keyboard us
timezone --utc America/New_York
auth --useshadow --enablemd5
part / --size 3200 --ondisk sda --fstype=ext3
rootpw moblin
xconfig --startxonboot
bootloader --timeout=0 --append="quiet"
desktop --autologinuser=moblin --defaultdesktop=moblin
user --name moblin --groups audio,video --password moblin
repo --name=moblin2 --baseurl=http://repo.moblin.org/moblin/releases/2.1/ia32/os/
repo --name=moblin2-debug --baseurl=http://repo.moblin.org/moblin/releases/2.1/ia32/debug/
repo --name=adobe --baseurl=http://linuxdownload.adobe.com/linux/i386/
%packages
@Core
@Moblin Desktop Debug
@Developer Desktop
@Moblin Foundation
@Wimax Support
@Development Libraries
@Moblin Foundation Development
@Moblin Desktop
@X for Netbooks
@Virtual Machine Support
@Base
@Games
@Moblin Desktop Development
@X Window System
@X Software Development
@Basic Desktop
@Basic Hardware Support
@Printing
@Development Tools
kernel-netbook
kernel-netbook-devel
gdb
adobe-release
flash-plugin
%end
%post
echo "DISPLAYMANAGER=\"UXLAUNCH\"" >> /etc/sysconfig/desktop
# verify link of flash plugin
if [ -f /usr/lib/flash-plugin/setup ]; then
sh /usr/lib/flash-plugin/setup install
rm -f /root/oldflashplugins.tar.gz
fi
# save a little bit of space at least...
rm -f /boot/initrd*
# make sure there aren't core files lying around
rm -f /core*
# Prelink can reduce boot time
if [ -x /usr/sbin/prelink ]; then
/usr/sbin/prelink -aRqm
fi
# work around for poor key import UI in PackageKit
rm -f /var/lib/rpm/__db*
rpm --rebuilddb
if [ -f /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux ]; then
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-adobe-linux
fi
if [ -f /etc/pki/rpm-gpg/RPM-GPG-KEY-moblin ]; then
rpm --import /etc/pki/rpm-gpg/RPM-GPG-KEY-moblin
fi
%end
%post --nochroot
%end
|