mirror of
https://github.com/Adorable-Catgirl/Zorya-NEO.git
synced 2024-11-14 22:38:07 +11:00
8 lines
204 B
Lua
8 lines
204 B
Lua
local arc = ...
|
|
local function readfile(path)
|
|
local f = io.open(path)
|
|
local dat = f:read("*a")
|
|
f:close()
|
|
return dat
|
|
end
|
|
arc.file("bootstrap.bin", "r-xr-xr-x", readfile("/etc/zorya-neo/bootstrap.bin")) |