#dont forget /etc/mic2/mic2.conf lang en_US.UTF-8 keyboard us #timezone --utc Asia/Taipei timezone --utc US/Pacific auth --useshadow --enablemd5 part / --size 1600 --ondisk sda --fstype=ext3 rootpw meego #http://fedoraproject.org/wiki/Anaconda/Kickstart#xconfig #should invoke autoprobe and config xconfig --startxonboot #my addition -- AC #monitor name should be from the list of monitors in TARGET's /usr/share/hwdata/MonitorsDB from the hwdata package #HP ZR24w at work #http://h18004.www1.hp.com/products/quickspecs/13557_na/13557_na.html #Performance Horizontal Frequency 24 to 80 kHz #Vertical Frequency 59 to 61 Hz #monitor --hsync=24.0-80.0 --vsync=59.0-61.0 #home #http://fedoraproject.org/wiki/Anaconda/Kickstart#Chapter_2._Kickstart_Options #added by me --AC #monitor --monitor=SAM0192 at home #network --device=eth0 --bootproto=dhcp --netmask=255.255.255.0 --gateway=209.204.189.1 --nameserver=208.201.224.11 #mcompositor doesn't work -- AC #desktop --autologinuser=meego --defaultdesktop=DUI --session=/usr/bin/mcompositor desktop --autologinuser=meego --defaultdesktop=DUI --session="/usr/bin/xterm" user --name meego --groups audio,video --password meego repo --name=MeeGo-Core-armv7l --baseurl=http://repo.meego.com/MeeGo/builds/trunk/daily/core/repos/armv7l/packages repo --name=MeeGo-Handset-armv7l --baseurl=http://repo.meego.com/MeeGo/builds/trunk/daily/handset/repos/armv7l/packages repo --name=uboot-omap4-panda-armv7l --baseurl=http://download.meego.com/live/home:/nm:/bootloader:/u-boot/u-boot-omap4panda repo --name=xloader-omap4-panda-armv7l --baseurl=http://download.meego.com/live/home:/nm:/bootloader:/ti:/x-loader/x-loader %packages #http://repo.meego.com/MeeGo/builds/trunk/daily/core/repos/armv7l/packages/repodata/*comps.xml to see what's in the groups @MeeGo Core @MeeGo Base @Minimal MeeGo X Window System @X for Handsets @MeeGo Handset Desktop @MeeGo Handset Applications xorg-x11-drv-omapfb u-boot-omap4_panda x-loader-omap4430panda #my addition --AC #http://repo.meego.com/MeeGo/builds/trunk/daily/core/repos/armv7l/packages/armv7l/ emacs* ethtool qt qt-demos PackageKit* -vim -vim-minimal yum %end %post # remove unused package rpm -e xorg-x11-meego-configs rpm -e meegotouch-inputmethodkeyboard rpm -e vim* # 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 # open serial line console for embedded system grep ttyO2 /etc/inittab if [ "$?" != "0" ] ; then echo "o2:235:respawn:/sbin/agetty -L 115200 ttyO2 vt100" >> /etc/inittab fi grep ttyO2 /etc/securetty if [ "$?" != "0" ] ; then echo "ttyO2" >> /etc/securetty fi %end %post --nochroot if [ -n "$IMG_NAME" ]; then echo "BUILD: $IMG_NAME" >> $INSTALL_ROOT/etc/meego-release echo "DVM: daily" >> $INSTALL_ROOT/etc/meego-release fi %end