#
# Copyright (C) 2025 OpenWrt.org
#

[ -e /etc/config/ubootenv ] && exit 0

touch /etc/config/ubootenv

. /lib/uboot-envtools.sh
. /lib/functions.sh

board=$(board_name)

case "$board" in
gemtek,w1700k-ubi)
	ubootenv_add_ubi_default
	;;
esac

config_load ubootenv
config_foreach ubootenv_add_app_config

exit 0
