Remove ipctool from firmware

pull/139/head
Igor Zalatov (from Citadel PC) 2022-01-03 19:21:47 +03:00
parent bfd2ab2661
commit 0e3419d1c9
2 changed files with 8 additions and 2 deletions

View File

@ -20,8 +20,8 @@ export EDITOR='/bin/vi'
[ -x /usr/bin/arp ] || arp() { cat /proc/net/arp; }
ipctool_install() { curl -s -L -o /tmp/ipctool2 https://github.com/OpenIPC/ipctool/releases/download/latest/ipctool && \
chmod +x /tmp/ipctool2 && echo -e "\n\e[1;36mipctool installed\e[0m\n\n"; }
ipctool_install() { curl -s -L -o /tmp/ipctool https://github.com/OpenIPC/ipctool/releases/download/latest/ipctool && \
chmod +x /tmp/ipctool && echo -e "\n\e[1;36mipctool installed\e[0m\n\n"; }
majestic_changes() { diff -L "Majestic changes" -U 3 /rom/etc/majestic.yaml /etc/majestic.yaml; }

View File

@ -13,4 +13,10 @@ IPCTOOL_CONF_OPTS += -DBUILD_SHARED_LIBS=ON -DCMAKE_BUILD_TYPE=Release -DSKIP_VE
IPCTOOL_MAKE_OPTS += VERBOSE=1
define IPCTOOL_INSTALL_TARGET_CMDS
$(INSTALL) -m 755 -d $(TARGET_DIR)/usr/bin
$(INSTALL) -m 755 -t $(TARGET_DIR)/usr/bin $(@D)/ipcinfo
endef
$(eval $(cmake-package))