Compare commits

..

No commits in common. "974bc33a89f8b483c75ea9ccc3735731cd4a7ec4" and "05ba9193795f9a8d4b1cdcdcf3ed1b67b790e9c3" have entirely different histories.

3 changed files with 4 additions and 22 deletions

View file

@ -26,8 +26,7 @@ else
bootPath="/media/boot";
dataPath="/media/data";
setupLabel="winiso";
intelNetworkArchive="./$buildDir/intelNetwork.zip";
marvellNetworkArchive="./$buildDir/marvellNetwork.zip";
networkDriverArchive="./$buildDir/network.zip";
gitArchive="$(realpath "./$buildDir/git.msi")";
pwshArchive="./$buildDir/pwsh.zip";
editionField="Edition ID";
@ -35,12 +34,7 @@ else
mkdir -p "$buildDir";
cp -r winfs/* "$overlayDir";
if [ ! -f "$intelNetworkArchive" ]
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" ]
if [ ! -f "$networkDriverArchive" ]
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";
fi;
@ -56,15 +50,7 @@ else
fi;
mkdir -p "$overlayDir/drivers";
tempDir="$(mktemp -d)";
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";
unzip "$networkDriverArchive" -d "$overlayDir/drivers/Network";
mkdir -p "$overlayDir/git";
pushd "$overlayDir/git" > /dev/null;

View file

@ -1,3 +0,0 @@
Get-ChildItem -Recurse X:\drivers "*.inf" | ForEach-Object {
drvload $_;
};

View file

@ -1,6 +1,5 @@
@echo off
wpeutil SetKeyboardLayout 0807:00000807
echo Loading Drivers...
X:\PowerShell\pwsh.exe -file "X:\Scripts\Drivers.ps1";
drvload X:\drivers\Network\x64\win10-win11\aqnic650.inf
echo Launching Startup Script...
start X:\PowerShell\pwsh.exe -NoExit -ExecutionPolicy bypass -file "X:\Scripts\Startup.ps1"