2
0

10-ath9k-eeprom 366 B

1234567891011121314151617181920
  1. #!/bin/sh
  2. [ -e /lib/firmware/$FIRMWARE ] && exit 0
  3. . /lib/functions/caldata.sh
  4. board=$(board_name)
  5. case "$FIRMWARE" in
  6. "ath9k-eeprom-pci-0000:01:00.0.bin")
  7. case $board in
  8. mikrotik,ltap-2hnd)
  9. caldata_sysfsload_from_file "/sys/firmware/mikrotik/hard_config/wlan_data" 0x5000 0x440
  10. ;;
  11. *)
  12. caldata_die "board $board is not supported yet"
  13. ;;
  14. esac
  15. ;;
  16. esac