From c05390b23ed29eefa9dccfa46cbb7dc681e24e97 Mon Sep 17 00:00:00 2001 From: torben Date: Fri, 13 Nov 2015 13:12:48 +0100 Subject: Rename tftp server. --- dev-tools/TFTP/.gitignore | 2 - dev-tools/TFTP/README.md | 16 ----- dev-tools/TFTP/ldlinux.c32 | Bin 122308 -> 0 bytes dev-tools/TFTP/libutil.c32 | Bin 24148 -> 0 bytes dev-tools/TFTP/memdisk | Bin 26140 -> 0 bytes dev-tools/TFTP/menu.c32 | Bin 26596 -> 0 bytes dev-tools/TFTP/pxeTest.pxe | Bin 46909 -> 0 bytes dev-tools/TFTP/pxelinux.0 | Bin 46909 -> 0 bytes dev-tools/TFTP/pxelinux.cfg/default | 16 ----- dev-tools/openslxTFTPRoot/ipxelinux.0 | 1 + dev-tools/openslxTFTPRoot/ipxelinux.0.janosch | Bin 0 -> 90478 bytes dev-tools/openslxTFTPRoot/openslx.png | Bin 0 -> 77561 bytes dev-tools/openslxTFTPRoot/pxechain.com | Bin 0 -> 998 bytes dev-tools/openslxTFTPRoot/pxelinux.cfg/default | 68 ++++++++++++++++++++++ dev-tools/openslxTFTPRoot/vesamenu.c32 | Bin 0 -> 155792 bytes dev-tools/tftp/ipxelinux.0 | 1 - dev-tools/tftp/ipxelinux.0.janosch | Bin 90478 -> 0 bytes dev-tools/tftp/openslx.png | Bin 77561 -> 0 bytes dev-tools/tftp/pxechain.com | Bin 998 -> 0 bytes dev-tools/tftp/pxelinux.cfg/default | 68 ---------------------- dev-tools/tftp/vesamenu.c32 | Bin 155792 -> 0 bytes dev-tools/virtualBoxTFTPRoot/.gitignore | 2 + dev-tools/virtualBoxTFTPRoot/README.md | 16 +++++ dev-tools/virtualBoxTFTPRoot/ldlinux.c32 | Bin 0 -> 122308 bytes dev-tools/virtualBoxTFTPRoot/libutil.c32 | Bin 0 -> 24148 bytes dev-tools/virtualBoxTFTPRoot/memdisk | Bin 0 -> 26140 bytes dev-tools/virtualBoxTFTPRoot/menu.c32 | Bin 0 -> 26596 bytes dev-tools/virtualBoxTFTPRoot/pxeTest.pxe | Bin 0 -> 46909 bytes dev-tools/virtualBoxTFTPRoot/pxelinux.0 | Bin 0 -> 46909 bytes dev-tools/virtualBoxTFTPRoot/pxelinux.cfg/default | 16 +++++ 30 files changed, 103 insertions(+), 103 deletions(-) delete mode 100644 dev-tools/TFTP/.gitignore delete mode 100644 dev-tools/TFTP/README.md delete mode 100755 dev-tools/TFTP/ldlinux.c32 delete mode 100755 dev-tools/TFTP/libutil.c32 delete mode 100644 dev-tools/TFTP/memdisk delete mode 100755 dev-tools/TFTP/menu.c32 delete mode 100644 dev-tools/TFTP/pxeTest.pxe delete mode 100644 dev-tools/TFTP/pxelinux.0 delete mode 100644 dev-tools/TFTP/pxelinux.cfg/default create mode 120000 dev-tools/openslxTFTPRoot/ipxelinux.0 create mode 100755 dev-tools/openslxTFTPRoot/ipxelinux.0.janosch create mode 100644 dev-tools/openslxTFTPRoot/openslx.png create mode 100644 dev-tools/openslxTFTPRoot/pxechain.com create mode 100644 dev-tools/openslxTFTPRoot/pxelinux.cfg/default create mode 100755 dev-tools/openslxTFTPRoot/vesamenu.c32 delete mode 120000 dev-tools/tftp/ipxelinux.0 delete mode 100755 dev-tools/tftp/ipxelinux.0.janosch delete mode 100644 dev-tools/tftp/openslx.png delete mode 100644 dev-tools/tftp/pxechain.com delete mode 100644 dev-tools/tftp/pxelinux.cfg/default delete mode 100755 dev-tools/tftp/vesamenu.c32 create mode 100644 dev-tools/virtualBoxTFTPRoot/.gitignore create mode 100644 dev-tools/virtualBoxTFTPRoot/README.md create mode 100755 dev-tools/virtualBoxTFTPRoot/ldlinux.c32 create mode 100755 dev-tools/virtualBoxTFTPRoot/libutil.c32 create mode 100644 dev-tools/virtualBoxTFTPRoot/memdisk create mode 100755 dev-tools/virtualBoxTFTPRoot/menu.c32 create mode 100644 dev-tools/virtualBoxTFTPRoot/pxeTest.pxe create mode 100644 dev-tools/virtualBoxTFTPRoot/pxelinux.0 create mode 100644 dev-tools/virtualBoxTFTPRoot/pxelinux.cfg/default (limited to 'dev-tools') diff --git a/dev-tools/TFTP/.gitignore b/dev-tools/TFTP/.gitignore deleted file mode 100644 index 22535dbd..00000000 --- a/dev-tools/TFTP/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -*.img -vmlinuz-linux diff --git a/dev-tools/TFTP/README.md b/dev-tools/TFTP/README.md deleted file mode 100644 index 63edb76e..00000000 --- a/dev-tools/TFTP/README.md +++ /dev/null @@ -1,16 +0,0 @@ -# Booting via pxe from virtualbox - -## create vm -the vm has to be named "pxeTest" (needs to match ./pxeTest.pxe) - -## configure vm -under settings->system add network boot - -## link/copy this directory into the virtualbox -config directory ->>> find ~ -name VirtualBox.xml -~/.VirtualBox/ ->>> ln -s . ~/.VirtualBox/ - -## copy initram and kernel ->>> cp /some/path/{initram.img,vmlinuz-linux} . diff --git a/dev-tools/TFTP/ldlinux.c32 b/dev-tools/TFTP/ldlinux.c32 deleted file mode 100755 index 0d8f2ef0..00000000 Binary files a/dev-tools/TFTP/ldlinux.c32 and /dev/null differ diff --git a/dev-tools/TFTP/libutil.c32 b/dev-tools/TFTP/libutil.c32 deleted file mode 100755 index 496fc303..00000000 Binary files a/dev-tools/TFTP/libutil.c32 and /dev/null differ diff --git a/dev-tools/TFTP/memdisk b/dev-tools/TFTP/memdisk deleted file mode 100644 index 3ada56c0..00000000 Binary files a/dev-tools/TFTP/memdisk and /dev/null differ diff --git a/dev-tools/TFTP/menu.c32 b/dev-tools/TFTP/menu.c32 deleted file mode 100755 index a584b00c..00000000 Binary files a/dev-tools/TFTP/menu.c32 and /dev/null differ diff --git a/dev-tools/TFTP/pxeTest.pxe b/dev-tools/TFTP/pxeTest.pxe deleted file mode 100644 index 61a38889..00000000 Binary files a/dev-tools/TFTP/pxeTest.pxe and /dev/null differ diff --git a/dev-tools/TFTP/pxelinux.0 b/dev-tools/TFTP/pxelinux.0 deleted file mode 100644 index 61a38889..00000000 Binary files a/dev-tools/TFTP/pxelinux.0 and /dev/null differ diff --git a/dev-tools/TFTP/pxelinux.cfg/default b/dev-tools/TFTP/pxelinux.cfg/default deleted file mode 100644 index 02fac4d6..00000000 --- a/dev-tools/TFTP/pxelinux.cfg/default +++ /dev/null @@ -1,16 +0,0 @@ -DEFAULT menu.c32 -TIMEOUT 300 -ALLOWOPTIONS 0 -PROMPT 0 - -MENU TITLE My PXE Boot Menu - -LABEL arch -MENU LABEL ^arch network boot -KERNEL /vmlinuz-linux -APPEND initrd=/initramfs-test.img root=PARTLABEL=system rw rootflags=subvol=root quiet loglevel=2 acpi_osi="!Windows 2012" rd.info rd.break ip=10.0.2.15:132.230.4.6:10.0.2.2:255.255.255.0 vconsole.font=latarcyrheb-sun16 vconsole.keymap=de slxsrv=132.230.4.2 slxbase=boot/openslx-kiosk vga=current -# BOOTIF=01-00-19-99-f7-fa-f4 - -LABEL BootNormal -MENU LABEL ^Boot Normal (HDD) -LOCALBOOT 0 diff --git a/dev-tools/openslxTFTPRoot/ipxelinux.0 b/dev-tools/openslxTFTPRoot/ipxelinux.0 new file mode 120000 index 00000000..44c8932d --- /dev/null +++ b/dev-tools/openslxTFTPRoot/ipxelinux.0 @@ -0,0 +1 @@ +ipxelinux.0.janosch \ No newline at end of file diff --git a/dev-tools/openslxTFTPRoot/ipxelinux.0.janosch b/dev-tools/openslxTFTPRoot/ipxelinux.0.janosch new file mode 100755 index 00000000..aba5e457 Binary files /dev/null and b/dev-tools/openslxTFTPRoot/ipxelinux.0.janosch differ diff --git a/dev-tools/openslxTFTPRoot/openslx.png b/dev-tools/openslxTFTPRoot/openslx.png new file mode 100644 index 00000000..1889edb7 Binary files /dev/null and b/dev-tools/openslxTFTPRoot/openslx.png differ diff --git a/dev-tools/openslxTFTPRoot/pxechain.com b/dev-tools/openslxTFTPRoot/pxechain.com new file mode 100644 index 00000000..8c4e0c5b Binary files /dev/null and b/dev-tools/openslxTFTPRoot/pxechain.com differ diff --git a/dev-tools/openslxTFTPRoot/pxelinux.cfg/default b/dev-tools/openslxTFTPRoot/pxelinux.cfg/default new file mode 100644 index 00000000..627db7a6 --- /dev/null +++ b/dev-tools/openslxTFTPRoot/pxelinux.cfg/default @@ -0,0 +1,68 @@ +DEFAULT vesamenu.c32 + +NOESCAPE 1 +PROMPT 0 +MENU MASTER PASSWD $6$ZF6CQg1WsYRol8VB$BPMPN32qsihjciRbCjCDCFC3tkHoRaZygpR/t7ihjT0YYW1vyrNOUazflIaDAZXbzaTfnDPIYqfFDYKtUdh620 + +MENU BACKGROUND openslx.png +MENU WIDTH 78 +MENU MARGIN 9 +MENU PASSWORDMARGIN 9 +MENU ROWS 10 +MENU TABMSGROW 16 +MENU CMDLINEROW 16 +MENU ENDROW -1 +MENU PASSWORDROW 16 +MENU TIMEOUTROW 20 +MENU HELPMSGROW 16 +MENU HELPMSGENDROW -1 +MENU HSHIFT 0 +MENU VSHIFT 7 + +menu color screen 37;40 #80000000 #00000000 std +menu color border 37;40 #40000000 #ff757575 std +menu color title 1;37;40 #ffff8b00 #ff757575 std +menu color unsel 37;40 #ffffffff #ff757575 std +menu color hotkey 1;37;40 #ffff8b00 #ff757575 std +menu color disabled 1;37;40 #ffff8b00 #ff757575 std +menu color tabmsg 37;40 #ffff8b00 #ff757575 std +menu color cmdmark 1;37;40 #ffff8b00 #ff757575 std +menu color cmdline 37;40 #fff0f0f0 #ff757575 std +menu color pwdborder 37;40 #40000000 #ff757575 std +menu color pwdheader 37;40 #ffff8b00 #ff757575 std +menu color pwdentry 37;40 #ffff8b00 #ff757575 std +menu color timeout_msg 37;40 #fff0f0f0 #ff757575 std +menu color timeout 1;37;40 #ffff8b00 #ff757575 std +menu color sel 7;37;40 #ff000000 #ffcccccc all +menu color hotsel 1;7;37;40 #ffff8b00 #ffcccccc all +menu color scrollbar 37;40 #40000000 #ff000000 std +menu color help 37;40 #ff1c2a33 #00000000 none +MENU MSGCOLOR #ff1c2a33 #00000000 none + +# !! The template is UTF-8, conversion to codepage 437 is done by the taskmanager !! + +TIMEOUT 100 +TOTALTIMEOUT 400 + +MENU TITLE bwLehrpool Bootmen +MENU AUTOBOOT Automatischer Boot in # Sekunde{,n} +MENU PASSPROMPT Passwort ben”tigt + +MENU CLEAR +ONTIMEOUT net + + +LABEL shutdown + MENU HIDE + KERNEL kernel-shutdown + APPEND initrd=initramfs-shutdown quiet + + +LABEL net + MENU LABEL ^Dracut TEST + KERNEL http://10.126.6.181:8080/vmlinuz-linux + INITRD http://10.126.6.181:8080/initramfs-test.img + APPEND root=PARTLABEL=system rw rootflags=subvol=root loglevel=2 acpi_osi="!Windows 2012" rd.info rd.break vconsole.font=latarcyrheb-sun16 vconsole.keymap=de slxsrv=132.230.4.2 slxbase=boot/openslx-kiosk vga=current + #APPEND root=PARTLABEL=system rw rootflags=subvol=root loglevel=2 acpi_osi="!Windows 2012" rd.info rd.break ip=132.230.4.133:132.230.4.2:132.230.4.254:255.255.255.0 vconsole.font=latarcyrheb-sun16 vconsole.keymap=de slxsrv=132.230.4.2 slxbase=boot/openslx-kiosk vga=current + IPAPPEND 3 + MENU DEFAULT diff --git a/dev-tools/openslxTFTPRoot/vesamenu.c32 b/dev-tools/openslxTFTPRoot/vesamenu.c32 new file mode 100755 index 00000000..06119cd2 Binary files /dev/null and b/dev-tools/openslxTFTPRoot/vesamenu.c32 differ diff --git a/dev-tools/tftp/ipxelinux.0 b/dev-tools/tftp/ipxelinux.0 deleted file mode 120000 index 44c8932d..00000000 --- a/dev-tools/tftp/ipxelinux.0 +++ /dev/null @@ -1 +0,0 @@ -ipxelinux.0.janosch \ No newline at end of file diff --git a/dev-tools/tftp/ipxelinux.0.janosch b/dev-tools/tftp/ipxelinux.0.janosch deleted file mode 100755 index aba5e457..00000000 Binary files a/dev-tools/tftp/ipxelinux.0.janosch and /dev/null differ diff --git a/dev-tools/tftp/openslx.png b/dev-tools/tftp/openslx.png deleted file mode 100644 index 1889edb7..00000000 Binary files a/dev-tools/tftp/openslx.png and /dev/null differ diff --git a/dev-tools/tftp/pxechain.com b/dev-tools/tftp/pxechain.com deleted file mode 100644 index 8c4e0c5b..00000000 Binary files a/dev-tools/tftp/pxechain.com and /dev/null differ diff --git a/dev-tools/tftp/pxelinux.cfg/default b/dev-tools/tftp/pxelinux.cfg/default deleted file mode 100644 index 627db7a6..00000000 --- a/dev-tools/tftp/pxelinux.cfg/default +++ /dev/null @@ -1,68 +0,0 @@ -DEFAULT vesamenu.c32 - -NOESCAPE 1 -PROMPT 0 -MENU MASTER PASSWD $6$ZF6CQg1WsYRol8VB$BPMPN32qsihjciRbCjCDCFC3tkHoRaZygpR/t7ihjT0YYW1vyrNOUazflIaDAZXbzaTfnDPIYqfFDYKtUdh620 - -MENU BACKGROUND openslx.png -MENU WIDTH 78 -MENU MARGIN 9 -MENU PASSWORDMARGIN 9 -MENU ROWS 10 -MENU TABMSGROW 16 -MENU CMDLINEROW 16 -MENU ENDROW -1 -MENU PASSWORDROW 16 -MENU TIMEOUTROW 20 -MENU HELPMSGROW 16 -MENU HELPMSGENDROW -1 -MENU HSHIFT 0 -MENU VSHIFT 7 - -menu color screen 37;40 #80000000 #00000000 std -menu color border 37;40 #40000000 #ff757575 std -menu color title 1;37;40 #ffff8b00 #ff757575 std -menu color unsel 37;40 #ffffffff #ff757575 std -menu color hotkey 1;37;40 #ffff8b00 #ff757575 std -menu color disabled 1;37;40 #ffff8b00 #ff757575 std -menu color tabmsg 37;40 #ffff8b00 #ff757575 std -menu color cmdmark 1;37;40 #ffff8b00 #ff757575 std -menu color cmdline 37;40 #fff0f0f0 #ff757575 std -menu color pwdborder 37;40 #40000000 #ff757575 std -menu color pwdheader 37;40 #ffff8b00 #ff757575 std -menu color pwdentry 37;40 #ffff8b00 #ff757575 std -menu color timeout_msg 37;40 #fff0f0f0 #ff757575 std -menu color timeout 1;37;40 #ffff8b00 #ff757575 std -menu color sel 7;37;40 #ff000000 #ffcccccc all -menu color hotsel 1;7;37;40 #ffff8b00 #ffcccccc all -menu color scrollbar 37;40 #40000000 #ff000000 std -menu color help 37;40 #ff1c2a33 #00000000 none -MENU MSGCOLOR #ff1c2a33 #00000000 none - -# !! The template is UTF-8, conversion to codepage 437 is done by the taskmanager !! - -TIMEOUT 100 -TOTALTIMEOUT 400 - -MENU TITLE bwLehrpool Bootmen -MENU AUTOBOOT Automatischer Boot in # Sekunde{,n} -MENU PASSPROMPT Passwort ben”tigt - -MENU CLEAR -ONTIMEOUT net - - -LABEL shutdown - MENU HIDE - KERNEL kernel-shutdown - APPEND initrd=initramfs-shutdown quiet - - -LABEL net - MENU LABEL ^Dracut TEST - KERNEL http://10.126.6.181:8080/vmlinuz-linux - INITRD http://10.126.6.181:8080/initramfs-test.img - APPEND root=PARTLABEL=system rw rootflags=subvol=root loglevel=2 acpi_osi="!Windows 2012" rd.info rd.break vconsole.font=latarcyrheb-sun16 vconsole.keymap=de slxsrv=132.230.4.2 slxbase=boot/openslx-kiosk vga=current - #APPEND root=PARTLABEL=system rw rootflags=subvol=root loglevel=2 acpi_osi="!Windows 2012" rd.info rd.break ip=132.230.4.133:132.230.4.2:132.230.4.254:255.255.255.0 vconsole.font=latarcyrheb-sun16 vconsole.keymap=de slxsrv=132.230.4.2 slxbase=boot/openslx-kiosk vga=current - IPAPPEND 3 - MENU DEFAULT diff --git a/dev-tools/tftp/vesamenu.c32 b/dev-tools/tftp/vesamenu.c32 deleted file mode 100755 index 06119cd2..00000000 Binary files a/dev-tools/tftp/vesamenu.c32 and /dev/null differ diff --git a/dev-tools/virtualBoxTFTPRoot/.gitignore b/dev-tools/virtualBoxTFTPRoot/.gitignore new file mode 100644 index 00000000..22535dbd --- /dev/null +++ b/dev-tools/virtualBoxTFTPRoot/.gitignore @@ -0,0 +1,2 @@ +*.img +vmlinuz-linux diff --git a/dev-tools/virtualBoxTFTPRoot/README.md b/dev-tools/virtualBoxTFTPRoot/README.md new file mode 100644 index 00000000..63edb76e --- /dev/null +++ b/dev-tools/virtualBoxTFTPRoot/README.md @@ -0,0 +1,16 @@ +# Booting via pxe from virtualbox + +## create vm +the vm has to be named "pxeTest" (needs to match ./pxeTest.pxe) + +## configure vm +under settings->system add network boot + +## link/copy this directory into the virtualbox +config directory +>>> find ~ -name VirtualBox.xml +~/.VirtualBox/ +>>> ln -s . ~/.VirtualBox/ + +## copy initram and kernel +>>> cp /some/path/{initram.img,vmlinuz-linux} . diff --git a/dev-tools/virtualBoxTFTPRoot/ldlinux.c32 b/dev-tools/virtualBoxTFTPRoot/ldlinux.c32 new file mode 100755 index 00000000..0d8f2ef0 Binary files /dev/null and b/dev-tools/virtualBoxTFTPRoot/ldlinux.c32 differ diff --git a/dev-tools/virtualBoxTFTPRoot/libutil.c32 b/dev-tools/virtualBoxTFTPRoot/libutil.c32 new file mode 100755 index 00000000..496fc303 Binary files /dev/null and b/dev-tools/virtualBoxTFTPRoot/libutil.c32 differ diff --git a/dev-tools/virtualBoxTFTPRoot/memdisk b/dev-tools/virtualBoxTFTPRoot/memdisk new file mode 100644 index 00000000..3ada56c0 Binary files /dev/null and b/dev-tools/virtualBoxTFTPRoot/memdisk differ diff --git a/dev-tools/virtualBoxTFTPRoot/menu.c32 b/dev-tools/virtualBoxTFTPRoot/menu.c32 new file mode 100755 index 00000000..a584b00c Binary files /dev/null and b/dev-tools/virtualBoxTFTPRoot/menu.c32 differ diff --git a/dev-tools/virtualBoxTFTPRoot/pxeTest.pxe b/dev-tools/virtualBoxTFTPRoot/pxeTest.pxe new file mode 100644 index 00000000..61a38889 Binary files /dev/null and b/dev-tools/virtualBoxTFTPRoot/pxeTest.pxe differ diff --git a/dev-tools/virtualBoxTFTPRoot/pxelinux.0 b/dev-tools/virtualBoxTFTPRoot/pxelinux.0 new file mode 100644 index 00000000..61a38889 Binary files /dev/null and b/dev-tools/virtualBoxTFTPRoot/pxelinux.0 differ diff --git a/dev-tools/virtualBoxTFTPRoot/pxelinux.cfg/default b/dev-tools/virtualBoxTFTPRoot/pxelinux.cfg/default new file mode 100644 index 00000000..02fac4d6 --- /dev/null +++ b/dev-tools/virtualBoxTFTPRoot/pxelinux.cfg/default @@ -0,0 +1,16 @@ +DEFAULT menu.c32 +TIMEOUT 300 +ALLOWOPTIONS 0 +PROMPT 0 + +MENU TITLE My PXE Boot Menu + +LABEL arch +MENU LABEL ^arch network boot +KERNEL /vmlinuz-linux +APPEND initrd=/initramfs-test.img root=PARTLABEL=system rw rootflags=subvol=root quiet loglevel=2 acpi_osi="!Windows 2012" rd.info rd.break ip=10.0.2.15:132.230.4.6:10.0.2.2:255.255.255.0 vconsole.font=latarcyrheb-sun16 vconsole.keymap=de slxsrv=132.230.4.2 slxbase=boot/openslx-kiosk vga=current +# BOOTIF=01-00-19-99-f7-fa-f4 + +LABEL BootNormal +MENU LABEL ^Boot Normal (HDD) +LOCALBOOT 0 -- cgit v1.2.3-55-g7522