diff options
author | Daniel Golle <daniel@makrotopia.org> | 2019-10-19 11:32:25 +0200 |
---|---|---|
committer | Daniel Golle <daniel@makrotopia.org> | 2019-11-15 23:14:42 +0100 |
commit | 9740604eef38335b180a8e38aa88fc5bc8343bd7 (patch) | |
tree | cfddd2e3ec1850c5fb151c84c3e11650cba458d1 /applications/luci-app-lxc | |
parent | b3ef7a17eacc6ce2f2385bbb517c67906dd2a753 (diff) |
luci-app-lxc: remove obsolete note about enabling kernel features
Since commit openwrt/openwrt@fcb41decf6 ("config: enable some useful
features on !SMALL_FLASH devices") LXC related features are enabled by
default.
Hence remove note stating that a custom image is required for LXC.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
Diffstat (limited to 'applications/luci-app-lxc')
-rw-r--r-- | applications/luci-app-lxc/luasrc/model/cbi/lxc.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua b/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua index db7d19eb2..2987fced1 100644 --- a/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua +++ b/applications/luci-app-lxc/luasrc/model/cbi/lxc.lua @@ -15,8 +15,8 @@ Author: Petar Koretic <petar.koretic@sartura.hr> ]]-- m = Map("lxc", translate("LXC Containers"), - translate("<b>Please note:</b> For LXC Containers you need a custom OpenWrt image.<br />") - .. translate("The image should include at least support for 'kernel cgroups', 'kernel namespaces' and 'miscellaneous LXC related options' plus 'kmod-veth' for optional network support.")) + translate("<b>Please note:</b> LXC Containers require features not available on OpenWrt images for devices with small flash.<br />") + .. translate("Also you may want to install 'kmod-veth' for optional network support.")) m:section(SimpleSection).template = "lxc" s = m:section(TypedSection, "lxc", translate("Options")) |