forked from izaya/LuPPC
Compare commits
3 Commits
1035c8d5cb
...
a0a9d76484
Author | SHA1 | Date | |
---|---|---|---|
a0a9d76484 | |||
6de77feaae | |||
9cb94c6a6c |
1
.gitignore
vendored
1
.gitignore
vendored
@ -8,3 +8,4 @@
|
|||||||
/usereeprom.lua
|
/usereeprom.lua
|
||||||
/run
|
/run
|
||||||
/root*
|
/root*
|
||||||
|
/musl-cross-make
|
||||||
|
@ -42,6 +42,10 @@ case "$1" in
|
|||||||
TOOL=powerpc-linux-musl
|
TOOL=powerpc-linux-musl
|
||||||
OUT=$TOOL
|
OUT=$TOOL
|
||||||
;;
|
;;
|
||||||
|
i686 )
|
||||||
|
TOOL=i686-linux-musl
|
||||||
|
OUT=i686-linux-musl
|
||||||
|
;;
|
||||||
*) echo "Invalid target!" ; exit 1
|
*) echo "Invalid target!" ; exit 1
|
||||||
;;
|
;;
|
||||||
esac
|
esac
|
||||||
@ -60,7 +64,7 @@ cd dependencies
|
|||||||
|
|
||||||
if [ $2 = "libressl" ] || [ $# -lt 2 ]; then
|
if [ $2 = "libressl" ] || [ $# -lt 2 ]; then
|
||||||
|
|
||||||
git clone https://github.com/libressl-portable/portable.git libressl
|
git clone --depth 1 https://github.com/libressl-portable/portable.git libressl
|
||||||
cd libressl
|
cd libressl
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
CFLAGS="-fdata-sections -ffunction-sections" ./configure --host=$TOOL
|
CFLAGS="-fdata-sections -ffunction-sections" ./configure --host=$TOOL
|
||||||
|
@ -31,7 +31,11 @@ function boot.boot()
|
|||||||
gpu.setBackground(0x000000)
|
gpu.setBackground(0x000000)
|
||||||
|
|
||||||
native.sleep(4000000)
|
native.sleep(4000000)
|
||||||
|
if modules.computer and modules.computer.shutdown() then
|
||||||
|
modules.computer.shutdown()
|
||||||
|
else
|
||||||
os.exit(1)
|
os.exit(1)
|
||||||
|
end
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user