08039e00523853c76c7e2d49eb18fd10717637f0
[openwrt/openwrt.git] / target / linux / ath79 / base-files / lib / upgrade / platform.sh
1 #
2 # Copyright (C) 2011 OpenWrt.org
3 #
4
5 PART_NAME=firmware
6 REQUIRE_IMAGE_METADATA=1
7
8 platform_check_image() {
9 return 0
10 }
11
12 platform_do_upgrade() {
13 local board=$(board_name)
14
15 case "$board" in
16 buffalo,bhr-4grv2)
17 PART_NAME="rootfs:kernel"
18 default_do_upgrade "$ARGV"
19 ;;
20 *)
21 default_do_upgrade "$ARGV"
22 ;;
23 esac
24 }