mirror of https://github.com/OpenIPC/firmware.git
Remove ipctool from firmware
parent
bfd2ab2661
commit
0e3419d1c9
|
@ -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; }
|
||||
|
||||
|
|
|
@ -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))
|
||||
|
|
Loading…
Reference in New Issue