update to gitignore
This commit is contained in:
parent
42b5d9e09e
commit
29753b1c27
BIN
.vs/slnx.sqlite
Normal file
BIN
.vs/slnx.sqlite
Normal file
Binary file not shown.
11
README.md
11
README.md
@ -9,7 +9,7 @@ originally written by saturnu, and released on the
|
|||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
If you want to build the menu, you need an n64 toolchain. When using windows 10, installation is totally automated through a script.
|
If you want to build the menu, you need an n64 toolchain. When using windows 10or Ubuntu, installation is totally automated through a script.
|
||||||
|
|
||||||
### Dependencies (installed automatically)
|
### Dependencies (installed automatically)
|
||||||
* Windows 10 (Aniversary Update or above) / Ubuntu 16.04 (or above)
|
* Windows 10 (Aniversary Update or above) / Ubuntu 16.04 (or above)
|
||||||
@ -24,8 +24,8 @@ If you want to build the menu, you need an n64 toolchain. When using windows 10,
|
|||||||
|
|
||||||
Clone this `Altra64` repo to a directory of your choice.
|
Clone this `Altra64` repo to a directory of your choice.
|
||||||
|
|
||||||
On Windows 10, browse to the tools directory and double click on setup-wsfl.cmd
|
On Windows 10, browse to the tools directory and double click on ```setup-wsfl.cmd```
|
||||||
On Ubuntu, browse to the tools directory and run the command ```chmod +x ./setup-linux.sh;source ./setup-linux.sh```
|
On Ubuntu, browse to the tools directory and run the command ```$ chmod +x ./setup-linux.sh;source ./setup-linux.sh```
|
||||||
|
|
||||||
|
|
||||||
### Build `Altra64`
|
### Build `Altra64`
|
||||||
@ -41,6 +41,7 @@ on linux
|
|||||||
```
|
```
|
||||||
$ make
|
$ make
|
||||||
```
|
```
|
||||||
|
If it all worked, you will find `OS64.v64` in the `Altra64` bin directory.
|
||||||
|
|
||||||
### Debug Build `Altra64`
|
### Debug Build `Altra64`
|
||||||
To build the debug version of the Rom
|
To build the debug version of the Rom
|
||||||
@ -54,6 +55,8 @@ on linux
|
|||||||
```
|
```
|
||||||
$ make debug
|
$ make debug
|
||||||
```
|
```
|
||||||
|
If it all worked, you will find `OS64.v64` in the `Altra64` bin directory.
|
||||||
|
|
||||||
|
|
||||||
### Clean `Altra64`
|
### Clean `Altra64`
|
||||||
Finally, we can clean the build objects from the project
|
Finally, we can clean the build objects from the project
|
||||||
@ -68,4 +71,4 @@ on linux
|
|||||||
$ make clean
|
$ make clean
|
||||||
```
|
```
|
||||||
|
|
||||||
If it all worked, you will find `OS64.v64` in the `Altra64` bin directory.
|
Enjoy!
|
||||||
|
51
tools/reset-wsfl.cmd
Normal file
51
tools/reset-wsfl.cmd
Normal file
@ -0,0 +1,51 @@
|
|||||||
|
::::::::::::::::::::::::::::::::::::::::::::
|
||||||
|
:: Elevate.cmd - Version 2
|
||||||
|
:: Automatically check & get admin rights
|
||||||
|
::::::::::::::::::::::::::::::::::::::::::::
|
||||||
|
@echo off
|
||||||
|
CLS
|
||||||
|
ECHO.
|
||||||
|
ECHO =============================
|
||||||
|
ECHO Running Admin shell
|
||||||
|
ECHO =============================
|
||||||
|
|
||||||
|
:init
|
||||||
|
setlocal DisableDelayedExpansion
|
||||||
|
set "batchPath=%~0"
|
||||||
|
for %%k in (%0) do set batchName=%%~nk
|
||||||
|
set "vbsGetPrivileges=%temp%\OEgetPriv_%batchName%.vbs"
|
||||||
|
setlocal EnableDelayedExpansion
|
||||||
|
|
||||||
|
:checkPrivileges
|
||||||
|
NET FILE 1>NUL 2>NUL
|
||||||
|
if '%errorlevel%' == '0' ( goto gotPrivileges ) else ( goto getPrivileges )
|
||||||
|
|
||||||
|
:getPrivileges
|
||||||
|
if '%1'=='ELEV' (echo ELEV & shift /1 & goto gotPrivileges)
|
||||||
|
ECHO.
|
||||||
|
ECHO **************************************
|
||||||
|
ECHO Invoking UAC for Privilege Escalation
|
||||||
|
ECHO **************************************
|
||||||
|
|
||||||
|
ECHO Set UAC = CreateObject^("Shell.Application"^) > "%vbsGetPrivileges%"
|
||||||
|
ECHO args = "ELEV " >> "%vbsGetPrivileges%"
|
||||||
|
ECHO For Each strArg in WScript.Arguments >> "%vbsGetPrivileges%"
|
||||||
|
ECHO args = args ^& strArg ^& " " >> "%vbsGetPrivileges%"
|
||||||
|
ECHO Next >> "%vbsGetPrivileges%"
|
||||||
|
ECHO UAC.ShellExecute "!batchPath!", args, "", "runas", 1 >> "%vbsGetPrivileges%"
|
||||||
|
"%SystemRoot%\System32\WScript.exe" "%vbsGetPrivileges%" %*
|
||||||
|
exit /B
|
||||||
|
|
||||||
|
:gotPrivileges
|
||||||
|
setlocal & pushd .
|
||||||
|
cd /d %~dp0
|
||||||
|
if '%1'=='ELEV' (del "%vbsGetPrivileges%" 1>nul 2>nul & shift /1)
|
||||||
|
|
||||||
|
::::::::::::::::::::::::::::
|
||||||
|
::START
|
||||||
|
::::::::::::::::::::::::::::
|
||||||
|
@echo on
|
||||||
|
|
||||||
|
lxrun /uninstall /full
|
||||||
|
|
||||||
|
pause
|
Loading…
Reference in New Issue
Block a user