├── .gitattributes ├── .gitignore ├── META-INF └── com │ └── google │ └── android │ ├── update-binary │ └── updater-script ├── Makefile ├── README.md ├── _module.prop ├── common ├── post-fs-data.sh ├── service.sh └── system.prop ├── config.sh ├── license.txt └── system └── xbin └── symbol-links.tar /.gitattributes: -------------------------------------------------------------------------------- 1 | # Declare files that will always have LF line endings on checkout. 2 | META-INF/** text eol=lf 3 | common/** text eol=lf 4 | module.prop text eol=lf 5 | changelog.txt text eol=lf 6 | 7 | # Denote all files that are truly binary and should not be modified. 8 | system/** binary 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /META-INF/com/google/android/update-binary: -------------------------------------------------------------------------------- 1 | #!/sbin/sh 2 | ########################################################################################## 3 | # 4 | # Magisk Module Template Install Script 5 | # by topjohnwu 6 | # 7 | ########################################################################################## 8 | 9 | # Detect whether in boot mode 10 | ps | grep zygote | grep -v grep >/dev/null && BOOTMODE=true || BOOTMODE=false 11 | $BOOTMODE || ps -A 2>/dev/null | grep zygote | grep -v grep >/dev/null && BOOTMODE=true 12 | 13 | # This path should work in any cases 14 | TMPDIR=/dev/tmp 15 | MOUNTPATH=/magisk 16 | IMG=/data/magisk.img 17 | if $BOOTMODE; then 18 | MOUNTPATH=/dev/magisk_merge 19 | IMG=/data/magisk_merge.img 20 | fi 21 | INSTALLER=$TMPDIR/install 22 | MAGISKBIN=/data/magisk 23 | 24 | # Default permissions 25 | umask 022 26 | 27 | ########################################################################################## 28 | # Flashable update-binary preparation 29 | ########################################################################################## 30 | 31 | OUTFD=$2 32 | ZIP=$3 33 | 34 | ui_print() { 35 | if $BOOTMODE; then 36 | echo "$1" 37 | else 38 | echo -n -e "ui_print $1\n" >> /proc/self/fd/$OUTFD 39 | echo -n -e "ui_print\n" >> /proc/self/fd/$OUTFD 40 | fi 41 | } 42 | 43 | require_new_magisk() { 44 | ui_print "***********************************" 45 | ui_print "! $MAGISKBIN isn't setup properly!" 46 | ui_print "! Please install Magisk v13.1+!" 47 | ui_print "***********************************" 48 | exit 1 49 | } 50 | 51 | # Mount /data to access MAGISKBIN 52 | mount /data 2>/dev/null 53 | 54 | # MAGISKBIN must exist, binaries and utility functions are placed there 55 | [ -d $MAGISKBIN -a -f $MAGISKBIN/magisk -a -f $MAGISKBIN/util_functions.sh ] || require_new_magisk 56 | 57 | # Load utility fuctions 58 | . $MAGISKBIN/util_functions.sh 59 | [ ! -z $SCRIPT_VERSION -a $SCRIPT_VERSION -ge 1310 ] || require_new_magisk 60 | get_outfd 61 | 62 | rm -rf $TMPDIR 2>/dev/null 63 | mkdir -p $INSTALLER 64 | unzip -o "$ZIP" config.sh -d $INSTALLER 2>/dev/null 65 | 66 | ########################################################################################## 67 | # Prepare 68 | ########################################################################################## 69 | 70 | [ ! -f $INSTALLER/config.sh ] && abort "! Unable to extract zip file!" 71 | 72 | . $INSTALLER/config.sh 73 | 74 | MODPATH=$MOUNTPATH/$MODID 75 | 76 | # Print mod name 77 | print_modname 78 | 79 | # Please leave this message in your flashable zip for credits :) 80 | ui_print "******************************" 81 | ui_print "Powered by Magisk (@topjohnwu)" 82 | ui_print "******************************" 83 | 84 | ui_print "- Mounting /system, /vendor, /data, /cache" 85 | mount -o ro /system 2>/dev/null 86 | mount -o ro /vendor 2>/dev/null 87 | mount /data 2>/dev/null 88 | mount /cache 2>/dev/null 89 | 90 | [ ! -f /data/magisk.img ] && abort "! Magisk is not installed" 91 | $BOOTMODE && ! is_mounted /magisk && abort "! Magisk is not activated!" 92 | [ ! -f /system/build.prop ] && abort "! /system could not be mounted!" 93 | 94 | # Detect version and architecture 95 | api_level_arch_detect 96 | 97 | # You can get the Android API version from $API, the CPU architecture from $ARCH 98 | # Useful if you are creating Android version / platform dependent mods 99 | 100 | ########################################################################################## 101 | # Install 102 | ########################################################################################## 103 | 104 | ui_print "- Extracting module files" 105 | unzip -o "$ZIP" -d $INSTALLER 2>/dev/null 106 | request_size_check $INSTALLER 107 | 108 | # We're going to use magisk binary now, require some recovery fixes 109 | $BOOTMODE || recovery_actions 110 | 111 | if [ -f "$IMG" ]; then 112 | ui_print "- $IMG detected!" 113 | image_size_check $IMG 114 | if [ "$reqSizeM" -gt "$curFreeM" ]; then 115 | newSizeM=$(((reqSizeM + curUsedM) / 32 * 32 + 64)) 116 | ui_print "- Resizing $IMG to ${newSizeM}M" 117 | $MAGISKBIN/magisk --resizeimg $IMG $newSizeM 118 | fi 119 | else 120 | newSizeM=$((reqSizeM / 32 * 32 + 64)); 121 | ui_print "- Creating $IMG with size ${newSizeM}M" 122 | $MAGISKBIN/magisk --createimg $IMG $newSizeM 123 | fi 124 | 125 | ui_print "- Mounting $IMG to $MOUNTPATH" 126 | MAGISKLOOP=`$MAGISKBIN/magisk --mountimg $IMG $MOUNTPATH` 127 | is_mounted $MOUNTPATH || abort"! $IMG mount failed..." 128 | 129 | # Create mod paths 130 | rm -rf $MODPATH 2>/dev/null 131 | mkdir -p $MODPATH 132 | 133 | # Copy files 134 | ui_print "- Copying files" 135 | mv $INSTALLER/system $MODPATH/system 136 | 137 | # Handle replace folders 138 | for TARGET in $REPLACE; do 139 | mktouch $MODPATH$TARGET/.replace 140 | done 141 | 142 | # Auto Mount 143 | $AUTOMOUNT && touch $MODPATH/auto_mount 144 | 145 | # prop files 146 | $PROPFILE && cp -af $INSTALLER/common/system.prop $MODPATH/system.prop 147 | 148 | # Module info 149 | cp -af $INSTALLER/module.prop $MODPATH/module.prop 150 | if $BOOTMODE; then 151 | # Update info for Magisk Manager 152 | mktouch /magisk/$MODID/update 153 | cp -af $INSTALLER/module.prop /magisk/$MODID/module.prop 154 | fi 155 | 156 | # post-fs-data mode scripts 157 | $POSTFSDATA && cp -af $INSTALLER/common/post-fs-data.sh $MODPATH/post-fs-data.sh 158 | 159 | # service mode scripts 160 | $LATESTARTSERVICE && cp -af $INSTALLER/common/service.sh $MODPATH/service.sh 161 | 162 | ui_print "- Setting permissions" 163 | set_permissions 164 | 165 | ########################################################################################## 166 | # Finalizing 167 | ########################################################################################## 168 | 169 | $MAGISKBIN/magisk --umountimg $MOUNTPATH $MAGISKLOOP 170 | rmdir $MOUNTPATH 171 | 172 | # Shrink the image if possible 173 | image_size_check $IMG 174 | newSizeM=$((curUsedM / 32 * 32 + 64)) 175 | if [ $curSizeM -gt $newSizeM ]; then 176 | ui_print "- Shrinking $IMG to ${newSizeM}M" 177 | $MAGISKBIN/magisk --resizeimg $IMG $newSizeM 178 | fi 179 | 180 | $BOOTMODE || recovery_cleanup 181 | 182 | ui_print "- Done" 183 | exit 0 184 | -------------------------------------------------------------------------------- /META-INF/com/google/android/updater-script: -------------------------------------------------------------------------------- 1 | #MAGISK 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | TARGET_ARCHITECTURES=armv6l i686 x86_64 2 | DOWNLOAD_URL_PREFIX="https://www.busybox.net/downloads/binaries/1.26.2-defconfig-multiarch/" 3 | 4 | BUILD_PREFIX=build 5 | DOWNLOAD_DIR=$(BUILD_PREFIX)/download 6 | OUTPUT_DIR=$(BUILD_PREFIX)/out 7 | 8 | STATIC_FILE_LIST=META-INF/com/google/android/update-binary META-INF/com/google/android/updater-script common/post-fs-data.sh common/service.sh common/system.prop config.sh system/xbin/symbol-links.tar 9 | 10 | $(DOWNLOAD_DIR)/%: 11 | mkdir -p $(DOWNLOAD_DIR) 12 | wget -c $(DOWNLOAD_URL_PREFIX)/$* -O $@ 13 | 14 | $(OUTPUT_DIR)/%.zip: $(DOWNLOAD_DIR)/% $(STATIC_FILE_LIST) _module.prop 15 | mkdir -p $(OUTPUT_DIR) 16 | sed "s/armv6l/$(patsubst busybox-%,%,$*)/g" _module.prop > module.prop 17 | zip -u $@ module.prop 18 | rm module.prop 19 | for f in $(STATIC_FILE_LIST); do \ 20 | zip -u $@ $$f; \ 21 | done 22 | install -Dm755 $(DOWNLOAD_DIR)/$* system/xbin/busybox 23 | zip -u $@ system/xbin/busybox 24 | rm system/xbin/busybox 25 | 26 | .PHONY: busybox-% clean-out clean-download clean all 27 | 28 | .PRECIOUS: $(DOWNLOAD_DIR)/% $(OUTPUT_DIR)/%.zip 29 | 30 | busybox-%: $(OUTPUT_DIR)/busybox-%.zip 31 | @true 32 | 33 | all: $(patsubst %,busybox-%,$(TARGET_ARCHITECTURES)) 34 | 35 | clean-out: 36 | -rm -r build/out 37 | 38 | clean-download: 39 | -rm -r build/download 40 | 41 | clean: clean-out clean-download 42 | 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Magisk Busybox 2 | Add it back as a module after Magisk just removed busybox option. 3 | 4 | ## Installation 5 | 1. Download your platform version from https://github.com/haruue/MagiskBusybox/releases/latest 6 | 2. Magisk Manager -> Module -> `+` button -> choose downloaded file 7 | 3. Reboot your device 8 | 4. Enjoy it 9 | 10 | ## Build & Customize 11 | + You can build this module package with its default config by simply `make`, then you can find Magisk module package in `build/out/busybox-*.zip` 12 | + You can modify Makefile and add architectures you want in `TARGET_ARCHITECTURES`, or customize `DOWNLOAD_URL_PREFIX` 13 | + If you prefer add your customize busybox directly rather than download it, put your own busybox binary to `build/download` with name like `busybox-`, then build it by `make busybox-` 14 | + If you want to add some other files to package, don't forget to add them to `STATIC_FILE_LIST` 15 | + If you want to modify symbol link to busybox, modify `system/xbin/symbol-links.tar` 16 | 17 | ## License 18 | GPLv2 19 | 20 | -------------------------------------------------------------------------------- /_module.prop: -------------------------------------------------------------------------------- 1 | id=busybox 2 | name=Busybox 3 | version=1.26.2-defconfig-armv6l 4 | versionCode=1 5 | author=haruue 6 | description=Busybox https://www.busybox.net, ported to Magisk by haruue 7 | template=4 8 | -------------------------------------------------------------------------------- /common/post-fs-data.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | # Please don't hardcode /magisk/modname/... ; instead, please use $MODDIR/... 3 | # This will make your scripts compatible even if Magisk change its mount point in the future 4 | MODDIR=${0%/*} 5 | MIRROR_DIR="/dev/magisk/mirror" 6 | 7 | # This script will be executed in post-fs-data mode 8 | 9 | # More info in the main Magisk thread 10 | cd $MODDIR/system/xbin 11 | 12 | # Merge origin files in /system/xbin 13 | cp -a $MIRROR_DIR/system/xbin/* . 14 | 15 | # Create symbol links for busybox 16 | tar xvf symbol-links.tar 17 | rm symbol-links.tar 18 | 19 | -------------------------------------------------------------------------------- /common/service.sh: -------------------------------------------------------------------------------- 1 | #!/system/bin/sh 2 | # Please don't hardcode /magisk/modname/... ; instead, please use $MODDIR/... 3 | # This will make your scripts compatible even if Magisk change its mount point in the future 4 | MODDIR=${0%/*} 5 | 6 | # This script will be executed in late_start service mode 7 | # More info in the main Magisk thread 8 | -------------------------------------------------------------------------------- /common/system.prop: -------------------------------------------------------------------------------- 1 | # This file will be read by resetprop 2 | # Example: Change dpi 3 | # ro.sf.lcd_density=320 4 | -------------------------------------------------------------------------------- /config.sh: -------------------------------------------------------------------------------- 1 | ########################################################################################## 2 | # 3 | # Magisk Module Template Config Script 4 | # by topjohnwu 5 | # 6 | ########################################################################################## 7 | ########################################################################################## 8 | # 9 | # Instructions: 10 | # 11 | # 1. Place your files into system folder (delete the placeholder file) 12 | # 2. Fill in your module's info into module.prop 13 | # 3. Configure the settings in this file (common/config.sh) 14 | # 4. For advanced features, add shell commands into the script files under common: 15 | # post-fs-data.sh, service.sh 16 | # 5. For changing props, add your additional/modified props into common/system.prop 17 | # 18 | ########################################################################################## 19 | 20 | ########################################################################################## 21 | # Defines 22 | ########################################################################################## 23 | 24 | # NOTE: This part has to be adjusted to fit your own needs 25 | 26 | # This will be the folder name under /magisk 27 | # This should also be the same as the id in your module.prop to prevent confusion 28 | MODID=busybox 29 | 30 | # Set to true if you need to enable Magic Mount 31 | # Most mods would like it to be enabled 32 | AUTOMOUNT=true 33 | 34 | # Set to true if you need to load system.prop 35 | PROPFILE=false 36 | 37 | # Set to true if you need post-fs-data script 38 | POSTFSDATA=true 39 | 40 | # Set to true if you need late_start service script 41 | LATESTARTSERVICE=false 42 | 43 | ########################################################################################## 44 | # Installation Message 45 | ########################################################################################## 46 | 47 | # Set what you want to show when installing your mod 48 | 49 | print_modname() { 50 | ui_print "*******************************" 51 | ui_print " Busybox " 52 | ui_print "*******************************" 53 | } 54 | 55 | ########################################################################################## 56 | # Replace list 57 | ########################################################################################## 58 | 59 | # List all directories you want to directly replace in the system 60 | # By default Magisk will merge your files with the original system 61 | # Directories listed here however, will be directly mounted to the correspond directory in the system 62 | 63 | # You don't need to remove the example below, these values will be overwritten by your own list 64 | # This is an example 65 | REPLACE=" 66 | /system/app/Youtube 67 | /system/priv-app/SystemUI 68 | /system/priv-app/Settings 69 | /system/framework 70 | " 71 | 72 | # Construct your own list here, it will overwrite the example 73 | # !DO NOT! remove this if you don't need to replace anything, leave it empty as it is now 74 | REPLACE=" 75 | /system/xbin 76 | " 77 | 78 | ########################################################################################## 79 | # Permissions 80 | ########################################################################################## 81 | 82 | # NOTE: This part has to be adjusted to fit your own needs 83 | 84 | set_permissions() { 85 | # Default permissions, don't remove them 86 | set_perm_recursive $MODPATH 0 0 0755 0644 87 | 88 | # Only some special files require specific permissions 89 | # The default permissions should be good enough for most cases 90 | 91 | # Some templates if you have no idea what to do: 92 | 93 | # set_perm_recursive (default: u:object_r:system_file:s0) 94 | # set_perm_recursive $MODPATH/system/lib 0 0 0755 0644 95 | 96 | # set_perm (default: u:object_r:system_file:s0) 97 | # set_perm $MODPATH/system/bin/app_process32 0 2000 0755 u:object_r:zygote_exec:s0 98 | # set_perm $MODPATH/system/bin/dex2oat 0 2000 0755 u:object_r:dex2oat_exec:s0 99 | # set_perm $MODPATH/system/lib/libart.so 0 0 0644 100 | set_perm $MODPATH/system/xbin/busybox 0 0 0755 0755 u:object_r:system_file:s0 101 | set_perm $MODPATH/system/xbin/symbol-links.tar 0 0 0755 0644 u:object_r:system_file:s0 102 | } 103 | -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- 1 | GNU GENERAL PUBLIC LICENSE 2 | Version 2, June 1991 3 | 4 | Copyright (C) 1989, 1991 Free Software Foundation, Inc., 5 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA 6 | Everyone is permitted to copy and distribute verbatim copies 7 | of this license document, but changing it is not allowed. 8 | 9 | Preamble 10 | 11 | The licenses for most software are designed to take away your 12 | freedom to share and change it. By contrast, the GNU General Public 13 | License is intended to guarantee your freedom to share and change free 14 | software--to make sure the software is free for all its users. This 15 | General Public License applies to most of the Free Software 16 | Foundation's software and to any other program whose authors commit to 17 | using it. (Some other Free Software Foundation software is covered by 18 | the GNU Lesser General Public License instead.) You can apply it to 19 | your programs, too. 20 | 21 | When we speak of free software, we are referring to freedom, not 22 | price. Our General Public Licenses are designed to make sure that you 23 | have the freedom to distribute copies of free software (and charge for 24 | this service if you wish), that you receive source code or can get it 25 | if you want it, that you can change the software or use pieces of it 26 | in new free programs; and that you know you can do these things. 27 | 28 | To protect your rights, we need to make restrictions that forbid 29 | anyone to deny you these rights or to ask you to surrender the rights. 30 | These restrictions translate to certain responsibilities for you if you 31 | distribute copies of the software, or if you modify it. 32 | 33 | For example, if you distribute copies of such a program, whether 34 | gratis or for a fee, you must give the recipients all the rights that 35 | you have. You must make sure that they, too, receive or can get the 36 | source code. And you must show them these terms so they know their 37 | rights. 38 | 39 | We protect your rights with two steps: (1) copyright the software, and 40 | (2) offer you this license which gives you legal permission to copy, 41 | distribute and/or modify the software. 42 | 43 | Also, for each author's protection and ours, we want to make certain 44 | that everyone understands that there is no warranty for this free 45 | software. If the software is modified by someone else and passed on, we 46 | want its recipients to know that what they have is not the original, so 47 | that any problems introduced by others will not reflect on the original 48 | authors' reputations. 49 | 50 | Finally, any free program is threatened constantly by software 51 | patents. We wish to avoid the danger that redistributors of a free 52 | program will individually obtain patent licenses, in effect making the 53 | program proprietary. To prevent this, we have made it clear that any 54 | patent must be licensed for everyone's free use or not licensed at all. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | GNU GENERAL PUBLIC LICENSE 60 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 61 | 62 | 0. This License applies to any program or other work which contains 63 | a notice placed by the copyright holder saying it may be distributed 64 | under the terms of this General Public License. The "Program", below, 65 | refers to any such program or work, and a "work based on the Program" 66 | means either the Program or any derivative work under copyright law: 67 | that is to say, a work containing the Program or a portion of it, 68 | either verbatim or with modifications and/or translated into another 69 | language. (Hereinafter, translation is included without limitation in 70 | the term "modification".) Each licensee is addressed as "you". 71 | 72 | Activities other than copying, distribution and modification are not 73 | covered by this License; they are outside its scope. The act of 74 | running the Program is not restricted, and the output from the Program 75 | is covered only if its contents constitute a work based on the 76 | Program (independent of having been made by running the Program). 77 | Whether that is true depends on what the Program does. 78 | 79 | 1. You may copy and distribute verbatim copies of the Program's 80 | source code as you receive it, in any medium, provided that you 81 | conspicuously and appropriately publish on each copy an appropriate 82 | copyright notice and disclaimer of warranty; keep intact all the 83 | notices that refer to this License and to the absence of any warranty; 84 | and give any other recipients of the Program a copy of this License 85 | along with the Program. 86 | 87 | You may charge a fee for the physical act of transferring a copy, and 88 | you may at your option offer warranty protection in exchange for a fee. 89 | 90 | 2. You may modify your copy or copies of the Program or any portion 91 | of it, thus forming a work based on the Program, and copy and 92 | distribute such modifications or work under the terms of Section 1 93 | above, provided that you also meet all of these conditions: 94 | 95 | a) You must cause the modified files to carry prominent notices 96 | stating that you changed the files and the date of any change. 97 | 98 | b) You must cause any work that you distribute or publish, that in 99 | whole or in part contains or is derived from the Program or any 100 | part thereof, to be licensed as a whole at no charge to all third 101 | parties under the terms of this License. 102 | 103 | c) If the modified program normally reads commands interactively 104 | when run, you must cause it, when started running for such 105 | interactive use in the most ordinary way, to print or display an 106 | announcement including an appropriate copyright notice and a 107 | notice that there is no warranty (or else, saying that you provide 108 | a warranty) and that users may redistribute the program under 109 | these conditions, and telling the user how to view a copy of this 110 | License. (Exception: if the Program itself is interactive but 111 | does not normally print such an announcement, your work based on 112 | the Program is not required to print an announcement.) 113 | 114 | These requirements apply to the modified work as a whole. If 115 | identifiable sections of that work are not derived from the Program, 116 | and can be reasonably considered independent and separate works in 117 | themselves, then this License, and its terms, do not apply to those 118 | sections when you distribute them as separate works. But when you 119 | distribute the same sections as part of a whole which is a work based 120 | on the Program, the distribution of the whole must be on the terms of 121 | this License, whose permissions for other licensees extend to the 122 | entire whole, and thus to each and every part regardless of who wrote it. 123 | 124 | Thus, it is not the intent of this section to claim rights or contest 125 | your rights to work written entirely by you; rather, the intent is to 126 | exercise the right to control the distribution of derivative or 127 | collective works based on the Program. 128 | 129 | In addition, mere aggregation of another work not based on the Program 130 | with the Program (or with a work based on the Program) on a volume of 131 | a storage or distribution medium does not bring the other work under 132 | the scope of this License. 133 | 134 | 3. You may copy and distribute the Program (or a work based on it, 135 | under Section 2) in object code or executable form under the terms of 136 | Sections 1 and 2 above provided that you also do one of the following: 137 | 138 | a) Accompany it with the complete corresponding machine-readable 139 | source code, which must be distributed under the terms of Sections 140 | 1 and 2 above on a medium customarily used for software interchange; or, 141 | 142 | b) Accompany it with a written offer, valid for at least three 143 | years, to give any third party, for a charge no more than your 144 | cost of physically performing source distribution, a complete 145 | machine-readable copy of the corresponding source code, to be 146 | distributed under the terms of Sections 1 and 2 above on a medium 147 | customarily used for software interchange; or, 148 | 149 | c) Accompany it with the information you received as to the offer 150 | to distribute corresponding source code. (This alternative is 151 | allowed only for noncommercial distribution and only if you 152 | received the program in object code or executable form with such 153 | an offer, in accord with Subsection b above.) 154 | 155 | The source code for a work means the preferred form of the work for 156 | making modifications to it. For an executable work, complete source 157 | code means all the source code for all modules it contains, plus any 158 | associated interface definition files, plus the scripts used to 159 | control compilation and installation of the executable. However, as a 160 | special exception, the source code distributed need not include 161 | anything that is normally distributed (in either source or binary 162 | form) with the major components (compiler, kernel, and so on) of the 163 | operating system on which the executable runs, unless that component 164 | itself accompanies the executable. 165 | 166 | If distribution of executable or object code is made by offering 167 | access to copy from a designated place, then offering equivalent 168 | access to copy the source code from the same place counts as 169 | distribution of the source code, even though third parties are not 170 | compelled to copy the source along with the object code. 171 | 172 | 4. You may not copy, modify, sublicense, or distribute the Program 173 | except as expressly provided under this License. Any attempt 174 | otherwise to copy, modify, sublicense or distribute the Program is 175 | void, and will automatically terminate your rights under this License. 176 | However, parties who have received copies, or rights, from you under 177 | this License will not have their licenses terminated so long as such 178 | parties remain in full compliance. 179 | 180 | 5. You are not required to accept this License, since you have not 181 | signed it. However, nothing else grants you permission to modify or 182 | distribute the Program or its derivative works. These actions are 183 | prohibited by law if you do not accept this License. Therefore, by 184 | modifying or distributing the Program (or any work based on the 185 | Program), you indicate your acceptance of this License to do so, and 186 | all its terms and conditions for copying, distributing or modifying 187 | the Program or works based on it. 188 | 189 | 6. Each time you redistribute the Program (or any work based on the 190 | Program), the recipient automatically receives a license from the 191 | original licensor to copy, distribute or modify the Program subject to 192 | these terms and conditions. You may not impose any further 193 | restrictions on the recipients' exercise of the rights granted herein. 194 | You are not responsible for enforcing compliance by third parties to 195 | this License. 196 | 197 | 7. If, as a consequence of a court judgment or allegation of patent 198 | infringement or for any other reason (not limited to patent issues), 199 | conditions are imposed on you (whether by court order, agreement or 200 | otherwise) that contradict the conditions of this License, they do not 201 | excuse you from the conditions of this License. If you cannot 202 | distribute so as to satisfy simultaneously your obligations under this 203 | License and any other pertinent obligations, then as a consequence you 204 | may not distribute the Program at all. For example, if a patent 205 | license would not permit royalty-free redistribution of the Program by 206 | all those who receive copies directly or indirectly through you, then 207 | the only way you could satisfy both it and this License would be to 208 | refrain entirely from distribution of the Program. 209 | 210 | If any portion of this section is held invalid or unenforceable under 211 | any particular circumstance, the balance of the section is intended to 212 | apply and the section as a whole is intended to apply in other 213 | circumstances. 214 | 215 | It is not the purpose of this section to induce you to infringe any 216 | patents or other property right claims or to contest validity of any 217 | such claims; this section has the sole purpose of protecting the 218 | integrity of the free software distribution system, which is 219 | implemented by public license practices. Many people have made 220 | generous contributions to the wide range of software distributed 221 | through that system in reliance on consistent application of that 222 | system; it is up to the author/donor to decide if he or she is willing 223 | to distribute software through any other system and a licensee cannot 224 | impose that choice. 225 | 226 | This section is intended to make thoroughly clear what is believed to 227 | be a consequence of the rest of this License. 228 | 229 | 8. If the distribution and/or use of the Program is restricted in 230 | certain countries either by patents or by copyrighted interfaces, the 231 | original copyright holder who places the Program under this License 232 | may add an explicit geographical distribution limitation excluding 233 | those countries, so that distribution is permitted only in or among 234 | countries not thus excluded. In such case, this License incorporates 235 | the limitation as if written in the body of this License. 236 | 237 | 9. The Free Software Foundation may publish revised and/or new versions 238 | of the General Public License from time to time. Such new versions will 239 | be similar in spirit to the present version, but may differ in detail to 240 | address new problems or concerns. 241 | 242 | Each version is given a distinguishing version number. If the Program 243 | specifies a version number of this License which applies to it and "any 244 | later version", you have the option of following the terms and conditions 245 | either of that version or of any later version published by the Free 246 | Software Foundation. If the Program does not specify a version number of 247 | this License, you may choose any version ever published by the Free Software 248 | Foundation. 249 | 250 | 10. If you wish to incorporate parts of the Program into other free 251 | programs whose distribution conditions are different, write to the author 252 | to ask for permission. For software which is copyrighted by the Free 253 | Software Foundation, write to the Free Software Foundation; we sometimes 254 | make exceptions for this. Our decision will be guided by the two goals 255 | of preserving the free status of all derivatives of our free software and 256 | of promoting the sharing and reuse of software generally. 257 | 258 | NO WARRANTY 259 | 260 | 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY 261 | FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN 262 | OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES 263 | PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED 264 | OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF 265 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS 266 | TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE 267 | PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, 268 | REPAIR OR CORRECTION. 269 | 270 | 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 271 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR 272 | REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, 273 | INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING 274 | OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED 275 | TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY 276 | YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER 277 | PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE 278 | POSSIBILITY OF SUCH DAMAGES. 279 | 280 | END OF TERMS AND CONDITIONS 281 | 282 | How to Apply These Terms to Your New Programs 283 | 284 | If you develop a new program, and you want it to be of the greatest 285 | possible use to the public, the best way to achieve this is to make it 286 | free software which everyone can redistribute and change under these terms. 287 | 288 | To do so, attach the following notices to the program. It is safest 289 | to attach them to the start of each source file to most effectively 290 | convey the exclusion of warranty; and each file should have at least 291 | the "copyright" line and a pointer to where the full notice is found. 292 | 293 | 294 | Copyright (C) 295 | 296 | This program is free software; you can redistribute it and/or modify 297 | it under the terms of the GNU General Public License as published by 298 | the Free Software Foundation; either version 2 of the License, or 299 | (at your option) any later version. 300 | 301 | This program is distributed in the hope that it will be useful, 302 | but WITHOUT ANY WARRANTY; without even the implied warranty of 303 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 304 | GNU General Public License for more details. 305 | 306 | You should have received a copy of the GNU General Public License along 307 | with this program; if not, write to the Free Software Foundation, Inc., 308 | 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. 309 | 310 | Also add information on how to contact you by electronic and paper mail. 311 | 312 | If the program is interactive, make it output a short notice like this 313 | when it starts in an interactive mode: 314 | 315 | Gnomovision version 69, Copyright (C) year name of author 316 | Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. 317 | This is free software, and you are welcome to redistribute it 318 | under certain conditions; type `show c' for details. 319 | 320 | The hypothetical commands `show w' and `show c' should show the appropriate 321 | parts of the General Public License. Of course, the commands you use may 322 | be called something other than `show w' and `show c'; they could even be 323 | mouse-clicks or menu items--whatever suits your program. 324 | 325 | You should also get your employer (if you work as a programmer) or your 326 | school, if any, to sign a "copyright disclaimer" for the program, if 327 | necessary. Here is a sample; alter the names: 328 | 329 | Yoyodyne, Inc., hereby disclaims all copyright interest in the program 330 | `Gnomovision' (which makes passes at compilers) written by James Hacker. 331 | 332 | , 1 April 1989 333 | Ty Coon, President of Vice 334 | 335 | This General Public License does not permit incorporating your program into 336 | proprietary programs. If your program is a subroutine library, you may 337 | consider it more useful to permit linking proprietary applications with the 338 | library. If this is what you want to do, use the GNU Lesser General 339 | Public License instead of this License. 340 | -------------------------------------------------------------------------------- /system/xbin/symbol-links.tar: -------------------------------------------------------------------------------- 1 | [0000777000000000000000000000000013134165476013701 2/system/xbin/busyboxustar rootroot[[0000777000000000000000000000000013134165476014034 2/system/xbin/busyboxustar rootrootacpid0000777000000000000000000000000013134165476014547 2/system/xbin/busyboxustar rootrootadd-shell0000777000000000000000000000000013134165476015324 2/system/xbin/busyboxustar rootrootaddgroup0000777000000000000000000000000013134165476015274 2/system/xbin/busyboxustar rootrootadduser0000777000000000000000000000000013134165476015116 2/system/xbin/busyboxustar rootrootadjtimex0000777000000000000000000000000013134165476015274 2/system/xbin/busyboxustar rootrootarp0000777000000000000000000000000013134165476014251 2/system/xbin/busyboxustar rootrootarping0000777000000000000000000000000013134165476014747 2/system/xbin/busyboxustar rootrootash0000777000000000000000000000000013134165476014242 2/system/xbin/busyboxustar rootrootawk0000777000000000000000000000000013134165476014251 2/system/xbin/busyboxustar rootrootbase640000777000000000000000000000000013134165476014553 2/system/xbin/busyboxustar rootrootbasename0000777000000000000000000000000013134165476015242 2/system/xbin/busyboxustar rootrootbeep0000777000000000000000000000000013134165476014402 2/system/xbin/busyboxustar rootrootblkdiscard0000777000000000000000000000000013134165476015571 2/system/xbin/busyboxustar rootrootblkid0000777000000000000000000000000013134165476014554 2/system/xbin/busyboxustar rootrootblockdev0000777000000000000000000000000013134165476015260 2/system/xbin/busyboxustar rootrootbootchartd0000777000000000000000000000000013134165476015620 2/system/xbin/busyboxustar rootrootbrctl0000777000000000000000000000000013134165476014575 2/system/xbin/busyboxustar rootrootbunzip20000777000000000000000000000000013134165476015060 2/system/xbin/busyboxustar rootrootbzcat0000777000000000000000000000000013134165476014572 2/system/xbin/busyboxustar rootrootbzip20000777000000000000000000000000013134165476014515 2/system/xbin/busyboxustar rootrootcal0000777000000000000000000000000013134165476014226 2/system/xbin/busyboxustar rootrootcat0000777000000000000000000000000013134165476014236 2/system/xbin/busyboxustar rootrootcatv0000777000000000000000000000000013134165476014424 2/system/xbin/busyboxustar rootrootchat0000777000000000000000000000000013134165476014406 2/system/xbin/busyboxustar rootrootchattr0000777000000000000000000000000013134165476014754 2/system/xbin/busyboxustar rootrootchgrp0000777000000000000000000000000013134165476014572 2/system/xbin/busyboxustar rootrootchmod0000777000000000000000000000000013134165476014561 2/system/xbin/busyboxustar rootrootchown0000777000000000000000000000000013134165476014605 2/system/xbin/busyboxustar rootrootchpasswd0000777000000000000000000000000013134165476015303 2/system/xbin/busyboxustar rootrootchpst0000777000000000000000000000000013134165476014610 2/system/xbin/busyboxustar rootrootchroot0000777000000000000000000000000013134165476014765 2/system/xbin/busyboxustar rootrootchrt0000777000000000000000000000000013134165476014427 2/system/xbin/busyboxustar rootrootchvt0000777000000000000000000000000013134165476014433 2/system/xbin/busyboxustar rootrootcksum0000777000000000000000000000000013134165476014611 2/system/xbin/busyboxustar rootrootclear0000777000000000000000000000000013134165476014555 2/system/xbin/busyboxustar rootrootcmp0000777000000000000000000000000013134165476014246 2/system/xbin/busyboxustar rootrootcomm0000777000000000000000000000000013134165476014422 2/system/xbin/busyboxustar rootrootconspy0000777000000000000000000000000013134165476015002 2/system/xbin/busyboxustar rootrootcp0000777000000000000000000000000013134165476014071 2/system/xbin/busyboxustar rootrootcpio0000777000000000000000000000000013134165476014421 2/system/xbin/busyboxustar rootrootcrond0000777000000000000000000000000013134165476014574 2/system/xbin/busyboxustar rootrootcrontab0000777000000000000000000000000013134165476015117 2/system/xbin/busyboxustar rootrootcryptpw0000777000000000000000000000000013134165476015177 2/system/xbin/busyboxustar rootrootcttyhack0000777000000000000000000000000013134165476015301 2/system/xbin/busyboxustar rootrootcut0000777000000000000000000000000013134165476014262 2/system/xbin/busyboxustar rootrootdate0000777000000000000000000000000013134165476014404 2/system/xbin/busyboxustar rootrootdc0000777000000000000000000000000013134165476014055 2/system/xbin/busyboxustar rootrootdd0000777000000000000000000000000013134165476014056 2/system/xbin/busyboxustar rootrootdeallocvt0000777000000000000000000000000013134165476015444 2/system/xbin/busyboxustar rootrootdelgroup0000777000000000000000000000000013134165476015310 2/system/xbin/busyboxustar rootrootdeluser0000777000000000000000000000000013134165476015132 2/system/xbin/busyboxustar rootrootdepmod0000777000000000000000000000000013134165476014737 2/system/xbin/busyboxustar rootrootdevmem0000777000000000000000000000000013134165476014744 2/system/xbin/busyboxustar rootrootdf0000777000000000000000000000000013134165476014060 2/system/xbin/busyboxustar rootrootdhcprelay0000777000000000000000000000000013134165476015442 2/system/xbin/busyboxustar rootrootdiff0000777000000000000000000000000013134165476014377 2/system/xbin/busyboxustar rootrootdirname0000777000000000000000000000000013134165476015106 2/system/xbin/busyboxustar rootrootdmesg0000777000000000000000000000000013134165476014566 2/system/xbin/busyboxustar rootrootdnsd0000777000000000000000000000000013134165476014417 2/system/xbin/busyboxustar rootrootdnsdomainname0000777000000000000000000000000013134165476016304 2/system/xbin/busyboxustar rootrootdos2unix0000777000000000000000000000000013134165476015242 2/system/xbin/busyboxustar rootrootdpkg0000777000000000000000000000000013134165476014414 2/system/xbin/busyboxustar rootrootdpkg-deb0000777000000000000000000000000013134165476015144 2/system/xbin/busyboxustar rootrootdu0000777000000000000000000000000013134165476014077 2/system/xbin/busyboxustar rootrootdumpkmap0000777000000000000000000000000013134165476015305 2/system/xbin/busyboxustar rootrootdumpleases0000777000000000000000000000000013134165476015631 2/system/xbin/busyboxustar rootrootecho0000777000000000000000000000000013134165476014405 2/system/xbin/busyboxustar rootrooted0000777000000000000000000000000013134165476014057 2/system/xbin/busyboxustar rootrootegrep0000777000000000000000000000000013134165476014571 2/system/xbin/busyboxustar rootrooteject0000777000000000000000000000000013134165476014561 2/system/xbin/busyboxustar rootrootenv0000777000000000000000000000000013134165476014257 2/system/xbin/busyboxustar rootrootenvdir0000777000000000000000000000000013134165476014756 2/system/xbin/busyboxustar rootrootenvuidgid0000777000000000000000000000000013134165476015445 2/system/xbin/busyboxustar rootrootether-wake0000777000000000000000000000000013134165476015523 2/system/xbin/busyboxustar rootrootexpand0000777000000000000000000000000013134165476014746 2/system/xbin/busyboxustar rootrootexpr0000777000000000000000000000000013134165476014445 2/system/xbin/busyboxustar rootrootfakeidentd0000777000000000000000000000000013134165476015565 2/system/xbin/busyboxustar rootrootfalse0000777000000000000000000000000013134165476014561 2/system/xbin/busyboxustar rootrootfatattr0000777000000000000000000000000013134165476015134 2/system/xbin/busyboxustar rootrootfbset0000777000000000000000000000000013134165476014572 2/system/xbin/busyboxustar rootrootfbsplash0000777000000000000000000000000013134165476015271 2/system/xbin/busyboxustar rootrootfdflush0000777000000000000000000000000013134165476015122 2/system/xbin/busyboxustar rootrootfdformat0000777000000000000000000000000013134165476015271 2/system/xbin/busyboxustar rootrootfdisk0000777000000000000000000000000013134165476014567 2/system/xbin/busyboxustar rootrootfgconsole0000777000000000000000000000000013134165476015446 2/system/xbin/busyboxustar rootrootfgrep0000777000000000000000000000000013134165476014572 2/system/xbin/busyboxustar rootrootfind0000777000000000000000000000000013134165476014407 2/system/xbin/busyboxustar rootrootfindfs0000777000000000000000000000000013134165476014740 2/system/xbin/busyboxustar rootrootflock0000777000000000000000000000000013134165476014565 2/system/xbin/busyboxustar rootrootfold0000777000000000000000000000000013134165476014413 2/system/xbin/busyboxustar rootrootfree0000777000000000000000000000000013134165476014410 2/system/xbin/busyboxustar rootrootfreeramdisk0000777000000000000000000000000013134165476015763 2/system/xbin/busyboxustar rootrootfsck0000777000000000000000000000000013134165476014415 2/system/xbin/busyboxustar rootrootfsck.minix0000777000000000000000000000000013134165476015540 2/system/xbin/busyboxustar rootrootfstrim0000777000000000000000000000000013134165476014773 2/system/xbin/busyboxustar rootrootfsync0000777000000000000000000000000013134165476014611 2/system/xbin/busyboxustar rootrootftpd0000777000000000000000000000000013134165476014424 2/system/xbin/busyboxustar rootrootftpget0000777000000000000000000000000013134165476014760 2/system/xbin/busyboxustar rootrootftpput0000777000000000000000000000000013134165476015011 2/system/xbin/busyboxustar rootrootfuser0000777000000000000000000000000013134165476014613 2/system/xbin/busyboxustar rootrootgetopt0000777000000000000000000000000013134165476014771 2/system/xbin/busyboxustar rootrootgetty0000777000000000000000000000000013134165476014623 2/system/xbin/busyboxustar rootrootgrep0000777000000000000000000000000013134165476014424 2/system/xbin/busyboxustar rootrootgroups0000777000000000000000000000000013134165476015006 2/system/xbin/busyboxustar rootrootgunzip0000777000000000000000000000000013134165476015003 2/system/xbin/busyboxustar rootrootgzip0000777000000000000000000000000013134165476014440 2/system/xbin/busyboxustar rootroothalt0000777000000000000000000000000013134165476014417 2/system/xbin/busyboxustar rootroothd0000777000000000000000000000000013134165476014062 2/system/xbin/busyboxustar rootroothdparm0000777000000000000000000000000013134165476014742 2/system/xbin/busyboxustar rootroothead0000777000000000000000000000000013134165476014370 2/system/xbin/busyboxustar rootroothexdump0000777000000000000000000000000013134165476015141 2/system/xbin/busyboxustar rootroothostid0000777000000000000000000000000013134165476014761 2/system/xbin/busyboxustar rootroothostname0000777000000000000000000000000013134165476015305 2/system/xbin/busyboxustar rootroothttpd0000777000000000000000000000000013134165476014612 2/system/xbin/busyboxustar rootroothush0000777000000000000000000000000013134165476014436 2/system/xbin/busyboxustar rootroothwclock0000777000000000000000000000000013134165476015121 2/system/xbin/busyboxustar rootrooti2cdetect0000777000000000000000000000000013134165476015335 2/system/xbin/busyboxustar rootrooti2cdump0000777000000000000000000000000013134165476015032 2/system/xbin/busyboxustar rootrooti2cget0000777000000000000000000000000013134165476014644 2/system/xbin/busyboxustar rootrooti2cset0000777000000000000000000000000013134165476014660 2/system/xbin/busyboxustar rootrootid0000777000000000000000000000000013134165476014063 2/system/xbin/busyboxustar rootrootifconfig0000777000000000000000000000000013134165476015253 2/system/xbin/busyboxustar rootrootifdown0000777000000000000000000000000013134165476014755 2/system/xbin/busyboxustar rootrootifenslave0000777000000000000000000000000013134165476015443 2/system/xbin/busyboxustar rootrootifplugd0000777000000000000000000000000013134165476015121 2/system/xbin/busyboxustar rootrootifup0000777000000000000000000000000013134165476014432 2/system/xbin/busyboxustar rootrootinetd0000777000000000000000000000000013134165476014572 2/system/xbin/busyboxustar rootrootinit0000777000000000000000000000000013134165476014432 2/system/xbin/busyboxustar rootrootinsmod0000777000000000000000000000000013134165476014760 2/system/xbin/busyboxustar rootrootinstall0000777000000000000000000000000013134165476015135 2/system/xbin/busyboxustar rootrootionice0000777000000000000000000000000013134165476014735 2/system/xbin/busyboxustar rootrootiostat0000777000000000000000000000000013134165476014772 2/system/xbin/busyboxustar rootrootip0000777000000000000000000000000013134165476014077 2/system/xbin/busyboxustar rootrootipaddr0000777000000000000000000000000013134165476014732 2/system/xbin/busyboxustar rootrootipcalc0000777000000000000000000000000013134165476014722 2/system/xbin/busyboxustar rootrootipcrm0000777000000000000000000000000013134165476014601 2/system/xbin/busyboxustar rootrootipcs0000777000000000000000000000000013134165476014425 2/system/xbin/busyboxustar rootrootiplink0000777000000000000000000000000013134165476014755 2/system/xbin/busyboxustar rootrootipneigh0000777000000000000000000000000013134165476015112 2/system/xbin/busyboxustar rootrootiproute0000777000000000000000000000000013134165476015156 2/system/xbin/busyboxustar rootrootiprule0000777000000000000000000000000013134165476014767 2/system/xbin/busyboxustar rootrootiptunnel0000777000000000000000000000000013134165476015325 2/system/xbin/busyboxustar rootrootkbd_mode0000777000000000000000000000000013134165476015233 2/system/xbin/busyboxustar rootrootkill0000777000000000000000000000000013134165476014422 2/system/xbin/busyboxustar rootrootkillall0000777000000000000000000000000013134165476015113 2/system/xbin/busyboxustar rootrootkillall50000777000000000000000000000000013134165476015200 2/system/xbin/busyboxustar rootrootklogd0000777000000000000000000000000013134165476014567 2/system/xbin/busyboxustar rootrootless0000777000000000000000000000000013134165476014435 2/system/xbin/busyboxustar rootrootlinux320000777000000000000000000000000013134165476014773 2/system/xbin/busyboxustar rootrootlinux640000777000000000000000000000000013134165476015000 2/system/xbin/busyboxustar rootrootlinuxrc0000777000000000000000000000000013134165476015153 2/system/xbin/busyboxustar rootrootln0000777000000000000000000000000013134165476014100 2/system/xbin/busyboxustar rootrootloadfont0000777000000000000000000000000013134165476015275 2/system/xbin/busyboxustar rootrootloadkmap0000777000000000000000000000000013134165476015257 2/system/xbin/busyboxustar rootrootlogger0000777000000000000000000000000013134165476014746 2/system/xbin/busyboxustar rootrootlogin0000777000000000000000000000000013134165476014577 2/system/xbin/busyboxustar rootrootlogname0000777000000000000000000000000013134165476015111 2/system/xbin/busyboxustar rootrootlogread0000777000000000000000000000000013134165476015104 2/system/xbin/busyboxustar rootrootlosetup0000777000000000000000000000000013134165476015162 2/system/xbin/busyboxustar rootrootlpd0000777000000000000000000000000013134165476014246 2/system/xbin/busyboxustar rootrootlpq0000777000000000000000000000000013134165476014263 2/system/xbin/busyboxustar rootrootlpr0000777000000000000000000000000013134165476014264 2/system/xbin/busyboxustar rootrootls0000777000000000000000000000000013134165476014105 2/system/xbin/busyboxustar rootrootlsattr0000777000000000000000000000000013134165476015000 2/system/xbin/busyboxustar rootrootlsmod0000777000000000000000000000000013134165476014605 2/system/xbin/busyboxustar rootrootlsof0000777000000000000000000000000013134165476014432 2/system/xbin/busyboxustar rootrootlspci0000777000000000000000000000000013134165476014601 2/system/xbin/busyboxustar rootrootlsusb0000777000000000000000000000000013134165476014617 2/system/xbin/busyboxustar rootrootlzcat0000777000000000000000000000000013134165476014604 2/system/xbin/busyboxustar rootrootlzma0000777000000000000000000000000013134165476014432 2/system/xbin/busyboxustar rootrootlzop0000777000000000000000000000000013134165476014453 2/system/xbin/busyboxustar rootrootlzopcat0000777000000000000000000000000013134165476015143 2/system/xbin/busyboxustar rootrootmakedevs0000777000000000000000000000000013134165476015266 2/system/xbin/busyboxustar rootrootmakemime0000777000000000000000000000000013134165476015254 2/system/xbin/busyboxustar rootrootman0000777000000000000000000000000013134165476014242 2/system/xbin/busyboxustar rootrootmd5sum0000777000000000000000000000000013134165476014701 2/system/xbin/busyboxustar rootrootmdev0000777000000000000000000000000013134165476014422 2/system/xbin/busyboxustar rootrootmesg0000777000000000000000000000000013134165476014422 2/system/xbin/busyboxustar rootrootmicrocom0000777000000000000000000000000013134165476015277 2/system/xbin/busyboxustar rootrootmkdir0000777000000000000000000000000013134165476014575 2/system/xbin/busyboxustar rootrootmkdosfs0000777000000000000000000000000013134165476015135 2/system/xbin/busyboxustar rootrootmke2fs0000777000000000000000000000000013134165476014656 2/system/xbin/busyboxustar rootrootmkfifo0000777000000000000000000000000013134165476014742 2/system/xbin/busyboxustar rootrootmkfs.ext20000777000000000000000000000000013134165476015310 2/system/xbin/busyboxustar rootrootmkfs.minix0000777000000000000000000000000013134165476015552 2/system/xbin/busyboxustar rootrootmkfs.vfat0000777000000000000000000000000013134165476015366 2/system/xbin/busyboxustar rootrootmknod0000777000000000000000000000000013134165476014577 2/system/xbin/busyboxustar rootrootmkpasswd0000777000000000000000000000000013134165476015320 2/system/xbin/busyboxustar rootrootmkswap0000777000000000000000000000000013134165476014771 2/system/xbin/busyboxustar rootrootmktemp0000777000000000000000000000000013134165476014764 2/system/xbin/busyboxustar rootrootmodinfo0000777000000000000000000000000013134165476015122 2/system/xbin/busyboxustar rootrootmodprobe0000777000000000000000000000000013134165476015276 2/system/xbin/busyboxustar rootrootmore0000777000000000000000000000000013134165476014431 2/system/xbin/busyboxustar rootrootmount0000777000000000000000000000000013134165476014631 2/system/xbin/busyboxustar rootrootmountpoint0000777000000000000000000000000013134165476015703 2/system/xbin/busyboxustar rootrootmpstat0000777000000000000000000000000013134165476014777 2/system/xbin/busyboxustar rootrootmt0000777000000000000000000000000013134165476014107 2/system/xbin/busyboxustar rootrootmv0000777000000000000000000000000013134165476014111 2/system/xbin/busyboxustar rootrootnameif0000777000000000000000000000000013134165476014726 2/system/xbin/busyboxustar rootrootnanddump0000777000000000000000000000000013134165476015275 2/system/xbin/busyboxustar rootrootnandwrite0000777000000000000000000000000013134165476015462 2/system/xbin/busyboxustar rootrootnbd-client0000777000000000000000000000000013134165476015506 2/system/xbin/busyboxustar rootrootnc0000777000000000000000000000000013134165476014067 2/system/xbin/busyboxustar rootrootnetstat0000777000000000000000000000000013134165476015151 2/system/xbin/busyboxustar rootrootnice0000777000000000000000000000000013134165476014405 2/system/xbin/busyboxustar rootrootnmeter0000777000000000000000000000000013134165476014761 2/system/xbin/busyboxustar rootrootnohup0000777000000000000000000000000013134165476014620 2/system/xbin/busyboxustar rootrootnslookup0000777000000000000000000000000013134165476015341 2/system/xbin/busyboxustar rootrootntpd0000777000000000000000000000000013134165476014434 2/system/xbin/busyboxustar rootrootod0000777000000000000000000000000013134165476014071 2/system/xbin/busyboxustar rootrootopenvt0000777000000000000000000000000013134165476015002 2/system/xbin/busyboxustar rootrootpasswd0000777000000000000000000000000013134165476014770 2/system/xbin/busyboxustar rootrootpatch0000777000000000000000000000000013134165476014566 2/system/xbin/busyboxustar rootrootpgrep0000777000000000000000000000000013134165476014604 2/system/xbin/busyboxustar rootrootpidof0000777000000000000000000000000013134165476014570 2/system/xbin/busyboxustar rootrootping0000777000000000000000000000000013134165476014424 2/system/xbin/busyboxustar rootrootping60000777000000000000000000000000013134165476014512 2/system/xbin/busyboxustar rootrootpipe_progress0000777000000000000000000000000013134165476016350 2/system/xbin/busyboxustar rootrootpivot_root0000777000000000000000000000000013134165476015673 2/system/xbin/busyboxustar rootrootpkill0000777000000000000000000000000013134165476014602 2/system/xbin/busyboxustar rootrootpmap0000777000000000000000000000000013134165476014424 2/system/xbin/busyboxustar rootrootpopmaildir0000777000000000000000000000000013134165476015627 2/system/xbin/busyboxustar rootrootpoweroff0000777000000000000000000000000013134165476015316 2/system/xbin/busyboxustar rootrootpowertop0000777000000000000000000000000013134165476015346 2/system/xbin/busyboxustar rootrootprintenv0000777000000000000000000000000013134165476015334 2/system/xbin/busyboxustar rootrootprintf0000777000000000000000000000000013134165476014771 2/system/xbin/busyboxustar rootrootps0000777000000000000000000000000013134165476014111 2/system/xbin/busyboxustar rootrootpscan0000777000000000000000000000000013134165476014573 2/system/xbin/busyboxustar rootrootpstree0000777000000000000000000000000013134165476014771 2/system/xbin/busyboxustar rootrootpwd0000777000000000000000000000000013134165476014261 2/system/xbin/busyboxustar rootrootpwdx0000777000000000000000000000000013134165476014451 2/system/xbin/busyboxustar rootrootraidautorun0000777000000000000000000000000013134165476016024 2/system/xbin/busyboxustar rootrootrdate0000777000000000000000000000000013134165476014566 2/system/xbin/busyboxustar rootrootrdev0000777000000000000000000000000013134165476014427 2/system/xbin/busyboxustar rootrootreadahead0000777000000000000000000000000013134165476015365 2/system/xbin/busyboxustar rootrootreadlink0000777000000000000000000000000013134165476015260 2/system/xbin/busyboxustar rootrootreadprofile0000777000000000000000000000000013134165476015763 2/system/xbin/busyboxustar rootrootrealpath0000777000000000000000000000000013134165476015267 2/system/xbin/busyboxustar rootrootreboot0000777000000000000000000000000013134165476014761 2/system/xbin/busyboxustar rootrootreformime0000777000000000000000000000000013134165476015454 2/system/xbin/busyboxustar rootrootremove-shell0000777000000000000000000000000013134165476016071 2/system/xbin/busyboxustar rootrootrenice0000777000000000000000000000000013134165476014734 2/system/xbin/busyboxustar rootrootreset0000777000000000000000000000000013134165476014611 2/system/xbin/busyboxustar rootrootresize0000777000000000000000000000000013134165476014770 2/system/xbin/busyboxustar rootrootrev0000777000000000000000000000000013134165476014263 2/system/xbin/busyboxustar rootrootrm0000777000000000000000000000000013134165476014105 2/system/xbin/busyboxustar rootrootrmdir0000777000000000000000000000000013134165476014604 2/system/xbin/busyboxustar rootrootrmmod0000777000000000000000000000000013134165476014605 2/system/xbin/busyboxustar rootrootroute0000777000000000000000000000000013134165476014625 2/system/xbin/busyboxustar rootrootrpm0000777000000000000000000000000013134165476014265 2/system/xbin/busyboxustar rootrootrpm2cpio0000777000000000000000000000000013134165476015222 2/system/xbin/busyboxustar rootrootrtcwake0000777000000000000000000000000013134165476015127 2/system/xbin/busyboxustar rootrootrun-parts0000777000000000000000000000000013134165476015422 2/system/xbin/busyboxustar rootrootrunsv0000777000000000000000000000000013134165476014644 2/system/xbin/busyboxustar rootrootrunsvdir0000777000000000000000000000000013134165476015343 2/system/xbin/busyboxustar rootrootrx0000777000000000000000000000000013134165476014120 2/system/xbin/busyboxustar rootrootscript0000777000000000000000000000000013134165476014773 2/system/xbin/busyboxustar rootrootscriptreplay0000777000000000000000000000000013134165476016210 2/system/xbin/busyboxustar rootrootsed0000777000000000000000000000000013134165476014242 2/system/xbin/busyboxustar rootrootsendmail0000777000000000000000000000000013134165476015263 2/system/xbin/busyboxustar rootrootseq0000777000000000000000000000000013134165476014257 2/system/xbin/busyboxustar rootrootsetarch0000777000000000000000000000000013134165476015120 2/system/xbin/busyboxustar rootrootsetconsole0000777000000000000000000000000013134165476015645 2/system/xbin/busyboxustar rootrootsetfont0000777000000000000000000000000013134165476015151 2/system/xbin/busyboxustar rootrootsetkeycodes0000777000000000000000000000000013134165476016011 2/system/xbin/busyboxustar rootrootsetlogcons0000777000000000000000000000000013134165476015647 2/system/xbin/busyboxustar rootrootsetserial0000777000000000000000000000000013134165476015462 2/system/xbin/busyboxustar rootrootsetsid0000777000000000000000000000000013134165476014762 2/system/xbin/busyboxustar rootrootsetuidgid0000777000000000000000000000000013134165476015450 2/system/xbin/busyboxustar rootrootsh0000777000000000000000000000000013134165476014101 2/system/xbin/busyboxustar rootrootsha1sum0000777000000000000000000000000013134165476015050 2/system/xbin/busyboxustar rootrootsha256sum0000777000000000000000000000000013134165476015224 2/system/xbin/busyboxustar rootrootsha3sum0000777000000000000000000000000013134165476015052 2/system/xbin/busyboxustar rootrootsha512sum0000777000000000000000000000000013134165476015217 2/system/xbin/busyboxustar rootrootshowkey0000777000000000000000000000000013134165476015160 2/system/xbin/busyboxustar rootrootshuf0000777000000000000000000000000013134165476014434 2/system/xbin/busyboxustar rootrootslattach0000777000000000000000000000000013134165476015272 2/system/xbin/busyboxustar rootrootsleep0000777000000000000000000000000013134165476014577 2/system/xbin/busyboxustar rootrootsmemcap0000777000000000000000000000000013134165476015114 2/system/xbin/busyboxustar rootrootsoftlimit0000777000000000000000000000000013134165476015501 2/system/xbin/busyboxustar rootrootsort0000777000000000000000000000000013134165476014456 2/system/xbin/busyboxustar rootrootsplit0000777000000000000000000000000013134165476014622 2/system/xbin/busyboxustar rootrootstart-stop-daemon0000777000000000000000000000000013134165476017050 2/system/xbin/busyboxustar rootrootstat0000777000000000000000000000000013134165476014442 2/system/xbin/busyboxustar rootrootstrings0000777000000000000000000000000013134165476015160 2/system/xbin/busyboxustar rootrootstty0000777000000000000000000000000013134165476014472 2/system/xbin/busyboxustar rootrootsulogin0000777000000000000000000000000013134165476015147 2/system/xbin/busyboxustar rootrootsum0000777000000000000000000000000013134165476014273 2/system/xbin/busyboxustar rootrootsv0000777000000000000000000000000013134165476014117 2/system/xbin/busyboxustar rootrootsvc0000777000000000000000000000000013134165476014262 2/system/xbin/busyboxustar rootrootsvlogd0000777000000000000000000000000013134165476014765 2/system/xbin/busyboxustar rootrootswapoff0000777000000000000000000000000013134165476015134 2/system/xbin/busyboxustar rootrootswapon0000777000000000000000000000000013134165476014776 2/system/xbin/busyboxustar rootrootswitch_root0000777000000000000000000000000013134165476016033 2/system/xbin/busyboxustar rootrootsync0000777000000000000000000000000013134165476014443 2/system/xbin/busyboxustar rootrootsysctl0000777000000000000000000000000013134165476015010 2/system/xbin/busyboxustar rootrootsyslogd0000777000000000000000000000000013134165476015153 2/system/xbin/busyboxustar rootroottac0000777000000000000000000000000013134165476014236 2/system/xbin/busyboxustar rootroottail0000777000000000000000000000000013134165476014420 2/system/xbin/busyboxustar rootroottar0000777000000000000000000000000013134165476014255 2/system/xbin/busyboxustar rootroottcpsvd0000777000000000000000000000000013134165476014772 2/system/xbin/busyboxustar rootroottee0000777000000000000000000000000013134165476014244 2/system/xbin/busyboxustar rootroottelnet0000777000000000000000000000000013134165476014762 2/system/xbin/busyboxustar rootroottelnetd0000777000000000000000000000000013134165476015126 2/system/xbin/busyboxustar rootroottest0000777000000000000000000000000013134165476014446 2/system/xbin/busyboxustar rootroottftp0000777000000000000000000000000013134165476014444 2/system/xbin/busyboxustar rootroottftpd0000777000000000000000000000000013134165476014610 2/system/xbin/busyboxustar rootroottime0000777000000000000000000000000013134165476014425 2/system/xbin/busyboxustar rootroottimeout0000777000000000000000000000000013134165476015155 2/system/xbin/busyboxustar rootroottop0000777000000000000000000000000013134165476014271 2/system/xbin/busyboxustar rootroottouch0000777000000000000000000000000013134165476014611 2/system/xbin/busyboxustar rootroottr0000777000000000000000000000000013134165476014114 2/system/xbin/busyboxustar rootroottraceroute0000777000000000000000000000000013134165476015644 2/system/xbin/busyboxustar rootroottraceroute60000777000000000000000000000000013134165476015732 2/system/xbin/busyboxustar rootroottrue0000777000000000000000000000000013134165476014446 2/system/xbin/busyboxustar rootroottruncate0000777000000000000000000000000013134165476015314 2/system/xbin/busyboxustar rootroottty0000777000000000000000000000000013134165476014307 2/system/xbin/busyboxustar rootrootttysize0000777000000000000000000000000013134165476015202 2/system/xbin/busyboxustar rootroottunctl0000777000000000000000000000000013134165476015000 2/system/xbin/busyboxustar rootrootubiattach0000777000000000000000000000000013134165476015433 2/system/xbin/busyboxustar rootrootubidetach0000777000000000000000000000000013134165476015417 2/system/xbin/busyboxustar rootrootubimkvol0000777000000000000000000000000013134165476015317 2/system/xbin/busyboxustar rootrootubirename0000777000000000000000000000000013134165476015436 2/system/xbin/busyboxustar rootrootubirmvol0000777000000000000000000000000013134165476015326 2/system/xbin/busyboxustar rootrootubirsvol0000777000000000000000000000000013134165476015334 2/system/xbin/busyboxustar rootrootubiupdatevol0000777000000000000000000000000013134165476016172 2/system/xbin/busyboxustar rootrootudhcpc0000777000000000000000000000000013134165476014735 2/system/xbin/busyboxustar rootrootudhcpd0000777000000000000000000000000013134165476014736 2/system/xbin/busyboxustar rootrootudpsvd0000777000000000000000000000000013134165476014774 2/system/xbin/busyboxustar rootrootuevent0000777000000000000000000000000013134165476014775 2/system/xbin/busyboxustar rootrootumount0000777000000000000000000000000013134165476015016 2/system/xbin/busyboxustar rootrootuname0000777000000000000000000000000013134165476014574 2/system/xbin/busyboxustar rootrootunexpand0000777000000000000000000000000013134165476015311 2/system/xbin/busyboxustar rootrootuniq0000777000000000000000000000000013134165476014443 2/system/xbin/busyboxustar rootrootunix2dos0000777000000000000000000000000013134165476015242 2/system/xbin/busyboxustar rootrootunlink0000777000000000000000000000000013134165476014767 2/system/xbin/busyboxustar rootrootunlzma0000777000000000000000000000000013134165476014775 2/system/xbin/busyboxustar rootrootunlzop0000777000000000000000000000000013134165476015016 2/system/xbin/busyboxustar rootrootunxz0000777000000000000000000000000013134165476014473 2/system/xbin/busyboxustar rootrootunzip0000777000000000000000000000000013134165476014634 2/system/xbin/busyboxustar rootrootuptime0000777000000000000000000000000013134165476014772 2/system/xbin/busyboxustar rootrootusleep0000777000000000000000000000000013134165476014764 2/system/xbin/busyboxustar rootrootuudecode0000777000000000000000000000000013134165476015264 2/system/xbin/busyboxustar rootrootuuencode0000777000000000000000000000000013134165476015276 2/system/xbin/busyboxustar rootrootvconfig0000777000000000000000000000000013134165476015122 2/system/xbin/busyboxustar rootrootvi0000777000000000000000000000000013134165476014105 2/system/xbin/busyboxustar rootrootvlock0000777000000000000000000000000013134165476014605 2/system/xbin/busyboxustar rootrootvolname0000777000000000000000000000000013134165476015130 2/system/xbin/busyboxustar rootrootwatch0000777000000000000000000000000013134165476014575 2/system/xbin/busyboxustar rootrootwatchdog0000777000000000000000000000000013134165476015267 2/system/xbin/busyboxustar rootrootwc0000777000000000000000000000000013134165476014100 2/system/xbin/busyboxustar rootrootwget0000777000000000000000000000000013134165476014435 2/system/xbin/busyboxustar rootrootwhich0000777000000000000000000000000013134165476014571 2/system/xbin/busyboxustar rootrootwhoami0000777000000000000000000000000013134165476014753 2/system/xbin/busyboxustar rootrootwhois0000777000000000000000000000000013134165476014620 2/system/xbin/busyboxustar rootrootxargs0000777000000000000000000000000013134165476014613 2/system/xbin/busyboxustar rootrootxz0000777000000000000000000000000013134165476014130 2/system/xbin/busyboxustar rootrootxzcat0000777000000000000000000000000013134165476014620 2/system/xbin/busyboxustar rootrootyes0000777000000000000000000000000013134165476014267 2/system/xbin/busyboxustar rootrootzcat0000777000000000000000000000000013134165476014430 2/system/xbin/busyboxustar rootrootzcip0000777000000000000000000000000013134165476014434 2/system/xbin/busyboxustar rootroot --------------------------------------------------------------------------------