---------------------------------------------------------------- -- Partition table -- Note: Size unit is 'M' ---------------------------------------------------------------- Cfg.partitions = { ['Partition'] = {'Size', 'Type', 'Format', "MountPoint", "Files" }; ------------------------------------------------------------------------------------------------- [1] = { 128, 'ext3', 'Y', }; [2] = { 4096, 'ext3', 'Y', }; [3] = { 2048, 'swap', 'Y', }; [4] = { 'NULL', 'extend', 'NULL', }; [5] = { 20480, 'ext4', 'Y', '/', 'basesys_20120801.tar.gz' }; [6] = { 'rest', 'ext4', 'Y', '/home', 'basesys_20120801.tar.gz' }; ['Boot'] = 1; ['Backup'] = 2; } Cfg.partitions1 = { ['Partition'] = {'Size', 'Type', 'Format', "MountPoint", "Files" }; ------------------------------------------------------------------------------------------------- [1] = { 20480, 'ext3', 'Y', '/', 'root.tar.gz' }; [2] = { 4096, 'ext3', 'Y', }; [3] = { 2048, 'swap', 'Y', }; [4] = { 'NULL', 'extend', 'NULL', }; [5] = { 20480, 'ext3', 'Y', '/etc', 'etc.tar.gz' }; [6] = { 'rest', 'ext3', 'Y', '/home', 'home.tar.gz' }; ['Boot'] = 1; ['Backup'] = 2; } Cfg.default_partitions = Cfg.partitions ---------------------------------------------------------------- -- Other configuration -- ---------------------------------------------------------------- Cfg.OSFAB_NAME = {'OSFab-2012-0831.squashfs'} Cfg.SYSTEM_NAME = "LOonux 3" Cfg.SYSTEM_NUM = "" Cfg.SYSTEM_VERSION = "std" Cfg.LANGUAGE = "" Cfg.CONFIG_VERSION = "1.0" Cfg.BOOT_EX = "timeout 3\ndefault 0\nshowmenu 1\n\ntitle LOonux 3\n\tkernel /dev/fs/ext2@wd0/vmlinuz26\n\targs console=tty1 quiet init=/sbin/LOonux3 splash root=/dev/sda5\n\ntitle LOonux 3 (3.5+)\n\tkernel /dev/fs/ext2@wd0/vmlinuz-3.x\n\targs console=tty1 quiet init=/sbin/LOonux3 splash root=/dev/sda5 resume=/dev/sda3\n\ntitle LOonux 3 (Fallback)\n\tkernel /dev/fs/ext2@wd0/vmlinuz26 \n\targs console=tty quiet root=/dev/sda5\n\ntitle LOonux 3 recover\n\tkernel /dev/fs/ext2@wd0b/vmlinuz\n\targs console=tty quiet recover=localdisk\n\trecovery 0\n"