Hi,
I'm making this thread for guiding some ppl to learn Edify Installation Script Syntax's
I promise u will find everything about Edify updater-Script here...
DO NOT USE NOTEPAD OR SOMETHING LIKE THAT SOFTWARE FOR MAKING UPDATER-SCRIPT, THEREFOR ERROR 6
RECOMMEND SOFTWARE FOR EDITING UPDATER-SCRIPT.
NOTEPAD++
@ALL plz helping me here...
If u have any prob... post ur Amend update-script here will convert it to Edify updater-script...
I'm making this thread for guiding some ppl to learn Edify Installation Script Syntax's
I promise u will find everything about Edify updater-Script here...
DO NOT USE NOTEPAD OR SOMETHING LIKE THAT SOFTWARE FOR MAKING UPDATER-SCRIPT, THEREFOR ERROR 6
RECOMMEND SOFTWARE FOR EDITING UPDATER-SCRIPT.
NOTEPAD++
@ALL plz helping me here...
If u have any prob... post ur Amend update-script here will convert it to Edify updater-script...
Code:
[B][COLOR="Red"]Amend Script Syntax[/COLOR]----------[COLOR="Blue"]Edify Script Syntax[/COLOR]
Info Print:-
[COLOR="Red"]Don't Know...[/COLOR]----------[COLOR="Blue"]ui_print("Ur Message Here...");[/COLOR][/B]
Code:
[B]Formating:-[/B]
[COLOR="Red"]format SYSTEM:[/COLOR]--------------------------[COLOR="Blue"]format("MTD", "system");[/COLOR]
[COLOR="Red"]format DATA:[/COLOR]----------------------------[COLOR="Blue"]format("MTD", "userdata");[/COLOR]
[COLOR="Red"]format CACHE:[/COLOR]---------------------------[COLOR="Blue"]format("MTD", "cache");[/COLOR]
[COLOR="Red"]format SDEXT:[/COLOR]---------------------------[COLOR="Blue"]Don't Know...[/COLOR]
Code:
[B]Clean Up[/B]
[COLOR="Blue"]format("yaffs2", "MTD", "system");
format("yaffs2", "MTD", "userdata");
run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p2", "/sd-ext");
run_program("/sbin/busybox", "rm", "-rf", "/sd-ext/*");
run_program("/sbin/busybox", "rm", "-rf", "/sdcard/.android_secure/*");
run_program("/sbin/busybox", "umount", "/sd-ext");
run_program("/sbin/e2fsck", "-pv", "/dev/block/mmcblk0p2");[/COLOR]
Code:
[B]Copy To System & Data:-[/B]
[COLOR="Red"]copy_dir PACKAGE:system SYSTEM:[/COLOR]---------[COLOR="Blue"]mount("MTD", "system", "/system");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("system", "/system");[/COLOR]
[COLOR="Red"]copy_dir PACKAGE:data DATA:[/COLOR]-------------[COLOR="Blue"]mount("MTD", "userdata", "/data");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("data", "/data");[/COLOR]
[B]Copy To SDCard:-[/B]
[COLOR="Red"]copy_dir PACKAGE:sdcard SDCARD:[/COLOR]---------[COLOR="Blue"]mount("vfat","/dev/block/mmcblk0p1","/sdcard");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("sdcard", "/sdcard");[/COLOR]
Code:
[B]Copy To SD-EXT Works With EXT 2/3/4, btrfs, Reiserfs, jfs:-[/B]
[COLOR="Red"]copy_dir PACKAGE:SDEXT SDEXT:[/COLOR]-----------[COLOR="Blue"]run_program("/sbin/busybox", "mount", "-t", "auto", "/dev/block/mmcblk0p2", "/sd-ext");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("sdext", "/sd-ext");[/COLOR]
[B]Copy To SD-EXT Externel Syntax:-[/B]
[COLOR="Red"]copy_dir PACKAGE:SDEXT SDEXT:[/COLOR]-----------[COLOR="Blue"]mount("ext4","/dev/block/mmcblk0p2","/sd-ext");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("sdext", "/sd-ext");[/COLOR]
[COLOR="Red"]copy_dir PACKAGE:SDEXT SDEXT:[/COLOR]-----------[COLOR="Blue"]mount("ext3","/dev/block/mmcblk0p2","/sd-ext");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("sdext", "/sd-ext");[/COLOR]
[COLOR="Red"]copy_dir PACKAGE:SDEXT SDEXT:[/COLOR]-----------[COLOR="Blue"]mount("ext2","/dev/block/mmcblk0p2","/sd-ext");[/COLOR]
........................................[COLOR="Blue"]package_extract_dir("sdext", "/sd-ext");[/COLOR]
Code:
[B]Deleting Folder:-[/B]
[COLOR="Red"]delete_recursive DATA:app[/COLOR]----------[COLOR="Blue"]delete_recursive("/data/app");[/COLOR]
[B]Deleting Files:-[/B]
[COLOR="Red"]delete DATA:etc/hosts[/COLOR]--------------[COLOR="Blue"]delete("/data/etc/hosts");[/COLOR]
[B]Folder Permission:-[/B]
[COLOR="Red"]set_perm_recursive 1000 1000 0771 0644 DATA:app[/COLOR]---------[COLOR="Blue"]set_perm_recursive(1000, 1000, 0771, 0644, "/data/app");[/COLOR]
[B]File Permission:-[/B]
[COLOR="Red"]set_perm 2000 2000 0771 DATA:etc[/COLOR]------------------------[COLOR="Blue"]set_perm(2000, 2000, 0771, "/data/etc");[/COLOR]
[B]Symlink Setup:-[/B]
[COLOR="Red"]symlink /data/app/apps.apk SYSTEM:app/apps.apk[/COLOR]----------[COLOR="Blue"]symlink("/data/app/apps.apk", "/system/app/apps.apk");[/COLOR]
[COLOR="Red"]symlink /data/etc/hosts SYSTEM:etc/hosts[/COLOR]----------------[COLOR="Blue"]symlink("/data/etc/hosts", "/system/etc/hosts");[/COLOR]
[B]ToolBox Setup:-[/B]
[COLOR="Red"]symlink toolbox SYSTEM:bin/date[/COLOR]-------------------------[COLOR="Blue"]symlink("toolbox", "/system/bin/date");[/COLOR]
[B]Busybox Setup:-[/B]
[COLOR="Red"]run_program PACKAGE:installbusybox[/COLOR]----------------------[COLOR="Blue"]run_program("installbusybox");[/COLOR]
........................................................[COLOR="Blue"]set_perm(0, 1000, 0755, "/system/xbin/busybox");[/COLOR]
[B]Writing Boot:-[/B]
[COLOR="Red"]format BOOT:[/COLOR]-------------------------------------------[COLOR="Blue"]package_extract_file("boot.img","/tmp/boot.img");[/COLOR]
[COLOR="Red"]write_raw_image PACKAGE:boot.img BOOT:[/COLOR]..................[COLOR="Blue"]write_raw_image("/tmp/boot.img", "boot");[/COLOR]
........................................................[COLOR="Blue"]delete("/tmp/boot.img");[/COLOR]
[B]Writing Radio:-[/B]
[COLOR="Red"]write_radio_image PACKAGE:radio.img[/COLOR]----------------------[COLOR="Blue"]assert(package_extract_file("radio.img", "/tmp/radio.img"),[/COLOR]
........................................................[COLOR="Blue"]write_firmware_image("/tmp/radio.img", "radio"));[/COLOR]
Code:
[B]Toolbox Setup Into Updater-Script:-
[COLOR="Blue"]symlink("toolbox", "/system/bin/cat","/system/bin/chmod",
"/system/bin/chown","/system/bin/chownto",
"/system/bin/cmp","/system/bin/date",
"/system/bin/dd","/system/bin/df",
"/system/bin/dmesg","/system/bin/getevent",
"/system/bin/getprop","/system/bin/hd",
"/system/bin/id","/system/bin/ifconfig",
"/system/bin/iftop","/system/bin/insmod",
"/system/bin/ioctl","/system/bin/ionice",
"/system/bin/kill","/system/bin/ln",
"/system/bin/log","/system/bin/ls",
"/system/bin/lsmod","/system/bin/mkdir",
"/system/bin/mount","/system/bin/mv",
"/system/bin/nandread","/system/bin/netstat",
"/system/bin/newfs_msdos","/system/bin/notify",
"/system/bin/printenv","/system/bin/ps",
"/system/bin/renice","/system/bin/rm",
"/system/bin/rmdir","/system/bin/rmmod",
"/system/bin/route","/system/bin/schedtop",
"/system/bin/sendevent","/system/bin/setconsole",
"/system/bin/setprop","/system/bin/sleep",
"/system/bin/smd","/system/bin/start",
"/system/bin/stop","/system/bin/sync",
"/system/bin/top","/system/bin/umount",
"/system/bin/vmstat","/system/bin/watchprops",
"/system/bin/wipe");
set_perm(0, 0, 04755, "/system/bin/toolbox");[/COLOR][/B]
Code:
[B]Busybox Setup Into Updater-Script:-
[COLOR="Blue"]symlink("busybox", "/system/xbin/[","/system/xbin/[[","/system/xbin/addgroup",
"/system/xbin/adduser","/system/xbin/adjtimex","/system/xbin/ar",
"/system/xbin/arp","/system/xbin/arping","/system/xbin/ash",
"/system/xbin/awk","/system/xbin/basename","/system/xbin/bbconfig",
"/system/xbin/beep","/system/xbin/blkid","/system/xbin/brctl",
"/system/xbin/bunzip2","/system/xbin/bzcat","/system/xbin/bzip2",
"/system/xbin/cal","/system/xbin/cat","/system/xbin/catv",
"/system/xbin/chat","/system/xbin/chattr","/system/xbin/chgrp",
"/system/xbin/chmod","/system/xbin/chown","/system/xbin/chpasswd",
"/system/xbin/chpst","/system/xbin/chroot","/system/xbin/chrt",
"/system/xbin/chvt","/system/xbin/cksum","/system/xbin/clear",
"/system/xbin/cmp","/system/xbin/comm","/system/xbin/cp",
"/system/xbin/cpio","/system/xbin/crond","/system/xbin/crontab",
"/system/xbin/cryptpw","/system/xbin/cttyhack","/system/xbin/cut",
"/system/xbin/date","/system/xbin/dc","/system/xbin/dd",
"/system/xbin/deallocvt","/system/xbin/delgroup","/system/xbin/deluser",
"/system/xbin/depmod","/system/xbin/devmem","/system/xbin/df",
"/system/xbin/diff","/system/xbin/dirname","/system/xbin/dmesg",
"/system/xbin/dnsd","/system/xbin/dnsdomainname","/system/xbin/dos2unix",
"/system/xbin/du","/system/xbin/dumpkmap","/system/xbin/echo",
"/system/xbin/ed","/system/xbin/egrep","/system/xbin/eject",
"/system/xbin/env","/system/xbin/envdir","/system/xbin/envuidgid",
"/system/xbin/ether-wake","/system/xbin/expand","/system/xbin/expr",
"/system/xbin/fakeidentd","/system/xbin/false","/system/xbin/fbset",
"/system/xbin/fbsplash","/system/xbin/fdflush","/system/xbin/fdformat",
"/system/xbin/fdisk","/system/xbin/fgrep","/system/xbin/find",
"/system/xbin/findfs","/system/xbin/fold","/system/xbin/free",
"/system/xbin/fsck","/system/xbin/fsck.minix","/system/xbin/fsync",
"/system/xbin/ftpd","/system/xbin/ftpget","/system/xbin/ftpput",
"/system/xbin/fuser","/system/xbin/getopt","/system/xbin/getty",
"/system/xbin/grep","/system/xbin/gunzip","/system/xbin/gzip",
"/system/xbin/halt","/system/xbin/hd","/system/xbin/hdparm",
"/system/xbin/head","/system/xbin/hexdump","/system/xbin/hostid",
"/system/xbin/hostname","/system/xbin/httpd","/system/xbin/hush",
"/system/xbin/hwclock","/system/xbin/id","/system/xbin/ifconfig",
"/system/xbin/ifdown","/system/xbin/ifenslave","/system/xbin/ifplugd",
"/system/xbin/ifup","/system/xbin/inetd","/system/xbin/init",
"/system/xbin/insmod","/system/xbin/install","/system/xbin/ionice",
"/system/xbin/ip","/system/xbin/ipaddr","/system/xbin/ipcalc",
"/system/xbin/ipcrm","/system/xbin/ipcs","/system/xbin/iplink",
"/system/xbin/iproute","/system/xbin/iprule","/system/xbin/iptunnel",
"/system/xbin/kbd_mode","/system/xbin/kill","/system/xbin/killall",
"/system/xbin/killall5","/system/xbin/klogd","/system/xbin/last",
"/system/xbin/length","/system/xbin/less","/system/xbin/linux32",
"/system/xbin/linux64","/system/xbin/linuxrc","/system/xbin/ln",
"/system/xbin/loadfont","/system/xbin/loadkmap","/system/xbin/logger",
"/system/xbin/login","/system/xbin/logname","/system/xbin/logread",
"/system/xbin/losetup","/system/xbin/lpd","/system/xbin/lpq",
"/system/xbin/lpr","/system/xbin/ls","/system/xbin/lsattr",
"/system/xbin/lsmod","/system/xbin/lzmacat","/system/xbin/lzop",
"/system/xbin/lzopcat","/system/xbin/makedevs","/system/xbin/makemime",
"/system/xbin/man","/system/xbin/md5sum","/system/xbin/mdev",
"/system/xbin/mesg","/system/xbin/microcom","/system/xbin/mkdir",
"/system/xbin/mkdosfs","/system/xbin/mkfifo","/system/xbin/mkfs.minix",
"/system/xbin/mkfs.vfat","/system/xbin/mknod","/system/xbin/mkpasswd",
"/system/xbin/mkswap","/system/xbin/mktemp","/system/xbin/modprobe",
"/system/xbin/more","/system/xbin/mount","/system/xbin/mountpoint",
"/system/xbin/msh","/system/xbin/mt","/system/xbin/mv","/system/xbin/nameif",
"/system/xbin/nc","/system/xbin/netstat","/system/xbin/nice",
"/system/xbin/nmeter","/system/xbin/nohup","/system/xbin/nslookup",
"/system/xbin/od","/system/xbin/openvt","/system/xbin/passwd",
"/system/xbin/patch","/system/xbin/pgrep","/system/xbin/pidof",
"/system/xbin/ping","/system/xbin/ping6","/system/xbin/pipe_progress",
"/system/xbin/pivot_root","/system/xbin/pkill","/system/xbin/popmaildir",
"/system/xbin/poweroff","/system/xbin/printenv","/system/xbin/printf",
"/system/xbin/ps","/system/xbin/pscan","/system/xbin/pwd","/system/xbin/raidautorun",
"/system/xbin/rdate","/system/xbin/rdev","/system/xbin/readahead",
"/system/xbin/readlink","/system/xbin/readprofile","/system/xbin/realpath",
"/system/xbin/reformime","/system/xbin/renice","/system/xbin/reset",
"/system/xbin/resize","/system/xbin/rm","/system/xbin/rmdir",
"/system/xbin/rmmod","/system/xbin/route","/system/xbin/rtcwake",
"/system/xbin/run-parts","/system/xbin/runlevel","/system/xbin/runsv",
"/system/xbin/runsvdir","/system/xbin/rx","/system/xbin/script",
"/system/xbin/scriptreplay","/system/xbin/sed","/system/xbin/sendmail",
"/system/xbin/seq","/system/xbin/setarch","/system/xbin/setconsole",
"/system/xbin/setfont","/system/xbin/setkeycodes","/system/xbin/setlogcons",
"/system/xbin/setsid","/system/xbin/setuidgid","/system/xbin/sh",
"/system/xbin/sha1sum","/system/xbin/sha256sum","/system/xbin/sha512sum",
"/system/xbin/showkey","/system/xbin/slattach","/system/xbin/sleep",
"/system/xbin/softlimit","/system/xbin/sort","/system/xbin/split",
"/system/xbin/start-stop-daemon","/system/xbin/stat","/system/xbin/strings",
"/system/xbin/stty","/system/xbin/sulogin","/system/xbin/sum",
"/system/xbin/sv","/system/xbin/svlogd","/system/xbin/swapoff",
"/system/xbin/swapon","/system/xbin/switch_root","/system/xbin/sync",
"/system/xbin/sysctl","/system/xbin/syslogd","/system/xbin/tac",
"/system/xbin/tail","/system/xbin/tar","/system/xbin/tcpsvd",
"/system/xbin/tee","/system/xbin/telnet","/system/xbin/telnetd",
"/system/xbin/test","/system/xbin/tftp","/system/xbin/tftpd",
"/system/xbin/time","/system/xbin/timeout","/system/xbin/top",
"/system/xbin/touch","/system/xbin/tr","/system/xbin/traceroute",
"/system/xbin/true","/system/xbin/tty","/system/xbin/ttysize",
"/system/xbin/tunctl","/system/xbin/udpsvd","/system/xbin/umount",
"/system/xbin/uname","/system/xbin/uncompress","/system/xbin/unexpand",
"/system/xbin/uniq","/system/xbin/unix2dos","/system/xbin/unlzma",
"/system/xbin/unlzop","/system/xbin/unzip","/system/xbin/uptime",
"/system/xbin/usleep","/system/xbin/uudecode","/system/xbin/uuencode",
"/system/xbin/vconfig","/system/xbin/vi","/system/xbin/vlock",
"/system/xbin/volname","/system/xbin/watch","/system/xbin/watchdog",
"/system/xbin/wc","/system/xbin/wget","/system/xbin/which",
"/system/xbin/who","/system/xbin/whoami","/system/xbin/xargs",
"/system/xbin/yes","/system/xbin/zcat","/system/xbin/zcip");
set_perm(0, 1000, 0755, "/system/xbin/busybox");[/COLOR][/B]
Last edited: