bcm53xx: set compat version for DSA migration

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
Tianling Shen 2023-01-13 21:02:06 +08:00
parent 1e750f6fbb
commit aa451e4976
No known key found for this signature in database
GPG Key ID: 6850B6345C862176

View File

@ -0,0 +1,19 @@
#!/bin/sh
#
# Copyright (C) 2020 OpenWrt.org
#
. /lib/functions.sh
. /lib/functions/uci-defaults.sh
board_config_update
case "$(board_name)" in
*)
ucidef_set_compat_version "1.1"
;;
esac
board_config_flush
exit 0