initial data commit, yay!

This commit is contained in:
Fabio Erculiani
2010-09-17 13:40:17 +02:00
parent 83010d8ed2
commit 862b904c93
152 changed files with 7812 additions and 0 deletions

26
boot/core/sabayon.bat Normal file
View File

@@ -0,0 +1,26 @@
@echo off
echo.
echo Running Sabayon in the QEMU virtual machine.
echo.
echo While running Sabayon in this mode, think of the following:
echo.
echo 1) Beware that your Microsoft Windows installations might have keyloggers,
echo viruses or other malware installed. Incognito's defenses can do nothing
echo against them.
echo.
echo 2) If you are using a persistent home volume your changes will not be saved
echo during this session but you will be able to access previously saved data.
echo.
echo 3) Press CTRL-ALT to escape from the QEMU window, and CTRL-ALT-F to toggle
echo fullscreen mode.
echo.
set DRIVE=%CD:~0,1%
set KERNEL=sabayon
set INITRD=sabayon.igz
set KERNEL_ARGS=root=/dev/ram0 initrd=/boot/sabayon.igz aufs init=/linuxrc cdroot looptype=squashfs max_loop=64 loop=/livecd.squashfs splash=silent,theme:sabayon vga=791 console=tty1 quiet music
set SYSLINUX=boot
rem Start QEMU
start /B %DRIVE%:\qemu\qemu.exe -m 640M -localtime -soundhw sb16 -usb -L %DRIVE%:\qemu -hda fat:%DRIVE%: -kernel %DRIVE%:\%SYSLINUX%\%KERNEL% -initrd %DRIVE%:\%SYSLINUX%\%INITRD% -append "%KERNEL_ARGS%"