mirror of
https://github.com/ventoy/Ventoy.git
synced 2024-11-04 06:00:13 +00:00
19 lines
275 B
Bash
19 lines
275 B
Bash
#!/bin/bash
|
|
|
|
rm -rf ipxe-3fe683e
|
|
|
|
tar -xf ipxe_org_code/ipxe-3fe683e.tar.bz2 -C ./
|
|
|
|
rm -rf ./ipxe-3fe683e/src/bin
|
|
rm -rf ./ipxe-3fe683e/src/drivers
|
|
|
|
/bin/cp -a ipxe_mod_code/ipxe-3fe683e ./
|
|
|
|
cd ipxe-3fe683e/src
|
|
|
|
echo '========= build IPXE =========='
|
|
sh build.sh
|
|
|
|
cd ../../
|
|
|