###
#
# AROMA Installer Script
# (C) 2024 by Ali Beyaz (symbuzzer)
#
###


  ui_print("@  Installing to NAND...");
  ui_print("@  Mounting NAND partitions...");

  format("yaffs2", "MTD", "boot");
  format("yaffs2", "MTD", "system");

  mount("yaffs2", "MTD", "boot", "/boot");
  mount("yaffs2", "MTD", "system", "/system");
  mount("yaffs2", "MTD", "userdata", "/data");

  # Wipe Dalvik-Cache
  if file_getprop("/tmp/aroma/mods.prop", "selected.2") == "1" then
    ui_print("@  Wiping Dalvik-Cache...");
    delete_recursive("/data/dalvik-cache");
    ui_print("  Dalvik-Cache wiped.");
  endif;

  # Wipe Data/Factory Reset
  if file_getprop("/tmp/aroma/mods.prop", "selected.2") == "2" then
    ui_print("@  Wiping Data/Factory Reset...");
    unmount("/data");
    format("yaffs2", "MTD", "userdata");
    mount("yaffs2", "MTD", "userdata", "/data");
    ui_print("  Data wiped.");
  endif;

  show_progress(0.9, 800);
  ui_print("@  Copying files...");
  package_extract_dir("system", "/system");
  package_extract_dir("data", "/data");
  show_progress(0.1, 5);


#####################################
# NAND MAGLDR or cLK Kernel install #
#####################################

  # check bootloader
  package_extract_file("kernel/checksys.sh", "/tmp/checksys.sh");
  set_perm(0, 0, 755, "/tmp/checksys.sh");
  run_program("/tmp/checksys.sh");

  if file_getprop("/tmp/nfo.prop", "bootloader") == "cLK" then

    ui_print("  cLK Bootloader found.");
    ui_print("  Flashing cLK kernel...");

    # initrd.gz for NAND boot
    package_extract_file("kernel/boot_NAND/initrd.gz", "/tmp/initrd.gz");

    assert(
      package_extract_file("kernel/zImage", "/tmp/zImage"),
      package_extract_file("kernel/mkbootimg", "/tmp/mkbootimg"),
      package_extract_file("kernel/mkbootimg.sh", "/tmp/mkbootimg.sh"));
    set_perm(0, 0, 0755, "/tmp/mkbootimg");
    set_perm(0, 0, 0755, "/tmp/mkbootimg.sh");
    assert(
      run_program("/tmp/mkbootimg.sh"),
      write_raw_image("/tmp/boot.img", "boot"),
      delete("/tmp/boot.img"));

  else

    ui_print("  MAGLDR Bootloader found.");
    ui_print("  Flashing MAGLDR kernel...");

    # initrd.gz for NAND boot
    package_extract_file("kernel/boot_NAND/initrd.gz", "/boot/initrd.gz");

    package_extract_file("kernel/zImage", "/boot/zImage");

  endif;


########################
# Connection Selection #
########################

if file_getprop("/tmp/aroma/mods.prop", "selected.1") == "1" then

  ui_print("@  Installing RMNET...");

  # check bootloader
  package_extract_file("kernel/checksys.sh", "/tmp/checksys.sh");
  set_perm(0, 0, 755, "/tmp/checksys.sh");
  run_program("/tmp/checksys.sh");

  if file_getprop("/tmp/nfo.prop", "bootloader") == "MAGLDR" then
    delete("/system/ppp");
    delete("/system/default.prop");
    delete("/system/etc/init.d/97ppp");
    ui_print("  RMNET installed.");
  endif;

  if file_getprop("/tmp/nfo.prop", "bootloader") == "cLK" then
    ui_print("  Cannot set RMNET for cLK. Set PPP by default.");
    package_extract_dir("mods/clk-ppp-patch", "/system");
  endif;

  if file_getprop("/tmp/nfo.prop", "bootloader") == "HaRet" then
    ui_print("  Cannot set RMNET for HaRET. Set PPP by default.");
    package_extract_dir("mods/clk-ppp-patch", "/system");
  endif;

  if file_getprop("/tmp/nfo.prop", "bootloader") == "" then
    ui_print("  Something wrong. Set PPP by default.");
    package_extract_dir("mods/clk-ppp-patch", "/system");
  endif;

endif;

if file_getprop("/tmp/aroma/mods.prop", "selected.1") == "2" then

  ui_print("@  Installing PPP...");
  package_extract_dir("mods/clk-ppp-patch", "/system");
  ui_print("  PPP installed.");

