mirror of
https://github.com/elua/elua.git
synced 2025-01-08 20:56:17 +08:00
16 lines
267 B
Lua
16 lines
267 B
Lua
-- Booatable eLua image build configuration
|
|
|
|
return {
|
|
cpu = 'i386',
|
|
components = {
|
|
sercon = { uart = 0, speed = 0 },
|
|
romfs = true,
|
|
shell = true,
|
|
term = { lines = 25, cols = 80 },
|
|
},
|
|
modules = {
|
|
generic = { 'pd', 'all_lua', 'term' }
|
|
}
|
|
}
|
|
|