ASR_BASE
Change-Id: Icf3719cc0afe3eeb3edc7fa80a2eb5199ca9dda1
diff --git a/external/subpack/utils/macchanger/patches/0001-fix-build-with-musl.patch b/external/subpack/utils/macchanger/patches/0001-fix-build-with-musl.patch
new file mode 100644
index 0000000..23fa560
--- /dev/null
+++ b/external/subpack/utils/macchanger/patches/0001-fix-build-with-musl.patch
@@ -0,0 +1,11 @@
+--- a/src/netinfo.c
++++ b/src/netinfo.c
+@@ -113,7 +113,7 @@ mc_net_info_get_permanent_mac (const net
+ epa->size = IFHWADDRLEN;
+
+ memcpy(&req, &(net->dev), sizeof(struct ifreq));
+- req.ifr_data = (caddr_t)epa;
++ req.ifr_data = (char *)epa;
+
+ if (ioctl(net->sock, SIOCETHTOOL, &req) < 0) {
+ perror ("[ERROR] Could not read permanent MAC");