1
1
mirror of https://git.shadowkat.net/izaya/OC-PsychOS2.git synced 2024-11-25 12:42:10 -05:00

Compare commits

...

2 Commits

Author SHA1 Message Date
XeonSquared
c78bb7b32c made unionfs read correctly 2019-11-20 21:08:31 +11:00
XeonSquared
6dfb34bb72 added minitel to the default init, updated the package script 2019-11-20 08:30:38 +11:00
3 changed files with 18 additions and 8 deletions

View File

@ -1,2 +1,3 @@
getty.lua
fsmanager.lua
minitel.lua

View File

@ -19,6 +19,10 @@ function unionfs.create(...)
end
return paths[1].."/"..path
end
function proxy.setLabel()
return false
end
function proxy.spaceUsed()
return fs.spaceUsed(paths[1])
@ -35,6 +39,9 @@ function unionfs.create(...)
function proxy.lastModified(path)
return fs.lastModified(realpath(path))
end
function proxy.getLabel()
return fs.getLabel(paths[1])
end
function proxy.exists(path)
return fs.exists(realpath(path))
@ -91,7 +98,9 @@ function unionfs.create(...)
if not fids[fid] then
return false, "file not open"
end
return fids[fid]:read(d)
local rb = fids[fid]:read(d)
if rb == "" then rb = nil end
return rb
end
function proxy.seek(fid,d)
if not fids[fid] then

View File

@ -1,9 +1,9 @@
#!/bin/bash
rm -r psychos
mkdir psychos
cp -r exec/ lib/ service/ psychos/
cp build/psychos.lua psychos/init.lua
cp default-init.txt psychos/init.txt
find psychos/ | cpio -oHbin > psychos.cpio
cd psychos
#rm -r psychos
#mkdir psychos
#cp -r exec/ lib/ service/ psychos/
#cp build/psychos.lua psychos/init.lua
#cp default-init.txt psychos/init.txt
#find psychos/ | cpio -oHbin > psychos.cpio
cd target
find | cpio -oHbin > ../psychos-tarbomb.cpio