Compare commits
No commits in common. "974bc33a89f8b483c75ea9ccc3735731cd4a7ec4" and "05ba9193795f9a8d4b1cdcdcf3ed1b67b790e9c3" have entirely different histories.
974bc33a89
...
05ba919379
3 changed files with 4 additions and 22 deletions
20
deploy.sh
20
deploy.sh
|
@ -26,8 +26,7 @@ else
|
||||||
bootPath="/media/boot";
|
bootPath="/media/boot";
|
||||||
dataPath="/media/data";
|
dataPath="/media/data";
|
||||||
setupLabel="winiso";
|
setupLabel="winiso";
|
||||||
intelNetworkArchive="./$buildDir/intelNetwork.zip";
|
networkDriverArchive="./$buildDir/network.zip";
|
||||||
marvellNetworkArchive="./$buildDir/marvellNetwork.zip";
|
|
||||||
gitArchive="$(realpath "./$buildDir/git.msi")";
|
gitArchive="$(realpath "./$buildDir/git.msi")";
|
||||||
pwshArchive="./$buildDir/pwsh.zip";
|
pwshArchive="./$buildDir/pwsh.zip";
|
||||||
editionField="Edition ID";
|
editionField="Edition ID";
|
||||||
|
@ -35,12 +34,7 @@ else
|
||||||
mkdir -p "$buildDir";
|
mkdir -p "$buildDir";
|
||||||
cp -r winfs/* "$overlayDir";
|
cp -r winfs/* "$overlayDir";
|
||||||
|
|
||||||
if [ ! -f "$intelNetworkArchive" ]
|
if [ ! -f "$networkDriverArchive" ]
|
||||||
then
|
|
||||||
curl -L "https://dlcdnets.asus.com/pub/ASUS/mb/04LAN/DRV_LAN_Intel_I211_UWD_TP_W10_64_VER12151841_20190306R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA" -o "$intelNetworkArchive";
|
|
||||||
fi;
|
|
||||||
|
|
||||||
if [ ! -f "$marvellNetworkArchive" ]
|
|
||||||
then
|
then
|
||||||
curl -L "https://dlcdnets.asus.com/pub/ASUS/mb/04LAN/DRV_LAN_Marvell_TP_TSD_W11_64_V3130_20211118R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA" -o "$networkDriverArchive";
|
curl -L "https://dlcdnets.asus.com/pub/ASUS/mb/04LAN/DRV_LAN_Marvell_TP_TSD_W11_64_V3130_20211118R.zip?model=ROG%20ZENITH%20EXTREME%20ALPHA" -o "$networkDriverArchive";
|
||||||
fi;
|
fi;
|
||||||
|
@ -56,15 +50,7 @@ else
|
||||||
fi;
|
fi;
|
||||||
|
|
||||||
mkdir -p "$overlayDir/drivers";
|
mkdir -p "$overlayDir/drivers";
|
||||||
tempDir="$(mktemp -d)";
|
unzip "$networkDriverArchive" -d "$overlayDir/drivers/Network";
|
||||||
unzip "$intelNetworkArchive" -d "$tempDir";
|
|
||||||
cp -r "$tempDir/x64" "$overlayDir/drivers/IntelNetwork";
|
|
||||||
rm -rf "$tempDir";
|
|
||||||
|
|
||||||
tempDir="$(mktemp -d)";
|
|
||||||
unzip "$marvellNetworkArchive" -d "$tempDir";
|
|
||||||
cp -r "$tempDir/x64" "$overlayDir/drivers/MarvellNetwork";
|
|
||||||
rm -rf "$tempDir";
|
|
||||||
|
|
||||||
mkdir -p "$overlayDir/git";
|
mkdir -p "$overlayDir/git";
|
||||||
pushd "$overlayDir/git" > /dev/null;
|
pushd "$overlayDir/git" > /dev/null;
|
||||||
|
|
|
@ -1,3 +0,0 @@
|
||||||
Get-ChildItem -Recurse X:\drivers "*.inf" | ForEach-Object {
|
|
||||||
drvload $_;
|
|
||||||
};
|
|
|
@ -1,6 +1,5 @@
|
||||||
@echo off
|
@echo off
|
||||||
wpeutil SetKeyboardLayout 0807:00000807
|
wpeutil SetKeyboardLayout 0807:00000807
|
||||||
echo Loading Drivers...
|
drvload X:\drivers\Network\x64\win10-win11\aqnic650.inf
|
||||||
X:\PowerShell\pwsh.exe -file "X:\Scripts\Drivers.ps1";
|
|
||||||
echo Launching Startup Script...
|
echo Launching Startup Script...
|
||||||
start X:\PowerShell\pwsh.exe -NoExit -ExecutionPolicy bypass -file "X:\Scripts\Startup.ps1"
|
start X:\PowerShell\pwsh.exe -NoExit -ExecutionPolicy bypass -file "X:\Scripts\Startup.ps1"
|
||||||
|
|
Loading…
Reference in a new issue