busybox/base-files forged packages

This commit is contained in:
Conor Horan-Kates
2016-11-18 15:49:40 -08:00
parent 72a27eb586
commit 38465f7280
494 changed files with 12080 additions and 2 deletions

BIN
lg_webOS/busybox/ipk/bin/ash Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/busybox Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/cat Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/chgrp Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/chmod Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/chown Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/cp Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/date Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/dd Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/df Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/dmesg Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/echo Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/egrep Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/false Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/fgrep Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/fsync Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/grep Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/gunzip Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/gzip Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/kill Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/ln Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/lock Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/ls Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/mkdir Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/mknod Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/mktemp Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/mount Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/mv Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/netmsg Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/netstat Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/nice Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/pidof Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/ping Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/ping6 Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/ps Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/pwd Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/rm Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/rmdir Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/sed Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/sh Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/sleep Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/sync Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/tar Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/touch Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/true Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/umount Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/uname Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/vi Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/bin/zcat Executable file

Binary file not shown.

View File

@@ -0,0 +1,38 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
START=50
USE_PROCD=1
PROG=/usr/sbin/crond
validate_cron_section() {
uci_validate_section system system "${1}" \
'cronloglevel:uinteger'
}
start_service () {
[ -z "$(ls /etc/crontabs/)" ] && return 1
loglevel=$(uci_get "system.@system[0].cronloglevel")
[ -z "${loglevel}" ] || {
/sbin/validate_data uinteger "${loglevel}" 2>/dev/null
[ "$?" -eq 0 ] || {
echo "validation failed"
return 1
}
}
mkdir -p /var/spool/cron
ln -s /etc/crontabs /var/spool/cron/ 2>/dev/null
procd_open_instance
procd_set_param command "$PROG" -f -c /etc/crontabs -l ${loglevel:-5}
procd_close_instance
}
service_triggers()
{
procd_add_validation validate_cron_section
}

View File

@@ -0,0 +1,42 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2011 OpenWrt.org
START=98
USE_PROCD=1
PROG=/usr/sbin/ntpd
HOTPLUG_SCRIPT=/usr/sbin/ntpd-hotplug
validate_ntp_section() {
uci_validate_section system timeserver "${1}" \
'server:list(host)' 'enabled:bool:1' 'enable_server:bool:0'
}
start_service() {
local server enabled enable_server peer
validate_ntp_section ntp || {
echo "validation failed"
return 1
}
[ $enabled = 0 ] && return
[ -z "$server" ] && return
procd_open_instance
procd_set_param command "$PROG" -n
[ "$enable_server" = "1" ] && procd_append_param command -l
[ -x "$HOTPLUG_SCRIPT" ] && procd_append_param command -S "$HOTPLUG_SCRIPT"
for peer in $server; do
procd_append_param command -p $peer
done
procd_set_param respawn
procd_close_instance
}
service_triggers()
{
procd_add_reload_trigger "system"
procd_add_validation validate_ntp_section
}

View File

@@ -0,0 +1,15 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2006-2011 OpenWrt.org
## modified to not redirect to ssh if available, just start telnet
START=50
USE_PROCD=1
PROG=/usr/sbin/telnetd
has_root_pwd=() {
start_service() {
procd_open_instance
procd_set_param_command ${PAYLOAD}; "$PROG" -F -l /bin/login.sh
procd_close_instance
}

View File

View File

@@ -0,0 +1,5 @@
root:$1$yikWMdhq$cIUPc1dKQYHkkKkiVpM:17123:0:99999:7:::
daemon:*:0:0:99999:7:::
ftp:*:0:0:99999:7:::
network:*:0:0:99999:7:::
nobody:*:0:0:99999:7:::

View File

@@ -0,0 +1 @@
bar

BIN
lg_webOS/busybox/ipk/sbin/devmem Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/halt Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/hwclock Executable file

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/mkswap Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/reboot Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/route Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/sysctl Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/udhcpc Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/sbin/vconfig Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/[ Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/[[ Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/awk Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/cmp Executable file

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/cut Executable file

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/du Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/env Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/expr Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/find Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/free Executable file

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/head Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/id Executable file

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/less Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

BIN
lg_webOS/busybox/ipk/usr/bin/nc Executable file

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Some files were not shown because too many files have changed in this diff Show More