Browse Source

Fix default name when creating new wireless networks

RISCi_ATOM 4 years ago
parent
commit
5d20741f53

+ 1 - 1
package/luci/modules/luci-base/src/mkversion.sh

@@ -15,7 +15,7 @@ if pcall(dofile, "/etc/openwrt_release") and _G.DISTRIB_DESCRIPTION then
 		end
 	end
 else
-	distname    = "OpenWrt"
+	distname    = "libreCMC"
 	distversion = "Development Snapshot"
 end
 

+ 1 - 1
package/luci/modules/luci-mod-network/luasrc/controller/admin/network.lua

@@ -174,7 +174,7 @@ function wifi_add()
 	if dev then
 		local net = dev:add_wifinet({
 			mode       = "ap",
-			ssid       = "OpenWrt",
+			ssid       = "libreCMC",
 			encryption = "none",
 			disabled   = 1
 		})