This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
mspacman [2010/06/17 05:21] ben |
— (current) | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | |||
- | ====== SDLMAME 0.136 on Fedora Core 13 ====== | ||
- | |||
- | Edited grub.conf: | ||
- | <code> | ||
- | title Ms. Pacman | ||
- | root (hd0,0) | ||
- | kernel /vmlinuz-2.6.33.5-124.fc13.i686 ro root=/dev/mapper/vg_mspacman-lv_root rd_LVM_LV=vg_mspacman/lv_root rd_LVM_LV=vg_mspacman/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTABLE=us video=vesafb selinux=0 quiet rhgb | ||
- | initrd /initramfs-2.6.33.5-124.fc13.i686.img | ||
- | title Single User Mode | ||
- | root (hd0,0) | ||
- | kernel /vmlinuz-2.6.33.5-124.fc13.i686 ro root=/dev/mapper/vg_mspacman-lv_root rd_LVM_LV=vg_mspacman/lv_root rd_LVM_LV=vg_mspacman/lv_swap rd_NO_LUKS rd_NO_MD rd_NO_DM LANG=en_US.UTF-8 SYSFONT=latarcyrheb-sun16 KEYBOARDTYPE=pc KEYTA | ||
- | BLE=us video=vesafb selinux=0 telinit 1 | ||
- | initrd /initramfs-2.6.33.5-124.fc13.i686.img | ||
- | </code> | ||
- | modified /etc/X11/xinit/Xclients to contain only one exec line at the bottom, all others commented out: | ||
- | <code> | ||
- | if [ -x /usr/bin/mame ] ; then | ||
- | /usr/bin/mame -video opengl -norotate mspacmnf | ||
- | fi | ||
- | </code> | ||
- | modified rc.local: | ||
- | <code> | ||
- | #startup | ||
- | initctl start plymouth-shutdown & | ||
- | export HOME=/root | ||
- | pulseaudio --start & | ||
- | startx && shutdown -h now & | ||
- | initctl start tty TTY=/dev/tty2 & | ||
- | initctl start tty TTY=/dev/tty3 & | ||
- | </code> | ||
- | modified /etc/init/tty.conf: | ||
- | <code> | ||
- | exec /sbin/mingetty --autologin mspacman $TTY | ||
- | </code> | ||
- | ====== To-Do ====== | ||
- | * Modify Plymouth boot splash theme to be ms. pacman figure... | ||
- | * Disable any Mouse in X since the pointer comes back after changing to/from a TTY. | ||
- | * Rotate vesa/standard video too? | ||
- | * Clean-up distro & create clean image of it | ||
- | |||