f1adff82394def80c7888e4da3e8a83e84ca10c6
[open-ath9k-htc-firmware.git] / target_firmware / magpie_fw_dev / build / utility / athfw2lnx / athfw2lnx.c
1 #include <sys/stat.h>
2 #include <fcntl.h>
3 #include <stdint.h>
4
5 /* These names may vary but this is typical */
6 extern const uint32_t zcFwImage[];
7 extern const uint32_t zcFwImageSize;
8
9 int main()
10 {
11         uint32_t i;
12         for (i = 0; i < zcFwImageSize/4; i++)
13                 write(1, &zcFwImage[i], 4);
14 }