inital commit

This commit is contained in:
2024-05-01 02:49:51 -05:00
commit c53f997c9c
3 changed files with 147 additions and 0 deletions

23
boot.ipxe.cfg Normal file
View File

@ -0,0 +1,23 @@
#!ipxe
# Technolog Deployment Vars/Config
### Core Config ###
# Deployment Server IP (TFTP, HTTP must be run on here)
# set deploysvr x.x.x.x
set deploysvr 10.10.0.6
# TFTP Server Path
# This script will check if the PC is x64 or x86 and set path accordingly.
cpuid --ext 29 && set arch x64 || set arch x86
cpuid --ext 29 && set archl amd64 || set archl i386
set tftp-path tftp://${deploysvr}/Boot\${arch}
set tftp-path-efi tftp://${deploysvr}/Boot\${arch}uefi
# HTTP Server Path
set http-path http://${deploysvr}/
# Platform
# BIOS or UEFI, that is the question.
# This is stupid - "platform" exists. Using that.