درود / این کدها با دستوراتی که در فایل updater-script ( زبان: Edify ) اعمال میکنند باعث یک سری تغییرات در سیستم گوشی میشوند. به عنوان مثال یک گوشی سامسونگ که زبان فارسی پنهان دارد توسط این کد و یک سری پکیج مخصوص زبان فارسی دائم به رام گوشی اضافه میشود که میتوان این عمل رو توسط فلشر ادین و کاستوم ریکاوری اعمال کرد. لازم به ذکر است تمامی این قابلیت ها به خود ابتکار و ایده فرد بستگی داره مثلا دیزبل یوزرکد/ و ممنون از لطف دوستمون آقا حامد که در تاپیک قبلی بنده بهم اخطار داد ولی ایده ها نمیمیرند اینجا نشد یه جای دیگه/ اسم ایلیا فراموش نمیشه این رسم ماست از انسان های خوب به خوبی یاد میشه. موفق باشید
mount : Mounts a filesystem to the defined mount point
is_mounted : Checks if a filesystem is mounted
unmount : Unmounts the filesystem
format : Formats a filesystem as specified
delete : Deletes a file. Must specify at least one file; multiple files can be specified as multiple arguments with the use of ‘,’
delete_recursive : Deletes a folder and all of its contents. At least 1 directory must be specified; multiple directories can be specified as additional arguments
show_progress : Displays flashing progress in the recovery system
package_extract_dir : Extract the all of the files in a directory in the package to the target specified
package_extract_file : Extracts a single file from your update package to the target specified
symlink : Unlinks any existing symbolic links before creating the new symbolic links.
set_perm : Sets permissions of a file or set of files specified. At least one file must be specified (the first four parameters are required)
set_perm_recursive : Set permissions of a directory or set of directories and all files and folders within them. At least one directory must be specified (The first 5 parameters are required)
write_raw_image : This function writes an img file to a partition
ui_print : This function prints/echos a message to the console while the script is running. At least 1 parameter needs to be specified, you can specify additional msg parameters and they will be concatenated to the output
run_program : Executes a program with the arguments specified. Returns a string, I assume it is the buffer of the stdout of the program executed, need to test
assert : If condition evaluates to false, stops script execution, otherwise continues processing