1
0
mirror of https://github.com/Adorable-Catgirl/Zorya-NEO.git synced 2024-09-21 18:58:51 +10:00
Zorya-NEO/util/OpenOS/initramfs.d/99_bootstrap.lua
2020-06-17 00:22:48 -05:00

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"))