endif;

##############################
# Startup Language Selection #
##############################

ui_print("@  Setting startup language...");
if file_getprop("/tmp/aroma/language.prop", "selected.1") == "1" then
    package_extract_file("mods/set_en.sh", "/tmp/set_en.sh");
    set_perm(0, 0, 0777, "/tmp/set_en.sh");
    run_program("/tmp/set_en.sh");
    ui_print("  Startup language set to EN.");
else
    package_extract_file("mods/set_tr.sh", "/tmp/set_tr.sh");
    set_perm(0, 0, 0777, "/tmp/set_tr.sh");
    run_program("/tmp/set_tr.sh");
    ui_print("  Startup language set to TR.");
endif;

################################
# ROM Symlinks and Permissions #
################################

ui_print("@  Setting symlinks and permissions...");
ui_print("  Setting symlinks...");
symlink("busybox", "/system/xbin/[", "/system/xbin/[[",
        "/system/xbin/arp", "/system/xbin/ash", "/system/xbin/awk",
        "/system/xbin/basename", "/system/xbin/bbconfig", "/system/xbin/brctl",
        "/system/xbin/bunzip2", "/system/xbin/bzcat", "/system/xbin/bzip2",
        "/system/xbin/cal", "/system/xbin/cat", "/system/xbin/catv",
        "/system/xbin/chgrp", "/system/xbin/chmod", "/system/xbin/chown",
        "/system/xbin/chroot", "/system/xbin/cksum", "/system/xbin/clear",
        "/system/xbin/cmp", "/system/xbin/cp", "/system/xbin/cpio",
        "/system/xbin/cut", "/system/xbin/date", "/system/xbin/dc",
        "/system/xbin/dd", "/system/xbin/depmod", "/system/xbin/devmem",
        "/system/xbin/df", "/system/xbin/diff", "/system/xbin/dirname",
        "/system/xbin/dmesg", "/system/xbin/dnsd", "/system/xbin/dos2unix",
        "/system/xbin/du", "/system/xbin/echo", "/system/xbin/ed",
        "/system/xbin/egrep", "/system/xbin/env", "/system/xbin/expr",
        "/system/xbin/false", "/system/xbin/fdisk", "/system/xbin/fgrep",
        "/system/xbin/find", "/system/xbin/fold", "/system/xbin/free",
        "/system/xbin/freeramdisk", "/system/xbin/fuser", "/system/xbin/getopt",
        "/system/xbin/grep", "/system/xbin/gunzip", "/system/xbin/gzip",
        "/system/xbin/head", "/system/xbin/hexdump", "/system/xbin/id",
        "/system/xbin/ifconfig", "/system/xbin/insmod", "/system/xbin/install",
        "/system/xbin/ip", "/system/xbin/kill", "/system/xbin/killall",
        "/system/xbin/killall5", "/system/xbin/length", "/system/xbin/less",
        "/system/xbin/ln", "/system/xbin/losetup", "/system/xbin/ls",
        "/system/xbin/lsmod", "/system/xbin/lspci", "/system/xbin/lsusb",
        "/system/xbin/lzop", "/system/xbin/lzopcat", "/system/xbin/md5sum",
        "/system/xbin/mkdir", "/system/xbin/mke2fs", "/system/xbin/mkfifo",
        "/system/xbin/mkfs.ext2", "/system/xbin/mknod", "/system/xbin/mkswap",
        "/system/xbin/mktemp", "/system/xbin/modprobe", "/system/xbin/more",
        "/system/xbin/mount", "/system/xbin/mountpoint", "/system/xbin/mv",
        "/system/xbin/netstat", "/system/xbin/nice", "/system/xbin/nohup",
        "/system/xbin/nslookup", "/system/xbin/ntpd", "/system/xbin/od",
        "/system/xbin/patch", "/system/xbin/pgrep", "/system/xbin/pidof",
        "/system/xbin/ping", "/system/xbin/pkill", "/system/xbin/printenv",
        "/system/xbin/printf", "/system/xbin/ps", "/system/xbin/pwd",
        "/system/xbin/rdev", "/system/xbin/readlink", "/system/xbin/realpath",
        "/system/xbin/renice", "/system/xbin/reset", "/system/xbin/rm",
        "/system/xbin/rmdir", "/system/xbin/rmmod", "/system/xbin/route",
        "/system/xbin/run-parts", "/system/xbin/sed", "/system/xbin/seq",
        "/system/xbin/setsid", "/system/xbin/sh", "/system/xbin/sha1sum",
        "/system/xbin/sha256sum", "/system/xbin/sha512sum",
        "/system/xbin/sleep", "/system/xbin/sort", "/system/xbin/split",
        "/system/xbin/stat", "/system/xbin/strings", "/system/xbin/stty",
        "/system/xbin/swapoff", "/system/xbin/swapon", "/system/xbin/sync",
        "/system/xbin/sysctl", "/system/xbin/tac", "/system/xbin/tail",
        "/system/xbin/tar", "/system/xbin/tee", "/system/xbin/telnet",
        "/system/xbin/test", "/system/xbin/tftp", "/system/xbin/time",
        "/system/xbin/top", "/system/xbin/touch", "/system/xbin/tr",
        "/system/xbin/traceroute", "/system/xbin/true", "/system/xbin/tty",
        "/system/xbin/tune2fs", "/system/xbin/umount", "/system/xbin/uname",
        "/system/xbin/uniq", "/system/xbin/unix2dos", "/system/xbin/unlzop",
        "/system/xbin/unzip", "/system/xbin/uptime", "/system/xbin/usleep",
        "/system/xbin/uudecode", "/system/xbin/uuencode", "/system/xbin/vi",
        "/system/xbin/watch", "/system/xbin/wc", "/system/xbin/wget",
        "/system/xbin/which", "/system/xbin/whoami", "/system/xbin/xargs",
        "/system/xbin/yes", "/system/xbin/zcat");
