diff --git a/README.md b/README.md index a9d1dfd..152a69d 100644 --- a/README.md +++ b/README.md @@ -64,6 +64,13 @@ Contains the files which defines the PXE menu. The [first one][main menu.cfg] wi * Debian Sid (unstable) i386. 2. If you want to use with your own TFTPD server, you need te set your IP server ! Replace all occurrences of *129.20.27.239* by the IP of your TFTPD server to be able to load the preseed files ! +#### config/ubuntu/menu.cfg +Provide PXE entries for : + * Ubuntu LTS (16.04) amd64. + * Ubuntu LTS (16.04) i386. + * Latest non-LTS Ubuntu (15.10) amd64. + * Latest non-LTS Ubuntu (15.10) i386. + ### Preseed A preseed file can be loaded by the Debian-Installer to answer all questions Preseeding provides a way to set answers to questions asked by the Debian-Installer, without having to manually enter the answers. This makes it possible to fully automate most types of installation and even offers some features not available during normal installations. More informations on [Debian wiki][preseed informations]. diff --git a/config/ubuntu/menu.cfg b/config/ubuntu/menu.cfg index aafea80..215c988 100644 --- a/config/ubuntu/menu.cfg +++ b/config/ubuntu/menu.cfg @@ -1,11 +1,20 @@ -label install64 - menu label Ubuntu LTS GNU/Linux ^64 bits +label lts64 + menu label Ubuntu LTS (16.04) GNU/Linux ^amd64 kernel installer/ubuntu/lts/amd64/linux - append vga=normal initrd=installer/ubuntu/lts/i386/initrd.gz -- quiet -label install86 - menu label Ubuntu LTS GNU/Linux ^86 bits + append vga=normal initrd=installer/ubuntu/lts/amd64/initrd.gz -- quiet +label lts86 + menu label Ubuntu LTS (16.04) GNU/Linux ^i386 kernel installer/ubuntu/lts/i386/linux append vga=normal initrd=installer/ubuntu/lts/i386/initrd.gz -- quiet +label latest64 + menu label Ubuntu ^Latest (15.10) GNU/Linux amd64 + kernel installer/ubuntu/wily/amd64/linux + append vga=normal initrd=installer/ubuntu/wily/amd64/initrd.gz -- quiet +label latest86 + menu label Ubuntu ^Latest (15.10) GNU/Linux i386 + kernel installer/ubuntu/wily/i386/linux + append vga=normal initrd=installer/ubuntu/wily/i386/initrd.gz -- quiet + label separator menu label ----- label mainmenu diff --git a/scripts/README.md b/scripts/README.md index 8adb4c4..4f8af1c 100644 --- a/scripts/README.md +++ b/scripts/README.md @@ -3,7 +3,7 @@ 1. [Description](#description) 2. [Scripts list](#scripts-list) * [Download Debian](#download_debiansh) - * [Download Ubuntu](#dowload_ubuntush) + * [Download Ubuntu](#download_ubuntush) * [Make Debian Initrd with Firmware](#make_debian_initrd_with_firmwaresh) * [Debian late_command](#debian-late_command)