From a1d1a4dd701ef1f2acb199701dc4e0c86dd4bf2f Mon Sep 17 00:00:00 2001 From: Antony Messerli Date: Sat, 6 Feb 2016 22:31:07 -0600 Subject: [PATCH] Adding Ultimate Boot CD --- README.md | 1 + docs/index.md | 1 + src/utils.ipxe | 7 +++++++ 3 files changed, 9 insertions(+) diff --git a/README.md b/README.md index c85670a9..a3f0559f 100644 --- a/README.md +++ b/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 diff --git a/docs/index.md b/docs/index.md index ea18a287..3e520549 100644 --- a/docs/index.md +++ b/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 diff --git a/src/utils.ipxe b/src/utils.ipxe index c513ebe3..bc7931a4 100644 --- a/src/utils.ipxe +++ b/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