openwrt: Keep SFP LuCI app snapshot-only
CI / Check, build and cache nixfiles (push) Failing after 7m19s
Update docs / update (push) Failing after 1m13s

This commit is contained in:
2026-08-23 21:26:28 +01:00
parent bf411e03e2
commit 57b94b64bb
+6 -2
View File
@@ -23,10 +23,14 @@ let
target = "realtek";
variant = "rtl930x";
profile = "xikestor_sks8300-8x";
packages = [ "luci" "ip-full" "ip-bridge" "ethtool-full" "luci-app-sfp-info" ];
packages = [ "luci" "ip-full" "ip-bridge" "ethtool-full" ];
};
in
{
openwrt-fergal = mkImage (fergal // { release = "snapshot"; });
openwrt-fergal = mkImage (fergal // {
release = "snapshot";
# The release feeds do not provide this LuCI app.
packages = fergal.packages ++ [ "luci-app-sfp-info" ];
});
openwrt-fergal-release = mkImage (fergal // { inherit release; });
}