symlink("toolbox", "/system/bin/cat", "/system/bin/chmod",
        "/system/bin/chown", "/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/lsof",
        "/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/reboot", "/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/uptime", "/system/bin/vmstat", "/system/bin/watchprops",
        "/system/bin/wipe");
ui_print("  Setting permissions...");
set_perm_recursive(0, 0, 0755, 0644, "/system");
set_perm_recursive(0, 2000, 0755, 0755, "/system/bin");
set_perm(0, 3003, 02750, "/system/bin/netcfg");
set_perm(0, 3004, 02755, "/system/bin/ping");
set_perm(0, 2000, 06750, "/system/bin/run-as");
set_perm_recursive(1002, 1002, 0755, 0440, "/system/etc/bluetooth");
set_perm(0, 0, 0755, "/system/etc/bluetooth");
set_perm(1000, 1000, 0640, "/system/etc/bluetooth/auto_pairing.conf");
set_perm(3002, 3002, 0444, "/system/etc/bluetooth/blacklist.conf");
set_perm(1002, 1002, 0440, "/system/etc/dbus.conf");
set_perm(1014, 2000, 0550, "/system/etc/dhcpcd/dhcpcd-run-hooks");
set_perm_recursive(0, 2000, 0755, 0644, "/system/vendor");
set_perm(0, 2000, 0755, "/system/vendor/firmware");
set_perm_recursive(0, 2000, 0755, 0755, "/system/xbin");
set_perm(0, 0, 06755, "/system/xbin/hcitool");
set_perm(0, 0, 06755, "/system/xbin/librank");
set_perm(0, 0, 06755, "/system/xbin/procmem");
set_perm(0, 0, 06755, "/system/xbin/procrank");
set_perm(0, 0, 06755, "/system/xbin/busybox");
set_perm(0, 0, 06755, "/system/xbin/su");
symlink("/system/xbin/su", "/system/bin/su");
symlink("/system/vendor/firmware/fw_bcm4329.bin", "/system/etc/firmware/fw_bcm4329.bin");
symlink("/system/vendor/firmware/fw_bcm4329_apsta.bin", "/system/etc/firmware/fw_bcm4329_apsta.bin");
set_perm_recursive(0, 2000, 0755, 0750, "/system/etc/init.d");
set_perm(0, 0, 0755, "/system/etc/init.d");
set_perm_recursive(0, 1001, 0755, 0775, "/system/etc/ppp");
set_perm(0, 0, 04755, "/system/bin/pppd");
set_perm(0, 0, 0777, "/system/etc/init.d/97ppp");
set_perm_recursive(1000, 1000, 0771, 0644, "/data/app");
ui_print("  Symlinks and permissions done.");

###############
# Cleaning up #
###############

set_progress(0.95);
ui_print("@  Cleaning up...");
delete("/tmp");
ui_print("  Unmounting...");
unmount("/NativeSD");
unmount("/boot");
unmount("/system");
unmount("/data");
ui_print("  Done.");

set_progress(1.0);
ui_print("@  Installation Complete");
ui_print("  Please reboot.");
