lua-platform-info: add x86 support

This commit is contained in:
Matthias Schiffer 2014-09-09 17:30:45 +02:00
parent c1068fef42
commit 2a1c9f11b4
2 changed files with 28 additions and 1 deletions

View File

@ -12,7 +12,7 @@ define Package/lua-platform-info
SECTION:=libs
CATEGORY:=Libraries
TITLE:=Lua hardware platform information library
DEPENDS:=+lua @(TARGET_ar71xx_generic||TARGET_mpc85xx_generic)
DEPENDS:=+lua @(TARGET_ar71xx_generic||TARGET_mpc85xx_generic||TARGET_x86_generic)
endef
define Package/lua-platform-info/description

View File

@ -0,0 +1,27 @@
module 'platform_info'
-- The OpenWrt target
function get_target()
return 'x86'
end
-- The OpenWrt subtarget or nil
function get_subtarget()
return 'generic'
end
-- The board name
function get_board_name()
return nil
end
-- The model name
function get_model()
return nil
end
-- The image name for sysupgrades
function get_image_name()
return nil
end