its the vga= line that you need to add. The default in the live is vga=788 (I think) which will give 100x37 (800x600) resolution. vga=791 will give you 128x48 (1024x768).
just add that on the kernel line with the"3".
OR the current method...
use
on its own line BEFORE the linux kernel line
gfxpayload=1024x768x16, 1024x768
to get the resolution set the way you want. just replace the numbers with the resolution of your choice.
so my custom init 3 entry looks like this:
Code: Select all
load_video
insmod gzio
if [ x$grub_platform = xxen ]; then insmod xzio; insmod lzopio; fi
insmod part_msdos
insmod ext2
set root='hd0,msdos1'
if [ x$feature_platform_search_hint = xy ]; then
search --no-floppy --fs-uuid --set=root --hint-ieee1275='ieee1275//disk@0,msdos1' --hint-bios=hd0,msdos1 --hint-efi=hd0,msdos1 --hint-baremetal=ahci0,msdos1 f66c6f73-b657-4954-bfdb-695088d591a9
else
search --no-floppy --fs-uuid --set=root f66c6f73-b657-4954-bfdb-695088d591a9
fi
echo 'Loading Linux 4.0.5-antix.1-486-smp ...'
gfxpayload=1024x768x16, 1024x768
linux /boot/vmlinuz-4.0.5-antix.1-486-smp root=UUID=f66c6f73-b657-4954-bfdb-695088d591a9 ro quiet 3
echo 'Loading initial ramdisk ...'
initrd /boot/initrd.img-4.0.5-antix.1-486-smp