Browse Source

Adding Ultimate Boot CD

Antony Messerli 9 years ago
parent
commit
a1d1a4dd70
3 changed files with 9 additions and 0 deletions
  1. 1 0
      README.md
  2. 1 0
      docs/index.md
  3. 7 0
      src/utils.ipxe

+ 1 - 0
README.md

@@ -68,6 +68,7 @@ Full documentation is at ReadTheDocs:
 * [Partition Wizard](http://www.partitionwizard.com)
 * [Pogostick - Offline Windows Password and Registry Editor](http://pogostick.net/~pnh/ntpasswd)
 * [Super Grub2 Disk](http://www.supergrubdisk.org)
+* [Ultimate Boot CD](http://www.ultimatebootcd.com)
 
 #### Feedback
 

+ 1 - 0
docs/index.md

@@ -72,6 +72,7 @@ You'll need to make sure to have [DOWNLOAD_PROTO_HTTPS](https://github.com/ipxe/
 * [Partition Wizard](http://www.partitionwizard.com)
 * [Pogostick - Offline Windows Password and Registry Editor](http://pogostick.net/~pnh/ntpasswd)
 * [Super Grub2 Disk](http://www.supergrubdisk.org)
+* [Ultimate Boot CD](http://www.ultimatebootcd.com)
 
 ### Source Code
 

+ 7 - 0
src/utils.ipxe

@@ -14,6 +14,7 @@ item netbootcd ${space} NetbootCD.us
 item partition_wizard ${space} Partition Wizard
 item pogostick ${space} Pogostick - Offline Windows Password and Registry Editor
 item supergrub ${space} Super Grub2 Disk
+item ubcd ${space} Ultimate Boot CD (UBCD)
 item --gap netboot.xyz tools:
 item nbxyz-custom ${space} Set Github User [user: ${github_user}]
 item testdistro ${space} Test Distribution ISO
@@ -130,6 +131,12 @@ echo Attempting to chainload:
 chain --autofree https://raw.githubusercontent.com/${github_user}/netboot.xyz/${github_hash}/src/menu.ipxe || echo Unable to find branch... && sleep 5 && goto utils_exit
 goto utils_exit
 
+:ubcd
+kernel ${memdisk} iso raw
+initrd http://mirror.sysadminguide.net/ubcd/ubcd535.iso
+boot
+goto utils_exit
+
 :utils_exit
 clear menu
 exit 0