├── .gitattributes ├── .github └── workflows │ ├── master-edk2.yml │ └── master.yml ├── .gitignore ├── .gitmodules ├── CMakeLists.txt ├── LICENSE ├── README.md ├── SimpleInit.dec ├── SimpleInit.dsc ├── SimpleInit.inc ├── docs ├── en │ ├── build │ │ ├── linux-native.md │ │ ├── linux.md │ │ └── uefi.md │ ├── config │ │ ├── boot.configs.extra.efi.md │ │ ├── boot.configs.extra.linux.md │ │ ├── boot.configs.extra.md │ │ ├── boot.configs.extra.reboot.md │ │ ├── boot.configs.extra.switchroot.md │ │ ├── boot.configs.extra.uefi_option.md │ │ ├── boot.configs.md │ │ ├── boot.md │ │ ├── index.md │ │ ├── locates.md │ │ ├── logger.md │ │ └── uefi.md │ └── index.md ├── index.md └── zh │ ├── build │ ├── linux-native.md │ ├── linux.md │ └── uefi.md │ ├── config │ ├── boot.configs.extra.efi.md │ ├── boot.configs.extra.linux.md │ ├── boot.configs.extra.md │ ├── boot.configs.extra.reboot.md │ ├── boot.configs.extra.switchroot.md │ ├── boot.configs.extra.uefi_option.md │ ├── boot.configs.md │ ├── boot.md │ ├── index.md │ ├── locates.md │ ├── logger.md │ └── uefi.md │ ├── examples │ ├── logger.md │ ├── msgbox.md │ └── simple-guiapp.md │ ├── index.md │ └── res │ ├── img1.jpg │ ├── img2.jpg │ └── img3.jpg ├── include ├── KernelFdt.h ├── aboot.h ├── adbd.h ├── array.h ├── assets.h ├── bcd.h ├── boot.h ├── chipinfo.h ├── cmdline.h ├── compress.h ├── confd.h ├── ddrgetconfig.h ├── defines.h ├── devd.h ├── enum_conv.h ├── fdtparser.h ├── filesystem.h ├── frame_protocol.h ├── fsdrv.h ├── gadget.h ├── getopt.h ├── gui.h ├── gui │ ├── activity.h │ ├── clipboard.h │ ├── console.h │ ├── fileopen.h │ ├── filepicker.h │ ├── filetab.h │ ├── fileview.h │ ├── font.h │ ├── guidrv.h │ ├── icon_theme.h │ ├── image.h │ ├── inputbox.h │ ├── lua.h │ ├── msgbox.h │ ├── snackbar.h │ ├── splash.h │ ├── string.h │ ├── sysbar.h │ ├── termview.h │ ├── tools.h │ └── xmlrender.h ├── hardware.h ├── http.h ├── init.h ├── init_internal.h ├── keyval.h ├── kloglevel.h ├── language.h ├── linux_boot.h ├── list.h ├── locate.h ├── lock.h ├── logger.h ├── logtag.h ├── lv_conf.h ├── output.h ├── param.h ├── pathnames.h ├── platforminfo.h ├── pool.h ├── proctitle.h ├── rampartition.h ├── recovery.h ├── service.h ├── service_scheduler.h ├── shell.h ├── str.h ├── system.h ├── ttyd.h ├── uefi.h ├── uevent.h ├── url.h ├── version.h └── xlua.h ├── libs ├── FreeType.inf ├── LittleVgl.inf ├── compatible │ ├── SimpleInitCompatible.inf │ ├── __expo2.c │ ├── __rem_pio2.c │ ├── __rem_pio2_large.c │ ├── __rem_pio2f.c │ ├── __strerror.h │ ├── aarch64 │ │ └── lse.S │ ├── abs.c │ ├── acos.c │ ├── asin.c │ ├── atan.c │ ├── big5.h │ ├── ceil.c │ ├── codepages.h │ ├── cos.c │ ├── ctype.c │ ├── dmisc.c │ ├── dtoa.c │ ├── errno.c │ ├── exit.c │ ├── exp.c │ ├── exp_data.c │ ├── expm1.c │ ├── extern.h │ ├── fabs.c │ ├── fflush.c │ ├── fileext.h │ ├── findfp.c │ ├── floatio.h │ ├── floor.c │ ├── fmod.c │ ├── fread.c │ ├── frexp.c │ ├── fvwrite.c │ ├── fvwrite.h │ ├── gb18030.h │ ├── gdtoa.c │ ├── gdtoa.h │ ├── gdtoaimp.h │ ├── gmisc.c │ ├── hd_init.c │ ├── hkscs.h │ ├── iconv.c │ ├── include │ │ ├── arch │ │ │ ├── aarch64 │ │ │ │ ├── bits │ │ │ │ │ ├── alltypes.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── hwcap.h │ │ │ │ │ ├── posix.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ └── user.h │ │ │ │ ├── fp_arch.h │ │ │ │ ├── gd_qnan.h │ │ │ │ └── reloc.h │ │ │ ├── arm │ │ │ │ ├── bits │ │ │ │ │ ├── alltypes.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── hwcap.h │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── posix.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ └── user.h │ │ │ │ ├── gd_qnan.h │ │ │ │ └── reloc.h │ │ │ ├── generic │ │ │ │ ├── bits │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── kd.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── link.h │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── poll.h │ │ │ │ │ └── statfs.h │ │ │ │ └── fp_arch.h │ │ │ ├── i386 │ │ │ │ ├── bits │ │ │ │ │ ├── alltypes.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── float.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── limits.h │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── posix.h │ │ │ │ │ ├── reg.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── stdint.h │ │ │ │ │ └── user.h │ │ │ │ ├── gd_qnan.h │ │ │ │ └── reloc.h │ │ │ └── x86_64 │ │ │ │ ├── bits │ │ │ │ ├── alltypes.h │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── io.h │ │ │ │ ├── limits.h │ │ │ │ ├── posix.h │ │ │ │ ├── reg.h │ │ │ │ ├── setjmp.h │ │ │ │ ├── signal.h │ │ │ │ ├── stat.h │ │ │ │ ├── stdint.h │ │ │ │ └── user.h │ │ │ │ ├── gd_qnan.h │ │ │ │ └── reloc.h │ │ ├── assert.h │ │ ├── byteswap.h │ │ ├── comp_fdt.h │ │ ├── comp_libfdt.h │ │ ├── comp_libfdt_env.h │ │ ├── compatible.h │ │ ├── ctype.h │ │ ├── dirent.h │ │ ├── endian.h │ │ ├── errno.h │ │ ├── fcntl.h │ │ ├── float.h │ │ ├── iconv.h │ │ ├── inttypes.h │ │ ├── limits.h │ │ ├── locale.h │ │ ├── math.h │ │ ├── setjmp.h │ │ ├── signal.h │ │ ├── stdarg.h │ │ ├── stdbool.h │ │ ├── stddef.h │ │ ├── stdint.h │ │ ├── stdio.h │ │ ├── stdlib.h │ │ ├── string.h │ │ ├── strings.h │ │ ├── sys │ │ │ ├── localedef.h │ │ │ ├── socket.h │ │ │ ├── stat.h │ │ │ ├── string.h │ │ │ ├── time.h │ │ │ └── types.h │ │ ├── time.h │ │ ├── unistd.h │ │ └── wchar.h │ ├── jis0208.h │ ├── ksc.h │ ├── ldexp.c │ ├── legacychars.h │ ├── local.h │ ├── localeconv.c │ ├── log.c │ ├── log10.c │ ├── log2.c │ ├── log2_data.c │ ├── log_data.c │ ├── makebuf.c │ ├── malloc.c │ ├── mb.c │ ├── mb.h │ ├── mbrtowc.c │ ├── mbtowc.c │ ├── mem.c │ ├── misc.c │ ├── modf.c │ ├── namespace.h │ ├── number.c │ ├── pow.c │ ├── pow_data.c │ ├── qsort.c │ ├── rand.c │ ├── reentrant.h │ ├── refill.c │ ├── revjis.h │ ├── scalbn.c │ ├── sin.c │ ├── smisc.c │ ├── snprintf.c │ ├── sprintf.c │ ├── sqrt.c │ ├── sscanf.c │ ├── str.c │ ├── strcspn.c │ ├── strerror.c │ ├── strftime.c │ ├── strtod.c │ ├── strtodg.c │ ├── strtof.c │ ├── strtoimax.c │ ├── strtold_subr.c │ ├── strtopx.c │ ├── strtoumax.c │ ├── stub.c │ ├── sum.c │ ├── tan.c │ ├── time.c │ ├── timevals.h │ ├── tzfile.h │ ├── ulp.c │ ├── ungetc.c │ ├── vasprintf.c │ ├── vfprintf.c │ ├── vfscanf.c │ ├── vsnprintf.c │ ├── wcio.h │ ├── wcrtomb.c │ ├── wctomb.c │ ├── wsetup.c │ └── zone.c ├── freetype-uefi │ ├── ftconfig.h │ └── ftoption.h ├── freetype.cmake ├── hivex │ ├── HivexLib.inf │ ├── LICENSE │ ├── README │ ├── hivex.cmake │ ├── include │ │ └── hivex.h │ └── lib │ │ ├── byte_conversions.h │ │ ├── handle.c │ │ ├── hivex-internal.h │ │ ├── node.c │ │ ├── offset-list.c │ │ ├── utf16.c │ │ ├── util.c │ │ ├── value.c │ │ ├── visit.c │ │ └── write.c ├── json-c │ ├── AUTHORS │ ├── COPYING │ ├── JSONC.inf │ ├── arraylist.c │ ├── arraylist.h │ ├── cmake │ │ ├── config.h.in │ │ └── json_config.h.in │ ├── debug.c │ ├── debug.h │ ├── json-c-uefi │ │ ├── config.h │ │ ├── json_config.h │ │ └── random_seed.c │ ├── json-c.cmake │ ├── json-c.sym │ ├── json.h │ ├── json_c_version.c │ ├── json_c_version.h │ ├── json_config.h.in │ ├── json_inttypes.h │ ├── json_object.c │ ├── json_object.h │ ├── json_object_iterator.c │ ├── json_object_iterator.h │ ├── json_object_private.h │ ├── json_pointer.c │ ├── json_pointer.h │ ├── json_tokener.c │ ├── json_tokener.h │ ├── json_types.h │ ├── json_util.c │ ├── json_util.h │ ├── json_visit.c │ ├── json_visit.h │ ├── libjson.c │ ├── linkhash.c │ ├── linkhash.h │ ├── math_compat.h │ ├── printbuf.c │ ├── printbuf.h │ ├── random_seed.c │ ├── random_seed.h │ ├── snprintf_compat.h │ ├── strdup_compat.h │ ├── strerror_override.c │ ├── strerror_override.h │ ├── strerror_override_private.h │ └── vasprintf_compat.h ├── libkmod │ ├── COPYING │ ├── README │ ├── hash.c │ ├── include │ │ ├── hash.h │ │ ├── libkmod-index.h │ │ ├── libkmod-internal.h │ │ ├── macro.h │ │ ├── strbuf.h │ │ └── util.h │ ├── libkmod-builtin.c │ ├── libkmod-config.c │ ├── libkmod-elf.c │ ├── libkmod-file.c │ ├── libkmod-index.c │ ├── libkmod-list.c │ ├── libkmod-module.c │ ├── libkmod-signature.c │ ├── libkmod.c │ ├── libkmod.cmake │ ├── libkmod.h │ ├── strbuf.c │ └── util.c ├── libmd │ ├── COPYING │ ├── include │ │ ├── md2.h │ │ ├── md4.h │ │ ├── md5.h │ │ ├── ripemd.h │ │ ├── rmd160.h │ │ ├── sha.h │ │ ├── sha1.h │ │ ├── sha2.h │ │ ├── sha256.h │ │ └── sha512.h │ ├── libmd.cmake │ └── src │ │ ├── helper.c │ │ ├── local-link.h │ │ ├── md2.c │ │ ├── md4.c │ │ ├── md5.c │ │ ├── rmd160.c │ │ ├── sha1.c │ │ └── sha2.c ├── libtsm │ ├── COPYING │ ├── LICENSE_htable │ ├── TSMLib.inf │ ├── external │ │ ├── CMakeLists.txt │ │ ├── wcwidth │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE.txt │ │ │ ├── test_wcwidth.c │ │ │ ├── wcwidth.c │ │ │ └── wcwidth.h │ │ └── xkbcommon │ │ │ └── xkbcommon-keysyms.h │ ├── libtsm.cmake │ └── src │ │ ├── config.h.in │ │ ├── shared │ │ ├── shl-array.h │ │ ├── shl-htable.c │ │ ├── shl-htable.h │ │ ├── shl-llog.h │ │ ├── shl-macro.h │ │ ├── shl-pty.c │ │ ├── shl-pty.h │ │ ├── shl-ring.c │ │ └── shl-ring.h │ │ └── tsm │ │ ├── libtsm-int.h │ │ ├── libtsm.h │ │ ├── tsm-render.c │ │ ├── tsm-screen.c │ │ ├── tsm-selection.c │ │ ├── tsm-unicode.c │ │ ├── tsm-vte-charsets.c │ │ └── tsm-vte.c ├── libufdt │ ├── NOTICE │ ├── OWNERS │ ├── UfdtLib.inf │ ├── include │ │ ├── libufdt.h │ │ ├── ufdt_node_pool.h │ │ ├── ufdt_overlay.h │ │ ├── ufdt_overlay_internal.h │ │ └── ufdt_types.h │ ├── libufdt.cmake │ ├── sysdeps │ │ ├── include │ │ │ └── libufdt_sysdeps.h │ │ ├── libufdt_sysdeps_posix.c │ │ └── libufdt_sysdeps_vendor.c │ ├── ufdt_convert.c │ ├── ufdt_node.c │ ├── ufdt_node_pool.c │ ├── ufdt_overlay.c │ ├── ufdt_prop_dict.c │ └── ufdt_prop_dict.h ├── libzip │ ├── AUTHORS │ ├── CMakeLists.txt │ ├── LICENSE │ ├── THANKS │ ├── ZipLib.inf │ ├── cmake-compat │ │ ├── CMakePushCheckState.cmake │ │ ├── CheckLibraryExists.cmake │ │ ├── CheckSymbolExists.cmake │ │ ├── FindBZip2.cmake │ │ ├── FindGnuTLS.cmake │ │ ├── FindLibLZMA.cmake │ │ ├── FindPackageHandleStandardArgs.cmake │ │ ├── FindPackageMessage.cmake │ │ └── SelectLibraryConfigurations.cmake │ ├── cmake-config.h.in │ ├── cmake-zipconf.h.in │ ├── cmake │ │ ├── FindMbedTLS.cmake │ │ ├── FindNettle.cmake │ │ └── FindZstd.cmake │ ├── lib │ │ ├── CMakeLists.txt │ │ ├── compat.h │ │ ├── zip.h │ │ ├── zip_add.c │ │ ├── zip_add_dir.c │ │ ├── zip_add_entry.c │ │ ├── zip_algorithm_bzip2.c │ │ ├── zip_algorithm_deflate.c │ │ ├── zip_algorithm_xz.c │ │ ├── zip_algorithm_zstd.c │ │ ├── zip_buffer.c │ │ ├── zip_close.c │ │ ├── zip_crypto.h │ │ ├── zip_crypto_commoncrypto.c │ │ ├── zip_crypto_commoncrypto.h │ │ ├── zip_crypto_gnutls.c │ │ ├── zip_crypto_gnutls.h │ │ ├── zip_crypto_mbedtls.c │ │ ├── zip_crypto_mbedtls.h │ │ ├── zip_crypto_openssl.c │ │ ├── zip_crypto_openssl.h │ │ ├── zip_crypto_win.c │ │ ├── zip_crypto_win.h │ │ ├── zip_delete.c │ │ ├── zip_dir_add.c │ │ ├── zip_dirent.c │ │ ├── zip_discard.c │ │ ├── zip_entry.c │ │ ├── zip_error.c │ │ ├── zip_error_clear.c │ │ ├── zip_error_get.c │ │ ├── zip_error_get_sys_type.c │ │ ├── zip_error_strerror.c │ │ ├── zip_error_to_str.c │ │ ├── zip_extra_field.c │ │ ├── zip_extra_field_api.c │ │ ├── zip_fclose.c │ │ ├── zip_fdopen.c │ │ ├── zip_file_add.c │ │ ├── zip_file_error_clear.c │ │ ├── zip_file_error_get.c │ │ ├── zip_file_get_comment.c │ │ ├── zip_file_get_external_attributes.c │ │ ├── zip_file_get_offset.c │ │ ├── zip_file_rename.c │ │ ├── zip_file_replace.c │ │ ├── zip_file_set_comment.c │ │ ├── zip_file_set_encryption.c │ │ ├── zip_file_set_external_attributes.c │ │ ├── zip_file_set_mtime.c │ │ ├── zip_file_strerror.c │ │ ├── zip_fopen.c │ │ ├── zip_fopen_encrypted.c │ │ ├── zip_fopen_index.c │ │ ├── zip_fopen_index_encrypted.c │ │ ├── zip_fread.c │ │ ├── zip_fseek.c │ │ ├── zip_ftell.c │ │ ├── zip_get_archive_comment.c │ │ ├── zip_get_archive_flag.c │ │ ├── zip_get_encryption_implementation.c │ │ ├── zip_get_file_comment.c │ │ ├── zip_get_name.c │ │ ├── zip_get_num_entries.c │ │ ├── zip_get_num_files.c │ │ ├── zip_hash.c │ │ ├── zip_io_util.c │ │ ├── zip_libzip_version.c │ │ ├── zip_memdup.c │ │ ├── zip_name_locate.c │ │ ├── zip_new.c │ │ ├── zip_open.c │ │ ├── zip_pkware.c │ │ ├── zip_progress.c │ │ ├── zip_random_uefi.c │ │ ├── zip_random_unix.c │ │ ├── zip_rename.c │ │ ├── zip_replace.c │ │ ├── zip_set_archive_comment.c │ │ ├── zip_set_archive_flag.c │ │ ├── zip_set_default_password.c │ │ ├── zip_set_file_comment.c │ │ ├── zip_set_file_compression.c │ │ ├── zip_set_name.c │ │ ├── zip_source_accept_empty.c │ │ ├── zip_source_begin_write.c │ │ ├── zip_source_begin_write_cloning.c │ │ ├── zip_source_buffer.c │ │ ├── zip_source_call.c │ │ ├── zip_source_close.c │ │ ├── zip_source_commit_write.c │ │ ├── zip_source_compress.c │ │ ├── zip_source_crc.c │ │ ├── zip_source_error.c │ │ ├── zip_source_file.h │ │ ├── zip_source_file_common.c │ │ ├── zip_source_file_stdio.c │ │ ├── zip_source_file_stdio.h │ │ ├── zip_source_file_stdio_named.c │ │ ├── zip_source_free.c │ │ ├── zip_source_function.c │ │ ├── zip_source_get_file_attributes.c │ │ ├── zip_source_is_deleted.c │ │ ├── zip_source_layered.c │ │ ├── zip_source_open.c │ │ ├── zip_source_pkware_decode.c │ │ ├── zip_source_pkware_encode.c │ │ ├── zip_source_read.c │ │ ├── zip_source_remove.c │ │ ├── zip_source_rollback_write.c │ │ ├── zip_source_seek.c │ │ ├── zip_source_seek_write.c │ │ ├── zip_source_stat.c │ │ ├── zip_source_supports.c │ │ ├── zip_source_tell.c │ │ ├── zip_source_tell_write.c │ │ ├── zip_source_window.c │ │ ├── zip_source_winzip_aes_decode.c │ │ ├── zip_source_winzip_aes_encode.c │ │ ├── zip_source_write.c │ │ ├── zip_source_zip.c │ │ ├── zip_source_zip_new.c │ │ ├── zip_stat.c │ │ ├── zip_stat_index.c │ │ ├── zip_stat_init.c │ │ ├── zip_strerror.c │ │ ├── zip_string.c │ │ ├── zip_unchange.c │ │ ├── zip_unchange_all.c │ │ ├── zip_unchange_archive.c │ │ ├── zip_unchange_data.c │ │ ├── zip_utf-8.c │ │ ├── zip_winzip_aes.c │ │ └── zipint.h │ ├── libzip-config.cmake.in │ ├── src │ │ ├── CMakeLists.txt │ │ ├── diff_output.c │ │ ├── diff_output.h │ │ ├── zipcmp.c │ │ ├── zipmerge.c │ │ └── ziptool.c │ └── uefi │ │ ├── config.h │ │ ├── zip_err_str.c │ │ └── zipconf.h ├── lodepng │ ├── LodePNG.inf │ ├── lodepng.c │ ├── lodepng.cmake │ └── lodepng.h ├── lua │ ├── LuaLib.inf │ ├── lapi.c │ ├── lapi.h │ ├── lauxlib.c │ ├── lauxlib.h │ ├── lbaselib.c │ ├── lcode.c │ ├── lcode.h │ ├── lcorolib.c │ ├── lctype.c │ ├── lctype.h │ ├── ldblib.c │ ├── ldebug.c │ ├── ldebug.h │ ├── ldo.c │ ├── ldo.h │ ├── ldump.c │ ├── lfunc.c │ ├── lfunc.h │ ├── lgc.c │ ├── lgc.h │ ├── linit.c │ ├── liolib.c │ ├── ljumptab.h │ ├── llex.c │ ├── llex.h │ ├── llimits.h │ ├── lmathlib.c │ ├── lmem.c │ ├── lmem.h │ ├── loadlib.c │ ├── lobject.c │ ├── lobject.h │ ├── lopcodes.c │ ├── lopcodes.h │ ├── lopnames.h │ ├── loslib.c │ ├── lparser.c │ ├── lparser.h │ ├── lprefix.h │ ├── lstate.c │ ├── lstate.h │ ├── lstring.c │ ├── lstring.h │ ├── lstrlib.c │ ├── ltable.c │ ├── ltable.h │ ├── ltablib.c │ ├── ltests.c │ ├── ltests.h │ ├── ltm.c │ ├── ltm.h │ ├── lua-uefi │ │ ├── liolib.c │ │ └── loslib.c │ ├── lua.c │ ├── lua.cmake │ ├── lua.h │ ├── luaconf.h │ ├── lualib.h │ ├── lundump.c │ ├── lundump.h │ ├── lutf8lib.c │ ├── lvm.c │ ├── lvm.h │ ├── lzio.c │ └── lzio.h ├── lvgl.cmake ├── lvgl │ ├── .editorconfig │ ├── .gitignore │ ├── Kconfig │ ├── LICENCE.txt │ ├── README.md │ ├── README_zh.md │ ├── component.mk │ ├── library.json │ ├── library.properties │ ├── lv_conf_template.h │ ├── lvgl.h │ ├── lvgl.mk │ └── src │ │ ├── core │ │ ├── lv_core.mk │ │ ├── lv_disp.c │ │ ├── lv_disp.h │ │ ├── lv_event.c │ │ ├── lv_event.h │ │ ├── lv_group.c │ │ ├── lv_group.h │ │ ├── lv_indev.c │ │ ├── lv_indev.h │ │ ├── lv_indev_scroll.c │ │ ├── lv_indev_scroll.h │ │ ├── lv_obj.c │ │ ├── lv_obj.h │ │ ├── lv_obj_class.c │ │ ├── lv_obj_class.h │ │ ├── lv_obj_draw.c │ │ ├── lv_obj_draw.h │ │ ├── lv_obj_pos.c │ │ ├── lv_obj_pos.h │ │ ├── lv_obj_scroll.c │ │ ├── lv_obj_scroll.h │ │ ├── lv_obj_style.c │ │ ├── lv_obj_style.h │ │ ├── lv_obj_style_gen.c │ │ ├── lv_obj_style_gen.h │ │ ├── lv_obj_tree.c │ │ ├── lv_obj_tree.h │ │ ├── lv_refr.c │ │ ├── lv_refr.h │ │ ├── lv_theme.c │ │ └── lv_theme.h │ │ ├── draw │ │ ├── arm2d │ │ │ ├── lv_draw_arm2d.mk │ │ │ ├── lv_gpu_arm2d.c │ │ │ └── lv_gpu_arm2d.h │ │ ├── lv_draw.c │ │ ├── lv_draw.h │ │ ├── lv_draw.mk │ │ ├── lv_draw_arc.c │ │ ├── lv_draw_arc.h │ │ ├── lv_draw_img.c │ │ ├── lv_draw_img.h │ │ ├── lv_draw_label.c │ │ ├── lv_draw_label.h │ │ ├── lv_draw_layer.c │ │ ├── lv_draw_layer.h │ │ ├── lv_draw_line.c │ │ ├── lv_draw_line.h │ │ ├── lv_draw_mask.c │ │ ├── lv_draw_mask.h │ │ ├── lv_draw_rect.c │ │ ├── lv_draw_rect.h │ │ ├── lv_draw_transform.c │ │ ├── lv_draw_transform.h │ │ ├── lv_draw_triangle.c │ │ ├── lv_draw_triangle.h │ │ ├── lv_img_buf.c │ │ ├── lv_img_buf.h │ │ ├── lv_img_cache.c │ │ ├── lv_img_cache.h │ │ ├── lv_img_decoder.c │ │ ├── lv_img_decoder.h │ │ ├── nxp │ │ │ ├── lv_draw_nxp.mk │ │ │ ├── lv_gpu_nxp.c │ │ │ ├── lv_gpu_nxp.h │ │ │ ├── pxp │ │ │ │ ├── lv_draw_nxp_pxp.mk │ │ │ │ ├── lv_draw_pxp_blend.c │ │ │ │ ├── lv_draw_pxp_blend.h │ │ │ │ ├── lv_gpu_nxp_pxp.c │ │ │ │ ├── lv_gpu_nxp_pxp.h │ │ │ │ ├── lv_gpu_nxp_pxp_osa.c │ │ │ │ └── lv_gpu_nxp_pxp_osa.h │ │ │ └── vglite │ │ │ │ ├── lv_draw_nxp_vglite.mk │ │ │ │ ├── lv_draw_vglite_arc.c │ │ │ │ ├── lv_draw_vglite_arc.h │ │ │ │ ├── lv_draw_vglite_blend.c │ │ │ │ ├── lv_draw_vglite_blend.h │ │ │ │ ├── lv_draw_vglite_rect.c │ │ │ │ ├── lv_draw_vglite_rect.h │ │ │ │ ├── lv_gpu_nxp_vglite.c │ │ │ │ └── lv_gpu_nxp_vglite.h │ │ ├── sdl │ │ │ ├── README.md │ │ │ ├── lv_draw_sdl.c │ │ │ ├── lv_draw_sdl.h │ │ │ ├── lv_draw_sdl.mk │ │ │ ├── lv_draw_sdl_arc.c │ │ │ ├── lv_draw_sdl_bg.c │ │ │ ├── lv_draw_sdl_composite.c │ │ │ ├── lv_draw_sdl_composite.h │ │ │ ├── lv_draw_sdl_img.c │ │ │ ├── lv_draw_sdl_img.h │ │ │ ├── lv_draw_sdl_label.c │ │ │ ├── lv_draw_sdl_layer.c │ │ │ ├── lv_draw_sdl_layer.h │ │ │ ├── lv_draw_sdl_line.c │ │ │ ├── lv_draw_sdl_mask.c │ │ │ ├── lv_draw_sdl_mask.h │ │ │ ├── lv_draw_sdl_polygon.c │ │ │ ├── lv_draw_sdl_priv.h │ │ │ ├── lv_draw_sdl_rect.c │ │ │ ├── lv_draw_sdl_rect.h │ │ │ ├── lv_draw_sdl_stack_blur.c │ │ │ ├── lv_draw_sdl_stack_blur.h │ │ │ ├── lv_draw_sdl_texture_cache.c │ │ │ ├── lv_draw_sdl_texture_cache.h │ │ │ ├── lv_draw_sdl_utils.c │ │ │ └── lv_draw_sdl_utils.h │ │ ├── stm32_dma2d │ │ │ ├── lv_draw_stm32_dma2d.mk │ │ │ ├── lv_gpu_stm32_dma2d.c │ │ │ └── lv_gpu_stm32_dma2d.h │ │ ├── sw │ │ │ ├── lv_draw_sw.c │ │ │ ├── lv_draw_sw.h │ │ │ ├── lv_draw_sw.mk │ │ │ ├── lv_draw_sw_arc.c │ │ │ ├── lv_draw_sw_blend.c │ │ │ ├── lv_draw_sw_blend.h │ │ │ ├── lv_draw_sw_dither.c │ │ │ ├── lv_draw_sw_dither.h │ │ │ ├── lv_draw_sw_gradient.c │ │ │ ├── lv_draw_sw_gradient.h │ │ │ ├── lv_draw_sw_img.c │ │ │ ├── lv_draw_sw_layer.c │ │ │ ├── lv_draw_sw_letter.c │ │ │ ├── lv_draw_sw_line.c │ │ │ ├── lv_draw_sw_polygon.c │ │ │ ├── lv_draw_sw_rect.c │ │ │ └── lv_draw_sw_transform.c │ │ └── swm341_dma2d │ │ │ ├── lv_draw_swm341_dma2d.mk │ │ │ ├── lv_gpu_swm341_dma2d.c │ │ │ └── lv_gpu_swm341_dma2d.h │ │ ├── extra │ │ ├── README.md │ │ ├── layouts │ │ │ ├── flex │ │ │ │ ├── lv_flex.c │ │ │ │ └── lv_flex.h │ │ │ ├── grid │ │ │ │ ├── lv_grid.c │ │ │ │ └── lv_grid.h │ │ │ └── lv_layouts.h │ │ ├── libs │ │ │ ├── bmp │ │ │ │ ├── lv_bmp.c │ │ │ │ └── lv_bmp.h │ │ │ ├── ffmpeg │ │ │ │ ├── lv_ffmpeg.c │ │ │ │ └── lv_ffmpeg.h │ │ │ ├── fsdrv │ │ │ │ ├── lv_fs_fatfs.c │ │ │ │ ├── lv_fs_posix.c │ │ │ │ ├── lv_fs_stdio.c │ │ │ │ ├── lv_fs_win32.c │ │ │ │ └── lv_fsdrv.h │ │ │ ├── gif │ │ │ │ ├── gifdec.c │ │ │ │ ├── gifdec.h │ │ │ │ ├── lv_gif.c │ │ │ │ └── lv_gif.h │ │ │ ├── lv_libs.h │ │ │ ├── qrcode │ │ │ │ ├── lv_qrcode.c │ │ │ │ ├── lv_qrcode.h │ │ │ │ ├── qrcodegen.c │ │ │ │ └── qrcodegen.h │ │ │ ├── rlottie │ │ │ │ ├── lv_rlottie.c │ │ │ │ └── lv_rlottie.h │ │ │ └── sjpg │ │ │ │ ├── lv_sjpg.c │ │ │ │ ├── lv_sjpg.h │ │ │ │ ├── tjpgd.c │ │ │ │ ├── tjpgd.h │ │ │ │ └── tjpgdcnf.h │ │ ├── lv_extra.c │ │ ├── lv_extra.h │ │ ├── lv_extra.mk │ │ ├── others │ │ │ ├── fragment │ │ │ │ ├── README.md │ │ │ │ ├── lv_fragment.c │ │ │ │ ├── lv_fragment.h │ │ │ │ └── lv_fragment_manager.c │ │ │ ├── gridnav │ │ │ │ ├── lv_gridnav.c │ │ │ │ └── lv_gridnav.h │ │ │ ├── ime │ │ │ │ ├── lv_ime_pinyin.c │ │ │ │ └── lv_ime_pinyin.h │ │ │ ├── imgfont │ │ │ │ ├── lv_imgfont.c │ │ │ │ └── lv_imgfont.h │ │ │ ├── lv_others.h │ │ │ ├── monkey │ │ │ │ ├── lv_monkey.c │ │ │ │ └── lv_monkey.h │ │ │ ├── msg │ │ │ │ ├── lv_msg.c │ │ │ │ └── lv_msg.h │ │ │ └── snapshot │ │ │ │ ├── lv_snapshot.c │ │ │ │ └── lv_snapshot.h │ │ ├── themes │ │ │ ├── basic │ │ │ │ ├── lv_theme_basic.c │ │ │ │ └── lv_theme_basic.h │ │ │ ├── default │ │ │ │ ├── lv_theme_default.c │ │ │ │ └── lv_theme_default.h │ │ │ ├── lv_themes.h │ │ │ └── mono │ │ │ │ ├── lv_theme_mono.c │ │ │ │ └── lv_theme_mono.h │ │ └── widgets │ │ │ ├── animimg │ │ │ ├── lv_animimg.c │ │ │ └── lv_animimg.h │ │ │ ├── calendar │ │ │ ├── lv_calendar.c │ │ │ ├── lv_calendar.h │ │ │ ├── lv_calendar_header_arrow.c │ │ │ ├── lv_calendar_header_arrow.h │ │ │ ├── lv_calendar_header_dropdown.c │ │ │ └── lv_calendar_header_dropdown.h │ │ │ ├── chart │ │ │ ├── lv_chart.c │ │ │ └── lv_chart.h │ │ │ ├── colorwheel │ │ │ ├── lv_colorwheel.c │ │ │ └── lv_colorwheel.h │ │ │ ├── imgbtn │ │ │ ├── lv_imgbtn.c │ │ │ └── lv_imgbtn.h │ │ │ ├── keyboard │ │ │ ├── lv_keyboard.c │ │ │ └── lv_keyboard.h │ │ │ ├── led │ │ │ ├── lv_led.c │ │ │ └── lv_led.h │ │ │ ├── list │ │ │ ├── lv_list.c │ │ │ └── lv_list.h │ │ │ ├── lv_widgets.h │ │ │ ├── menu │ │ │ ├── lv_menu.c │ │ │ └── lv_menu.h │ │ │ ├── meter │ │ │ ├── lv_meter.c │ │ │ └── lv_meter.h │ │ │ ├── msgbox │ │ │ ├── lv_msgbox.c │ │ │ └── lv_msgbox.h │ │ │ ├── span │ │ │ ├── lv_span.c │ │ │ └── lv_span.h │ │ │ ├── spinbox │ │ │ ├── lv_spinbox.c │ │ │ └── lv_spinbox.h │ │ │ ├── spinner │ │ │ ├── lv_spinner.c │ │ │ └── lv_spinner.h │ │ │ ├── tabview │ │ │ ├── lv_tabview.c │ │ │ └── lv_tabview.h │ │ │ ├── tileview │ │ │ ├── lv_tileview.c │ │ │ └── lv_tileview.h │ │ │ └── win │ │ │ ├── lv_win.c │ │ │ └── lv_win.h │ │ ├── font │ │ ├── lv_font.c │ │ ├── lv_font.h │ │ ├── lv_font.mk │ │ ├── lv_font_fmt_txt.c │ │ ├── lv_font_fmt_txt.h │ │ ├── lv_font_loader.c │ │ ├── lv_font_loader.h │ │ └── lv_symbol_def.h │ │ ├── hal │ │ ├── lv_hal.h │ │ ├── lv_hal.mk │ │ ├── lv_hal_disp.c │ │ ├── lv_hal_disp.h │ │ ├── lv_hal_indev.c │ │ ├── lv_hal_indev.h │ │ ├── lv_hal_tick.c │ │ └── lv_hal_tick.h │ │ ├── lv_api_map.h │ │ ├── lv_conf_internal.h │ │ ├── lv_conf_kconfig.h │ │ ├── lvgl.h │ │ ├── misc │ │ ├── lv_anim.c │ │ ├── lv_anim.h │ │ ├── lv_anim_timeline.c │ │ ├── lv_anim_timeline.h │ │ ├── lv_area.c │ │ ├── lv_area.h │ │ ├── lv_assert.h │ │ ├── lv_async.c │ │ ├── lv_async.h │ │ ├── lv_bidi.c │ │ ├── lv_bidi.h │ │ ├── lv_color.c │ │ ├── lv_color.h │ │ ├── lv_fs.c │ │ ├── lv_fs.h │ │ ├── lv_gc.c │ │ ├── lv_gc.h │ │ ├── lv_ll.c │ │ ├── lv_ll.h │ │ ├── lv_log.c │ │ ├── lv_log.h │ │ ├── lv_lru.c │ │ ├── lv_lru.h │ │ ├── lv_math.c │ │ ├── lv_math.h │ │ ├── lv_mem.c │ │ ├── lv_mem.h │ │ ├── lv_misc.mk │ │ ├── lv_printf.c │ │ ├── lv_printf.h │ │ ├── lv_style.c │ │ ├── lv_style.h │ │ ├── lv_style_gen.c │ │ ├── lv_style_gen.h │ │ ├── lv_templ.c │ │ ├── lv_templ.h │ │ ├── lv_timer.c │ │ ├── lv_timer.h │ │ ├── lv_tlsf.c │ │ ├── lv_tlsf.h │ │ ├── lv_txt.c │ │ ├── lv_txt.h │ │ ├── lv_txt_ap.c │ │ ├── lv_txt_ap.h │ │ ├── lv_types.h │ │ ├── lv_utils.c │ │ └── lv_utils.h │ │ └── widgets │ │ ├── lv_arc.c │ │ ├── lv_arc.h │ │ ├── lv_bar.c │ │ ├── lv_bar.h │ │ ├── lv_btn.c │ │ ├── lv_btn.h │ │ ├── lv_btnmatrix.c │ │ ├── lv_btnmatrix.h │ │ ├── lv_canvas.c │ │ ├── lv_canvas.h │ │ ├── lv_checkbox.c │ │ ├── lv_checkbox.h │ │ ├── lv_dropdown.c │ │ ├── lv_dropdown.h │ │ ├── lv_img.c │ │ ├── lv_img.h │ │ ├── lv_label.c │ │ ├── lv_label.h │ │ ├── lv_line.c │ │ ├── lv_line.h │ │ ├── lv_objx_templ.c │ │ ├── lv_objx_templ.h │ │ ├── lv_roller.c │ │ ├── lv_roller.h │ │ ├── lv_slider.c │ │ ├── lv_slider.h │ │ ├── lv_switch.c │ │ ├── lv_switch.h │ │ ├── lv_table.c │ │ ├── lv_table.h │ │ ├── lv_textarea.c │ │ ├── lv_textarea.h │ │ └── lv_widgets.mk ├── mxml │ ├── LICENSE │ ├── MiniXML.inf │ ├── config.h.in │ ├── mxml-attr.c │ ├── mxml-entity.c │ ├── mxml-file.c │ ├── mxml-get.c │ ├── mxml-index.c │ ├── mxml-node.c │ ├── mxml-private.c │ ├── mxml-private.h │ ├── mxml-search.c │ ├── mxml-set.c │ ├── mxml-string.c │ ├── mxml-uefi │ │ └── config.h │ ├── mxml.cmake │ ├── mxml.config.h.in │ └── mxml.h ├── nanosvg │ ├── LICENSE.txt │ ├── NanoSVG.inf │ ├── nanosvg.c │ ├── nanosvg.cmake │ └── src │ │ ├── nanosvg.h │ │ └── nanosvgrast.h ├── regex │ ├── RegexLib.inf │ ├── regex.cmake │ ├── regexp.c │ └── regexp.h ├── stb │ ├── LICENSE │ ├── STBLib.inf │ ├── stb.c │ ├── stb.cmake │ ├── stb_c_lexer.h │ ├── stb_connected_components.h │ ├── stb_divide.h │ ├── stb_ds.h │ ├── stb_dxt.h │ ├── stb_easy_font.h │ ├── stb_herringbone_wang_tile.h │ ├── stb_hexwave.h │ ├── stb_image.h │ ├── stb_image_resize.h │ ├── stb_image_write.h │ ├── stb_include.h │ ├── stb_leakcheck.h │ ├── stb_rect_pack.h │ ├── stb_sprintf.h │ ├── stb_textedit.h │ ├── stb_tilemap_editor.h │ ├── stb_truetype.h │ ├── stb_vorbis.c │ └── stb_voxel_render.h ├── util-linux │ ├── COPYING │ ├── README │ ├── README.licensing │ ├── include │ │ ├── blkdev.h │ │ ├── buffer.h │ │ ├── canonicalize.h │ │ ├── carefulputc.h │ │ ├── closestream.h │ │ ├── color-names.h │ │ ├── crc32.h │ │ ├── crc32c.h │ │ ├── encode.h │ │ ├── fileutils.h │ │ ├── jsonwrt.h │ │ ├── linux_version.h │ │ ├── loopdev.h │ │ ├── mangle.h │ │ ├── match.h │ │ ├── mbsalign.h │ │ ├── minix.h │ │ ├── monotonic.h │ │ ├── namespace.h │ │ ├── partx.h │ │ ├── path.h │ │ ├── pt-bsd.h │ │ ├── pt-gpt-partnames.h │ │ ├── pt-mbr-partnames.h │ │ ├── pt-mbr.h │ │ ├── pt-sgi.h │ │ ├── pt-sun.h │ │ ├── statfs_magic.h │ │ ├── strutils.h │ │ ├── sysfs.h │ │ ├── ttyutils.h │ │ ├── ul-list.h │ │ └── ul-md5.h │ ├── lib │ │ ├── blkdev.c │ │ ├── buffer.c │ │ ├── canonicalize.c │ │ ├── crc32.c │ │ ├── crc32c.c │ │ ├── encode.c │ │ ├── fileutils.c │ │ ├── jsonwrt.c │ │ ├── linux_version.c │ │ ├── loopdev.c │ │ ├── mangle.c │ │ ├── match.c │ │ ├── mbsalign.c │ │ ├── monotonic.c │ │ ├── path.c │ │ ├── strutils.c │ │ └── sysfs.c │ ├── libblkid │ │ ├── COPYING │ │ ├── blkid.h │ │ ├── blkidP.h │ │ ├── cache.c │ │ ├── config.c │ │ ├── dev.c │ │ ├── devname.c │ │ ├── devno.c │ │ ├── encode.c │ │ ├── evaluate.c │ │ ├── getsize.c │ │ ├── partitions │ │ │ ├── aix.c │ │ │ ├── aix.h │ │ │ ├── atari.c │ │ │ ├── bsd.c │ │ │ ├── dos.c │ │ │ ├── gpt.c │ │ │ ├── mac.c │ │ │ ├── minix.c │ │ │ ├── partitions.c │ │ │ ├── partitions.h │ │ │ ├── sgi.c │ │ │ ├── solaris_x86.c │ │ │ ├── sun.c │ │ │ ├── ultrix.c │ │ │ └── unixware.c │ │ ├── probe.c │ │ ├── read.c │ │ ├── resolve.c │ │ ├── save.c │ │ ├── superblocks │ │ │ ├── adaptec_raid.c │ │ │ ├── apfs.c │ │ │ ├── bcache.c │ │ │ ├── befs.c │ │ │ ├── bfs.c │ │ │ ├── bitlocker.c │ │ │ ├── bluestore.c │ │ │ ├── btrfs.c │ │ │ ├── cramfs.c │ │ │ ├── ddf_raid.c │ │ │ ├── drbd.c │ │ │ ├── drbdmanage.c │ │ │ ├── drbdproxy_datalog.c │ │ │ ├── erofs.c │ │ │ ├── exfat.c │ │ │ ├── exfs.c │ │ │ ├── ext.c │ │ │ ├── f2fs.c │ │ │ ├── gfs.c │ │ │ ├── hfs.c │ │ │ ├── highpoint_raid.c │ │ │ ├── hpfs.c │ │ │ ├── iso9660.c │ │ │ ├── isw_raid.c │ │ │ ├── jfs.c │ │ │ ├── jmicron_raid.c │ │ │ ├── linux_raid.c │ │ │ ├── lsi_raid.c │ │ │ ├── luks.c │ │ │ ├── lvm.c │ │ │ ├── minix.c │ │ │ ├── mpool.c │ │ │ ├── netware.c │ │ │ ├── nilfs.c │ │ │ ├── ntfs.c │ │ │ ├── nvidia_raid.c │ │ │ ├── ocfs.c │ │ │ ├── promise_raid.c │ │ │ ├── refs.c │ │ │ ├── reiserfs.c │ │ │ ├── romfs.c │ │ │ ├── silicon_raid.c │ │ │ ├── squashfs.c │ │ │ ├── stratis.c │ │ │ ├── superblocks.c │ │ │ ├── superblocks.h │ │ │ ├── swap.c │ │ │ ├── sysv.c │ │ │ ├── ubi.c │ │ │ ├── ubifs.c │ │ │ ├── udf.c │ │ │ ├── ufs.c │ │ │ ├── vdo.c │ │ │ ├── vfat.c │ │ │ ├── via_raid.c │ │ │ ├── vmfs.c │ │ │ ├── vxfs.c │ │ │ ├── xfs.c │ │ │ ├── zfs.c │ │ │ └── zonefs.c │ │ ├── tag.c │ │ ├── topology │ │ │ ├── dm.c │ │ │ ├── evms.c │ │ │ ├── ioctl.c │ │ │ ├── lvm.c │ │ │ ├── md.c │ │ │ ├── sysfs.c │ │ │ ├── topology.c │ │ │ └── topology.h │ │ ├── verify.c │ │ └── version.c │ ├── libfdisk │ │ ├── alignment.c │ │ ├── ask.c │ │ ├── bsd.c │ │ ├── context.c │ │ ├── dos.c │ │ ├── fdiskP.h │ │ ├── field.c │ │ ├── gpt.c │ │ ├── item.c │ │ ├── iter.c │ │ ├── label.c │ │ ├── libfdisk.h │ │ ├── partition.c │ │ ├── parttype.c │ │ ├── script.c │ │ ├── sgi.c │ │ ├── sun.c │ │ ├── table.c │ │ ├── utils.c │ │ ├── version.c │ │ └── wipe.c │ ├── libmount │ │ ├── COPYING │ │ ├── btrfs.c │ │ ├── cache.c │ │ ├── context.c │ │ ├── context_loopdev.c │ │ ├── context_mount.c │ │ ├── context_umount.c │ │ ├── context_veritydev.c │ │ ├── fs.c │ │ ├── iter.c │ │ ├── libmount.h │ │ ├── lock.c │ │ ├── monitor.c │ │ ├── mountP.h │ │ ├── optmap.c │ │ ├── optstr.c │ │ ├── tab.c │ │ ├── tab_diff.c │ │ ├── tab_parse.c │ │ ├── tab_update.c │ │ ├── utils.c │ │ └── version.c │ ├── libsmartcols │ │ ├── COPYING │ │ ├── calculate.c │ │ ├── cell.c │ │ ├── column.c │ │ ├── grouping.c │ │ ├── iter.c │ │ ├── libsmartcols.h │ │ ├── line.c │ │ ├── print-api.c │ │ ├── print.c │ │ ├── smartcolsP.h │ │ ├── symbols.c │ │ ├── table.c │ │ ├── version.c │ │ └── walk.c │ ├── libuuid │ │ ├── .dirstamp │ │ ├── COPYING │ │ ├── clear.c │ │ ├── compare.c │ │ ├── copy.c │ │ ├── gen_uuid.c │ │ ├── isnull.c │ │ ├── pack.c │ │ ├── parse.c │ │ ├── predefined.c │ │ ├── unpack.c │ │ ├── unparse.c │ │ ├── uuid.h │ │ ├── uuidP.h │ │ ├── uuid_time.c │ │ └── uuidd.h │ └── ul.cmake └── zlib │ ├── Zlib.inf │ ├── adler32.c │ ├── compress.c │ ├── crc32.c │ ├── crc32.h │ ├── deflate.c │ ├── deflate.h │ ├── gzclose.c │ ├── gzguts.h │ ├── gzlib.c │ ├── gzread.c │ ├── gzwrite.c │ ├── infback.c │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── trees.c │ ├── trees.h │ ├── uncompr.c │ ├── zconf.h │ ├── zlib.cmake │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── po ├── CMakeLists.txt └── zh_CN.po ├── prebuilts ├── kernel.txz └── vmlinuz ├── root ├── .gitignore ├── .gitkeep ├── bin ├── dev │ └── .gitkeep ├── etc │ ├── default.ttf │ ├── group │ ├── gshadow │ ├── hosts │ ├── mtab │ ├── passwd │ ├── profile │ ├── protocols │ ├── resolv.conf │ ├── services │ ├── shadow │ ├── shells │ ├── symbols.ttf │ └── terminfo │ │ ├── a │ │ └── ansi │ │ ├── d │ │ └── dumb │ │ ├── e │ │ └── emu │ │ ├── l │ │ └── linux │ │ ├── n │ │ └── ntconsole │ │ ├── p │ │ ├── pty │ │ ├── putty │ │ └── putty-256color │ │ ├── r │ │ ├── rxvt │ │ ├── rxvt-256color │ │ └── rxvt-color │ │ ├── s │ │ ├── screen │ │ └── screen-256color │ │ ├── v │ │ ├── vt100 │ │ ├── vt102 │ │ ├── vt200 │ │ └── vt220 │ │ └── x │ │ ├── xterm │ │ ├── xterm-256color │ │ ├── xterm-color │ │ └── xterm-xfree86 ├── lib ├── lib64 ├── proc │ └── .gitkeep ├── run │ └── .gitkeep ├── sbin ├── sys │ └── .gitkeep ├── tmp │ └── .gitkeep ├── usr │ ├── bin │ │ └── .gitkeep │ ├── lib │ │ └── .gitkeep │ ├── lib64 │ ├── sbin │ └── share │ │ ├── fonts │ │ ├── fontawesome5.ttf │ │ └── wqy-mono-microhei.ttf │ │ ├── mime │ │ └── mime.types │ │ ├── pixmaps │ │ ├── mime │ │ │ ├── application-x-zerosize.svg │ │ │ ├── inode-blockdevice.svg │ │ │ ├── inode-chardevice.svg │ │ │ ├── inode-dir.svg │ │ │ ├── inode-disk.svg │ │ │ ├── inode-fifo.svg │ │ │ ├── inode-file.svg │ │ │ ├── inode-mount-point.svg │ │ │ ├── inode-parent.svg │ │ │ ├── inode-socket.svg │ │ │ ├── inode-symlink.svg │ │ │ ├── text-x-plain.svg │ │ │ └── unknown.svg │ │ └── simple-init │ │ │ ├── abootimg.svg │ │ │ ├── acpi.svg │ │ │ ├── apps.svg │ │ │ ├── back.svg │ │ │ ├── backlight.svg │ │ │ ├── backup.svg │ │ │ ├── battery.svg │ │ │ ├── bg.jpg │ │ │ ├── bootmgr.svg │ │ │ ├── calendar.svg │ │ │ ├── cdrom.svg │ │ │ ├── clipboard.svg │ │ │ ├── conftool.svg │ │ │ ├── distributor-logo-absolute.svg │ │ │ ├── distributor-logo-academix.svg │ │ │ ├── distributor-logo-aix.svg │ │ │ ├── distributor-logo-alpine.svg │ │ │ ├── distributor-logo-alt-linux.svg │ │ │ ├── distributor-logo-android.svg │ │ │ ├── distributor-logo-antix.svg │ │ │ ├── distributor-logo-archbang.svg │ │ │ ├── distributor-logo-archlabs.svg │ │ │ ├── distributor-logo-archlinux.svg │ │ │ ├── distributor-logo-archman.svg │ │ │ ├── distributor-logo-artix.svg │ │ │ ├── distributor-logo-aryalinux.svg │ │ │ ├── distributor-logo-backbox.svg │ │ │ ├── distributor-logo-blackarch.svg │ │ │ ├── distributor-logo-bodhi-linux.svg │ │ │ ├── distributor-logo-bunsenlabs.svg │ │ │ ├── distributor-logo-calculate-linux.svg │ │ │ ├── distributor-logo-condres.svg │ │ │ ├── distributor-logo-debian.svg │ │ │ ├── distributor-logo-deepin.svg │ │ │ ├── distributor-logo-devuan.svg │ │ │ ├── distributor-logo-dragonflybsd.svg │ │ │ ├── distributor-logo-endeavouros.svg │ │ │ ├── distributor-logo-fedora.svg │ │ │ ├── distributor-logo-freebsd.svg │ │ │ ├── distributor-logo-freedos.svg │ │ │ ├── distributor-logo-ghostbsd.svg │ │ │ ├── distributor-logo-hyperbola.svg │ │ │ ├── distributor-logo-kali-linux.svg │ │ │ ├── distributor-logo-kaos.svg │ │ │ ├── distributor-logo-knoppix.svg │ │ │ ├── distributor-logo-korora.svg │ │ │ ├── distributor-logo-linux-lite.svg │ │ │ ├── distributor-logo-linux-mint.svg │ │ │ ├── distributor-logo-lubuntu.svg │ │ │ ├── distributor-logo-lxle.svg │ │ │ ├── distributor-logo-mac.svg │ │ │ ├── distributor-logo-madlinux.svg │ │ │ ├── distributor-logo-manjaro.svg │ │ │ ├── distributor-logo-midnightbsd.svg │ │ │ ├── distributor-logo-ms-dos.svg │ │ │ ├── distributor-logo-mx.svg │ │ │ ├── distributor-logo-netbsd.svg │ │ │ ├── distributor-logo-netrunner.svg │ │ │ ├── distributor-logo-openbsd.svg │ │ │ ├── distributor-logo-openmandriva.svg │ │ │ ├── distributor-logo-opensuse.svg │ │ │ ├── distributor-logo-parrot.svg │ │ │ ├── distributor-logo-pclinuxos.svg │ │ │ ├── distributor-logo-pisilinux.svg │ │ │ ├── distributor-logo-pop-os.svg │ │ │ ├── distributor-logo-puppy-linux.svg │ │ │ ├── distributor-logo-pureos.svg │ │ │ ├── distributor-logo-raspbian.svg │ │ │ ├── distributor-logo-rhel.svg │ │ │ ├── distributor-logo-rosa.svg │ │ │ ├── distributor-logo-salentos.svg │ │ │ ├── distributor-logo-smartos.svg │ │ │ ├── distributor-logo-solus.svg │ │ │ ├── distributor-logo-steamos.svg │ │ │ ├── distributor-logo-trueos.svg │ │ │ ├── distributor-logo-ubuntu-budgie.svg │ │ │ ├── distributor-logo-ubuntu-mate.svg │ │ │ ├── distributor-logo-ubuntu-studio.svg │ │ │ ├── distributor-logo-ubuntu.svg │ │ │ ├── distributor-logo-ultimate-edition.svg │ │ │ ├── distributor-logo-void.svg │ │ │ ├── distributor-logo-voyager.svg │ │ │ ├── distributor-logo-windows.svg │ │ │ ├── distributor-logo-zorin.svg │ │ │ ├── download.svg │ │ │ ├── efi.svg │ │ │ ├── exit.svg │ │ │ ├── fastboot.svg │ │ │ ├── filemgr.svg │ │ │ ├── gui-benchmark.svg │ │ │ ├── guipm.svg │ │ │ ├── img_cogwheel_argb.png │ │ │ ├── img_cogwheel_chroma_keyed.png │ │ │ ├── img_cogwheel_indexed16.png │ │ │ ├── img_cogwheel_rgb.png │ │ │ ├── keyboard.svg │ │ │ ├── language.svg │ │ │ ├── launcher.svg │ │ │ ├── linux.svg │ │ │ ├── logviewer.svg │ │ │ ├── mount.svg │ │ │ ├── mouse.svg │ │ │ ├── photo-viewer.svg │ │ │ ├── pointer.svg │ │ │ ├── poweroff.svg │ │ │ ├── proxmox.png │ │ │ ├── reboot.svg │ │ │ ├── regedit.svg │ │ │ ├── screen.svg │ │ │ ├── scsi.svg │ │ │ ├── serial.svg │ │ │ ├── sysinfo.svg │ │ │ ├── terminal.svg │ │ │ ├── text-editor.svg │ │ │ ├── theme.svg │ │ │ ├── twrp.png │ │ │ ├── uefi.svg │ │ │ ├── usb.svg │ │ │ └── vibrator.svg │ │ ├── simple-init │ │ ├── apps │ │ │ └── reboot.xml │ │ ├── gui-http │ │ │ ├── index.css │ │ │ ├── index.html │ │ │ ├── index.js │ │ │ ├── web_gui_render.min.js │ │ │ └── web_gui_render.wasm │ │ ├── gui │ │ │ └── reboot.xml │ │ └── icon.xml │ │ └── terminfo └── var │ ├── cache │ └── .gitkeep │ ├── lib │ └── .gitkeep │ ├── lock │ ├── log │ └── .gitkeep │ ├── run │ └── tmp │ └── .gitkeep ├── scripts ├── build-edk2.sh ├── build.sh ├── calc-lines.sh ├── environments.sh.inc ├── functions.sh.inc ├── gen-initramfs.sh ├── gen-logfs.sh ├── gen-minimal-initramfs.sh ├── gen-miniroot.sh ├── gen-rootfs-source.sh ├── install-gmo.sh ├── qemu.sh └── submodules.sh └── src ├── CMakeLists.txt ├── SimpleInitRootFS.inf ├── adbd ├── CMakeLists.txt ├── adb.c ├── adb_auth.c ├── adbd_internal.h ├── fdevent.c ├── file_sync.c ├── gadget.c ├── services.c ├── socket_local.c ├── sockets.c ├── transport.c └── usb.c ├── assets ├── CMakeLists.txt ├── SimpleInitAssets.inf └── assets.c ├── bcd ├── CMakeLists.txt ├── bcd.c ├── bcdedit.c ├── bcdstore.h ├── data.c ├── device.c ├── dump.c ├── element.c ├── element_value.c ├── lib.c ├── object.c └── store.c ├── boot ├── CMakeLists.txt ├── SimpleInitBoot.inf ├── boot.c ├── bootdef.c ├── charger.c ├── cpu.c ├── drivers.c ├── efi.c ├── efi_path.c ├── exit.c ├── linux.c ├── lua.c ├── prober.c ├── reboot.c ├── reboot_uefi.c ├── root.c ├── splash.c ├── system.c └── uefi_option.c ├── cmdline ├── CMakeLists.txt ├── androidboot.c ├── cmdline.c ├── conffs.c ├── console.c ├── gui.c ├── logfs.c ├── options.c └── root.c ├── commands ├── CMakeLists.txt ├── abootimg.c ├── adbd.c ├── arch.c ├── cat.c ├── cd.c ├── chdir.c ├── chroot.c ├── chvt.c ├── clear.c ├── close.c ├── confctl.c ├── conftools.c ├── dmesg.c ├── dumpinput.c ├── dumps.c ├── echo.c ├── exit.c ├── findfs.c ├── halt.c ├── help.c ├── initctl.c ├── initloggerd.c ├── input_code.h ├── insmod.c ├── loggerctl.c ├── ls.c ├── lsfd.c ├── lsmod.c ├── modprobe.c ├── mountpoint.c ├── poweroff.c ├── reboot.c ├── rmmod.c ├── service.c ├── setsid.c ├── simple-init.c ├── truefalse.c ├── uname.c ├── unlink.c ├── update-binary.c ├── version.c └── write.c ├── compress ├── CMakeLists.txt ├── SimpleInitCompress.inf ├── compress.c ├── compressors.c ├── gzip.c └── internal.h ├── confd ├── CMakeLists.txt ├── SimpleInitConfd.inf ├── client.c ├── confd_internal.h ├── dump.c ├── file.c ├── file_conf.c ├── internal.c ├── json_conf.c ├── server.c ├── store.c ├── uefi.c └── xml_conf.c ├── config-uefi.h ├── config.h.in ├── devd ├── CMakeLists.txt ├── devd.c ├── devd_internal.h ├── devtmpfs.c ├── dyndev.c ├── firmware.c ├── hotplug.c ├── internal.c ├── modalias.c ├── modules_load.c ├── netlink.c ├── server.c └── uevent.c ├── filesystem ├── CMakeLists.txt ├── SimpleInitFileSystem.inf ├── drivers.c ├── file.c ├── fs_internal.h ├── internal.c ├── layer │ ├── assets.c │ ├── curl.c │ ├── overlay.c │ ├── posix.c │ ├── socket.c │ ├── template.c │ ├── uefi.c │ └── zip.c ├── locked.c ├── oper.c ├── string.c ├── utils.c ├── volume.c └── volume │ ├── linux.c │ ├── linux.h │ ├── mount.c │ ├── root.c │ └── uefi.c ├── gadget ├── CMakeLists.txt ├── add.c ├── add_function.c ├── general.c ├── register.c ├── service.c ├── startstop.c └── unregister.c ├── getopt ├── CMakeLists.txt ├── getopt.c └── getopt_long.c ├── gui ├── CMakeLists.txt ├── SimpleInitGUI.inf ├── activities.c ├── activity.c ├── color.c ├── decoders │ ├── bmp.c │ ├── freetype.c │ ├── image.c │ ├── jpeg.c │ ├── png.c │ ├── stb.c │ └── svg.c ├── drivers.c ├── drivers │ ├── drm.c │ ├── dummy.c │ ├── fbdev.c │ ├── gtk.c │ ├── gui_http.h │ ├── http.c │ ├── http_ffmpeg.c │ ├── http_frame.c │ ├── http_image.c │ ├── http_input.c │ ├── input.c │ ├── modes.c │ ├── sdl2.c │ ├── stdin.c │ ├── uefi_gop.c │ ├── uefi_keyboard.c │ ├── uefi_pointer.c │ ├── uefi_touch.c │ ├── uefi_uga.c │ └── vnc.c ├── engine │ ├── activity.c │ ├── app.c │ ├── attribute.c │ ├── attributes │ │ ├── bool.c │ │ ├── generic.c │ │ ├── image.c │ │ ├── input.c │ │ ├── layout.c │ │ ├── pos.c │ │ └── size.c │ ├── code.c │ ├── data │ │ ├── attr_hands.c │ │ ├── obj_hands.c │ │ ├── style_props.c │ │ └── style_set_type.c │ ├── event.c │ ├── inline.c │ ├── lib.c │ ├── object.c │ ├── objects.c │ ├── render.c │ ├── render_internal.h │ ├── struct.c │ └── style.c ├── gui_init.c ├── guidrv.c ├── interface │ ├── apps │ │ ├── abootimg.c │ │ ├── acpi.c │ │ ├── add_mount.c │ │ ├── benchmark.c │ │ ├── boot_linux.c │ │ ├── calendar.c │ │ ├── fdt.c │ │ ├── logviewer.c │ │ ├── mount.c │ │ ├── picture.c │ │ ├── pointer_test.c │ │ ├── ramdisk.c │ │ ├── scr_test.c │ │ ├── text_editor.c │ │ ├── uefi_bootmenu.c │ │ ├── uefi_dxe_load.c │ │ ├── uefi_mass.c │ │ ├── uefi_shell.c │ │ ├── uefi_start.c │ │ └── vibrator.c │ ├── bootmgr │ │ ├── bootdata_efi.c │ │ ├── bootdata_linux.c │ │ ├── bootdata_memreg.c │ │ ├── bootdata_uefi_option.c │ │ ├── bootitem.c │ │ ├── bootmgr.c │ │ └── bootmgr.h │ ├── conftool │ │ ├── confload.c │ │ ├── confsave.c │ │ ├── conftool.c │ │ └── create.c │ ├── core │ │ ├── bootmenu.c │ │ ├── charger.c │ │ ├── clipboard.c │ │ ├── ctrl_pad.c │ │ ├── guiapp.c │ │ ├── snackbar.c │ │ ├── splash.c │ │ └── sysbar.c │ ├── filemgr │ │ ├── filemgr.c │ │ ├── fileopen.c │ │ ├── filetab.c │ │ └── fileview.c │ ├── gadget │ │ ├── add_mass.c │ │ ├── base_info.c │ │ └── gadget_view.c │ ├── guipm │ │ ├── disk_operation.c │ │ ├── disk_select.c │ │ ├── guipm.c │ │ ├── guipm.h │ │ ├── new_partition.c │ │ ├── part_operation.c │ │ ├── part_resize.c │ │ ├── part_type.c │ │ └── partitions.c │ ├── regedit │ │ ├── edit_value.c │ │ ├── regedit.c │ │ ├── regedit.h │ │ └── string.c │ ├── settings │ │ ├── backlight.c │ │ ├── language.c │ │ ├── mouse.c │ │ └── theme.c │ ├── term │ │ ├── baudrates.c │ │ ├── console.c │ │ ├── serial.h │ │ ├── serialopen.c │ │ ├── serialport.c │ │ ├── terminal.c │ │ └── termview.c │ └── widgets │ │ ├── filepicker.c │ │ ├── inputbox.c │ │ └── msgbox.c ├── lua │ ├── activity.c │ ├── lua.c │ ├── lvgl │ │ ├── lib.c │ │ ├── lvgl.c │ │ ├── obj.c │ │ └── obj_class.h │ ├── render.c │ ├── render_event.c │ ├── render_obj.c │ └── sysbar.c ├── string │ ├── align.lst │ ├── arc_mode.lst │ ├── bar_mode.lst │ ├── base_dir.lst │ ├── blend_mode.lst │ ├── border_side.lst │ ├── btnmatrix_ctrl.lst │ ├── chart_axis.lst │ ├── chart_type.lst │ ├── chart_update_mode.lst │ ├── colorwheel_mode.lst │ ├── dir.lst │ ├── dither_mode.lst │ ├── event.lst │ ├── flex_align.lst │ ├── flex_flow.lst │ ├── grad_dir.lst │ ├── grid_align.lst │ ├── img_size_mode.lst │ ├── imgbtn_state.lst │ ├── key.lst │ ├── keyboard_mode.lst │ ├── label_long.lst │ ├── menu_mode_header.lst │ ├── obj_flag.lst │ ├── opa.lst │ ├── palette.lst │ ├── part.lst │ ├── roller_mode.lst │ ├── scr_load_anim.lst │ ├── slider_mode.lst │ ├── span_mode.lst │ ├── span_overflow.lst │ ├── state.lst │ ├── string.c │ ├── style_prop.lst │ ├── table_cell_ctrl.lst │ ├── template.h │ ├── text_align.lst │ ├── text_cmd_state.lst │ ├── text_decor.lst │ └── text_flag.lst ├── theme │ └── icon.c └── tools.c ├── hardware ├── CMakeLists.txt ├── battery.c ├── led.c └── vibrate.c ├── host └── rootfs.c ├── initd ├── CMakeLists.txt ├── bootsvc.c ├── client.c ├── conffs.c ├── environ.c ├── init.c ├── logfs.c ├── preinit.c ├── protocol.c ├── reboot.c ├── run.c ├── signals.c ├── socket.c └── umount.c ├── kernelfdt ├── KernelFdtDxe.c └── KernelFdtDxe.inf ├── lib ├── CMakeLists.txt ├── SimpleInitLib.inf ├── aboot.c ├── array.c ├── base64.c ├── credential.c ├── exit.c ├── fdtparser.c ├── file.c ├── http.c ├── keyval.c ├── language.c ├── list.c ├── mime.c ├── mode.c ├── modules.c ├── mount.c ├── param.c ├── pool.c ├── proctitle.c ├── random.c ├── readable.c ├── reboot.c ├── recovery.c ├── replace.c ├── signal.c ├── stdio.c ├── strings.c ├── switchroot.c ├── uefi.c ├── uefi_string.c ├── url.c └── websocket.c ├── linux-boot ├── SimpleInitBootLinux.inf ├── aboot.c ├── arm.c ├── cmdline.c ├── compress.c ├── conf.c ├── dtb_sel.c ├── dtbo.c ├── dump.c ├── fdt.c ├── info.c ├── internal.h ├── linux.c ├── loader.c ├── mem.c ├── move.c ├── qcom.c ├── qcom.h ├── ramdisk.c ├── random.c ├── splash.c └── uefi.c ├── locate ├── SimpleInitLocate.inf ├── disk.c ├── fs.c ├── gpt.c ├── internal.h ├── locate.c ├── locates.c └── mbr.c ├── loggerd ├── CMakeLists.txt ├── SimpleInitLoggerd.inf ├── buffer.c ├── client.c ├── file_logger.c ├── internal.c ├── klog.c ├── lib.c ├── logger_internal.h ├── printk_logger.c ├── server.c ├── syslog.c └── syslog_logger.c ├── lua ├── CMakeLists.txt ├── SimpleInitLua.inf ├── abootimg.c ├── conf.c ├── data.c ├── fdisk │ ├── fdisk.c │ ├── fdisk.h │ ├── fdisk_ask.c │ ├── fdisk_context.c │ ├── fdisk_field.c │ ├── fdisk_iter.c │ ├── fdisk_label.c │ ├── fdisk_labelitem.c │ ├── fdisk_partition.c │ ├── fdisk_parttype.c │ ├── fdisk_script.c │ └── fdisk_table.c ├── feature.c ├── filesystem │ ├── fs.c │ ├── fs.h │ ├── fs_info.c │ ├── fsh.c │ └── string.c ├── init.c ├── libs.c ├── locate.c ├── logger.c ├── lua.c ├── nanosvg.c ├── recovery.c ├── stb.c ├── uefi │ ├── data │ │ ├── boot_service.c │ │ ├── bootopt.c │ │ ├── char16.c │ │ ├── devicepath.c │ │ ├── event.c │ │ ├── guid.c │ │ ├── handle.c │ │ ├── input_key.c │ │ ├── runtime_service.c │ │ ├── status.c │ │ └── time.c │ ├── file_info.c │ ├── guids.c │ ├── libs.c │ ├── libs │ │ ├── boot_logo_lib.c │ │ ├── io_lib.c │ │ ├── uefi_boot_manager_lib.c │ │ └── uefi_lib.c │ ├── lua_uefi.h │ ├── protocols │ │ ├── absolute_pointer.c │ │ ├── acpi_table.c │ │ ├── block_io.c │ │ ├── boot_logo.c │ │ ├── boot_logo2.c │ │ ├── boot_manager_policy.c │ │ ├── component_name.c │ │ ├── component_name2.c │ │ ├── deferred_image_load.c │ │ ├── disk_info.c │ │ ├── disk_io.c │ │ ├── file.c │ │ ├── graphics_output.c │ │ ├── loaded_image.c │ │ ├── partition_info.c │ │ ├── ramdisk.c │ │ ├── security2_arch.c │ │ ├── security_arch.c │ │ ├── serial_io.c │ │ ├── simple_file_system.c │ │ ├── simple_pointer.c │ │ ├── simple_text_input.c │ │ ├── simple_text_output.c │ │ └── timestamp.c │ ├── system_table.c │ └── uefi.c └── url.c ├── main ├── SimpleInitMain.inf ├── dump.c ├── main.c ├── uefimain.c └── wrapper.c ├── rootfs_data.s.in ├── service ├── CMakeLists.txt ├── conf.c ├── data.c ├── default.c ├── dump.c ├── execute.c ├── queue.c ├── scheduler.c ├── service.c ├── sigchld.c ├── start.c ├── stop.c ├── string.c └── struct.c ├── shell ├── CMakeLists.txt ├── cmd.c ├── commands.c ├── external.c ├── replace.c ├── shell.c └── shell_internal.h ├── ttyd ├── CMakeLists.txt ├── client.c ├── internal.c ├── issue.c ├── login.c ├── protocol.c ├── server.c ├── session.c ├── speed.c ├── ttyd_internal.h └── worker.c └── wasm ├── CMakeLists.txt ├── index.html ├── json-c.cmake ├── web_gui_render.c ├── web_gui_render.h ├── websocket.c ├── websocket.h └── zlib.cmake /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/.gitmodules -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/README.md -------------------------------------------------------------------------------- /SimpleInit.dec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/SimpleInit.dec -------------------------------------------------------------------------------- /SimpleInit.dsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/SimpleInit.dsc -------------------------------------------------------------------------------- /SimpleInit.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/SimpleInit.inc -------------------------------------------------------------------------------- /docs/en/build/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/build/linux.md -------------------------------------------------------------------------------- /docs/en/build/uefi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/build/uefi.md -------------------------------------------------------------------------------- /docs/en/config/boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/config/boot.md -------------------------------------------------------------------------------- /docs/en/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/config/index.md -------------------------------------------------------------------------------- /docs/en/config/locates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/config/locates.md -------------------------------------------------------------------------------- /docs/en/config/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/config/logger.md -------------------------------------------------------------------------------- /docs/en/config/uefi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/config/uefi.md -------------------------------------------------------------------------------- /docs/en/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/en/index.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/zh/build/linux.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/build/linux.md -------------------------------------------------------------------------------- /docs/zh/build/uefi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/build/uefi.md -------------------------------------------------------------------------------- /docs/zh/config/boot.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/config/boot.md -------------------------------------------------------------------------------- /docs/zh/config/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/config/index.md -------------------------------------------------------------------------------- /docs/zh/config/locates.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/config/locates.md -------------------------------------------------------------------------------- /docs/zh/config/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/config/logger.md -------------------------------------------------------------------------------- /docs/zh/config/uefi.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/config/uefi.md -------------------------------------------------------------------------------- /docs/zh/examples/logger.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/examples/logger.md -------------------------------------------------------------------------------- /docs/zh/examples/msgbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/examples/msgbox.md -------------------------------------------------------------------------------- /docs/zh/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/index.md -------------------------------------------------------------------------------- /docs/zh/res/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/res/img1.jpg -------------------------------------------------------------------------------- /docs/zh/res/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/res/img2.jpg -------------------------------------------------------------------------------- /docs/zh/res/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/docs/zh/res/img3.jpg -------------------------------------------------------------------------------- /include/KernelFdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/KernelFdt.h -------------------------------------------------------------------------------- /include/aboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/aboot.h -------------------------------------------------------------------------------- /include/adbd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/adbd.h -------------------------------------------------------------------------------- /include/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/array.h -------------------------------------------------------------------------------- /include/assets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/assets.h -------------------------------------------------------------------------------- /include/bcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/bcd.h -------------------------------------------------------------------------------- /include/boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/boot.h -------------------------------------------------------------------------------- /include/chipinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/chipinfo.h -------------------------------------------------------------------------------- /include/cmdline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/cmdline.h -------------------------------------------------------------------------------- /include/compress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/compress.h -------------------------------------------------------------------------------- /include/confd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/confd.h -------------------------------------------------------------------------------- /include/ddrgetconfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/ddrgetconfig.h -------------------------------------------------------------------------------- /include/defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/defines.h -------------------------------------------------------------------------------- /include/devd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/devd.h -------------------------------------------------------------------------------- /include/enum_conv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/enum_conv.h -------------------------------------------------------------------------------- /include/fdtparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/fdtparser.h -------------------------------------------------------------------------------- /include/filesystem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/filesystem.h -------------------------------------------------------------------------------- /include/frame_protocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/frame_protocol.h -------------------------------------------------------------------------------- /include/fsdrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/fsdrv.h -------------------------------------------------------------------------------- /include/gadget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gadget.h -------------------------------------------------------------------------------- /include/getopt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/getopt.h -------------------------------------------------------------------------------- /include/gui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui.h -------------------------------------------------------------------------------- /include/gui/activity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/activity.h -------------------------------------------------------------------------------- /include/gui/clipboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/clipboard.h -------------------------------------------------------------------------------- /include/gui/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/console.h -------------------------------------------------------------------------------- /include/gui/fileopen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/fileopen.h -------------------------------------------------------------------------------- /include/gui/filepicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/filepicker.h -------------------------------------------------------------------------------- /include/gui/filetab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/filetab.h -------------------------------------------------------------------------------- /include/gui/fileview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/fileview.h -------------------------------------------------------------------------------- /include/gui/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/font.h -------------------------------------------------------------------------------- /include/gui/guidrv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/guidrv.h -------------------------------------------------------------------------------- /include/gui/icon_theme.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/icon_theme.h -------------------------------------------------------------------------------- /include/gui/image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/image.h -------------------------------------------------------------------------------- /include/gui/inputbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/inputbox.h -------------------------------------------------------------------------------- /include/gui/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/lua.h -------------------------------------------------------------------------------- /include/gui/msgbox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/msgbox.h -------------------------------------------------------------------------------- /include/gui/snackbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/snackbar.h -------------------------------------------------------------------------------- /include/gui/splash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/splash.h -------------------------------------------------------------------------------- /include/gui/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/string.h -------------------------------------------------------------------------------- /include/gui/sysbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/sysbar.h -------------------------------------------------------------------------------- /include/gui/termview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/termview.h -------------------------------------------------------------------------------- /include/gui/tools.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/tools.h -------------------------------------------------------------------------------- /include/gui/xmlrender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/gui/xmlrender.h -------------------------------------------------------------------------------- /include/hardware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/hardware.h -------------------------------------------------------------------------------- /include/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/http.h -------------------------------------------------------------------------------- /include/init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/init.h -------------------------------------------------------------------------------- /include/init_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/init_internal.h -------------------------------------------------------------------------------- /include/keyval.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/keyval.h -------------------------------------------------------------------------------- /include/kloglevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/kloglevel.h -------------------------------------------------------------------------------- /include/language.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/language.h -------------------------------------------------------------------------------- /include/linux_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/linux_boot.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/list.h -------------------------------------------------------------------------------- /include/locate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/locate.h -------------------------------------------------------------------------------- /include/lock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/lock.h -------------------------------------------------------------------------------- /include/logger.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/logger.h -------------------------------------------------------------------------------- /include/logtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/logtag.h -------------------------------------------------------------------------------- /include/lv_conf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/lv_conf.h -------------------------------------------------------------------------------- /include/output.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/output.h -------------------------------------------------------------------------------- /include/param.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/param.h -------------------------------------------------------------------------------- /include/pathnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/pathnames.h -------------------------------------------------------------------------------- /include/platforminfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/platforminfo.h -------------------------------------------------------------------------------- /include/pool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/pool.h -------------------------------------------------------------------------------- /include/proctitle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/proctitle.h -------------------------------------------------------------------------------- /include/rampartition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/rampartition.h -------------------------------------------------------------------------------- /include/recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/recovery.h -------------------------------------------------------------------------------- /include/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/service.h -------------------------------------------------------------------------------- /include/service_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/service_scheduler.h -------------------------------------------------------------------------------- /include/shell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/shell.h -------------------------------------------------------------------------------- /include/str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/str.h -------------------------------------------------------------------------------- /include/system.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/system.h -------------------------------------------------------------------------------- /include/ttyd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/ttyd.h -------------------------------------------------------------------------------- /include/uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/uefi.h -------------------------------------------------------------------------------- /include/uevent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/uevent.h -------------------------------------------------------------------------------- /include/url.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/url.h -------------------------------------------------------------------------------- /include/version.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/version.h -------------------------------------------------------------------------------- /include/xlua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/include/xlua.h -------------------------------------------------------------------------------- /libs/FreeType.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/FreeType.inf -------------------------------------------------------------------------------- /libs/LittleVgl.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/LittleVgl.inf -------------------------------------------------------------------------------- /libs/compatible/__expo2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/__expo2.c -------------------------------------------------------------------------------- /libs/compatible/abs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/abs.c -------------------------------------------------------------------------------- /libs/compatible/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/acos.c -------------------------------------------------------------------------------- /libs/compatible/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/asin.c -------------------------------------------------------------------------------- /libs/compatible/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/atan.c -------------------------------------------------------------------------------- /libs/compatible/big5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/big5.h -------------------------------------------------------------------------------- /libs/compatible/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/ceil.c -------------------------------------------------------------------------------- /libs/compatible/codepages.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/codepages.h -------------------------------------------------------------------------------- /libs/compatible/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/cos.c -------------------------------------------------------------------------------- /libs/compatible/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/ctype.c -------------------------------------------------------------------------------- /libs/compatible/dmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/dmisc.c -------------------------------------------------------------------------------- /libs/compatible/dtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/dtoa.c -------------------------------------------------------------------------------- /libs/compatible/errno.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/errno.c -------------------------------------------------------------------------------- /libs/compatible/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/exit.c -------------------------------------------------------------------------------- /libs/compatible/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/exp.c -------------------------------------------------------------------------------- /libs/compatible/exp_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/exp_data.c -------------------------------------------------------------------------------- /libs/compatible/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/expm1.c -------------------------------------------------------------------------------- /libs/compatible/extern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/extern.h -------------------------------------------------------------------------------- /libs/compatible/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fabs.c -------------------------------------------------------------------------------- /libs/compatible/fflush.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fflush.c -------------------------------------------------------------------------------- /libs/compatible/fileext.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fileext.h -------------------------------------------------------------------------------- /libs/compatible/findfp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/findfp.c -------------------------------------------------------------------------------- /libs/compatible/floatio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/floatio.h -------------------------------------------------------------------------------- /libs/compatible/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/floor.c -------------------------------------------------------------------------------- /libs/compatible/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fmod.c -------------------------------------------------------------------------------- /libs/compatible/fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fread.c -------------------------------------------------------------------------------- /libs/compatible/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/frexp.c -------------------------------------------------------------------------------- /libs/compatible/fvwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fvwrite.c -------------------------------------------------------------------------------- /libs/compatible/fvwrite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/fvwrite.h -------------------------------------------------------------------------------- /libs/compatible/gb18030.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/gb18030.h -------------------------------------------------------------------------------- /libs/compatible/gdtoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/gdtoa.c -------------------------------------------------------------------------------- /libs/compatible/gdtoa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/gdtoa.h -------------------------------------------------------------------------------- /libs/compatible/gdtoaimp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/gdtoaimp.h -------------------------------------------------------------------------------- /libs/compatible/gmisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/gmisc.c -------------------------------------------------------------------------------- /libs/compatible/hd_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/hd_init.c -------------------------------------------------------------------------------- /libs/compatible/hkscs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/hkscs.h -------------------------------------------------------------------------------- /libs/compatible/iconv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/iconv.c -------------------------------------------------------------------------------- /libs/compatible/include/arch/aarch64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[22]; 2 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/generic/bits/kd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/generic/bits/limits.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/generic/bits/link.h: -------------------------------------------------------------------------------- 1 | typedef uint32_t Elf_Symndx; 2 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/generic/bits/poll.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/generic/fp_arch.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/i386/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/i386/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[6]; 2 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/x86_64/bits/limits.h: -------------------------------------------------------------------------------- 1 | #define PAGESIZE 4096 2 | -------------------------------------------------------------------------------- /libs/compatible/include/arch/x86_64/bits/setjmp.h: -------------------------------------------------------------------------------- 1 | typedef unsigned long __jmp_buf[8]; 2 | -------------------------------------------------------------------------------- /libs/compatible/jis0208.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/jis0208.h -------------------------------------------------------------------------------- /libs/compatible/ksc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/ksc.h -------------------------------------------------------------------------------- /libs/compatible/ldexp.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libs/compatible/local.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/local.h -------------------------------------------------------------------------------- /libs/compatible/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/log.c -------------------------------------------------------------------------------- /libs/compatible/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/log10.c -------------------------------------------------------------------------------- /libs/compatible/log2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/log2.c -------------------------------------------------------------------------------- /libs/compatible/log2_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/log2_data.c -------------------------------------------------------------------------------- /libs/compatible/log_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/log_data.c -------------------------------------------------------------------------------- /libs/compatible/makebuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/makebuf.c -------------------------------------------------------------------------------- /libs/compatible/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/malloc.c -------------------------------------------------------------------------------- /libs/compatible/mb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/mb.c -------------------------------------------------------------------------------- /libs/compatible/mb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/mb.h -------------------------------------------------------------------------------- /libs/compatible/mbrtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/mbrtowc.c -------------------------------------------------------------------------------- /libs/compatible/mbtowc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/mbtowc.c -------------------------------------------------------------------------------- /libs/compatible/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/mem.c -------------------------------------------------------------------------------- /libs/compatible/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/misc.c -------------------------------------------------------------------------------- /libs/compatible/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/modf.c -------------------------------------------------------------------------------- /libs/compatible/namespace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/namespace.h -------------------------------------------------------------------------------- /libs/compatible/number.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/number.c -------------------------------------------------------------------------------- /libs/compatible/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/pow.c -------------------------------------------------------------------------------- /libs/compatible/pow_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/pow_data.c -------------------------------------------------------------------------------- /libs/compatible/qsort.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/qsort.c -------------------------------------------------------------------------------- /libs/compatible/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/rand.c -------------------------------------------------------------------------------- /libs/compatible/reentrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/reentrant.h -------------------------------------------------------------------------------- /libs/compatible/refill.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/refill.c -------------------------------------------------------------------------------- /libs/compatible/revjis.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/revjis.h -------------------------------------------------------------------------------- /libs/compatible/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/scalbn.c -------------------------------------------------------------------------------- /libs/compatible/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/sin.c -------------------------------------------------------------------------------- /libs/compatible/smisc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/smisc.c -------------------------------------------------------------------------------- /libs/compatible/snprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/snprintf.c -------------------------------------------------------------------------------- /libs/compatible/sprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/sprintf.c -------------------------------------------------------------------------------- /libs/compatible/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/sqrt.c -------------------------------------------------------------------------------- /libs/compatible/sscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/sscanf.c -------------------------------------------------------------------------------- /libs/compatible/str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/str.c -------------------------------------------------------------------------------- /libs/compatible/strcspn.c: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /libs/compatible/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strerror.c -------------------------------------------------------------------------------- /libs/compatible/strftime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strftime.c -------------------------------------------------------------------------------- /libs/compatible/strtod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strtod.c -------------------------------------------------------------------------------- /libs/compatible/strtodg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strtodg.c -------------------------------------------------------------------------------- /libs/compatible/strtof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strtof.c -------------------------------------------------------------------------------- /libs/compatible/strtoimax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strtoimax.c -------------------------------------------------------------------------------- /libs/compatible/strtopx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strtopx.c -------------------------------------------------------------------------------- /libs/compatible/strtoumax.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/strtoumax.c -------------------------------------------------------------------------------- /libs/compatible/stub.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/stub.c -------------------------------------------------------------------------------- /libs/compatible/sum.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/sum.c -------------------------------------------------------------------------------- /libs/compatible/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/tan.c -------------------------------------------------------------------------------- /libs/compatible/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/time.c -------------------------------------------------------------------------------- /libs/compatible/timevals.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/timevals.h -------------------------------------------------------------------------------- /libs/compatible/tzfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/tzfile.h -------------------------------------------------------------------------------- /libs/compatible/ulp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/ulp.c -------------------------------------------------------------------------------- /libs/compatible/ungetc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/ungetc.c -------------------------------------------------------------------------------- /libs/compatible/vasprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/vasprintf.c -------------------------------------------------------------------------------- /libs/compatible/vfprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/vfprintf.c -------------------------------------------------------------------------------- /libs/compatible/vfscanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/vfscanf.c -------------------------------------------------------------------------------- /libs/compatible/vsnprintf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/vsnprintf.c -------------------------------------------------------------------------------- /libs/compatible/wcio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/wcio.h -------------------------------------------------------------------------------- /libs/compatible/wcrtomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/wcrtomb.c -------------------------------------------------------------------------------- /libs/compatible/wctomb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/wctomb.c -------------------------------------------------------------------------------- /libs/compatible/wsetup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/wsetup.c -------------------------------------------------------------------------------- /libs/compatible/zone.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/compatible/zone.c -------------------------------------------------------------------------------- /libs/freetype.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/freetype.cmake -------------------------------------------------------------------------------- /libs/hivex/HivexLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/HivexLib.inf -------------------------------------------------------------------------------- /libs/hivex/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/LICENSE -------------------------------------------------------------------------------- /libs/hivex/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/README -------------------------------------------------------------------------------- /libs/hivex/hivex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/hivex.cmake -------------------------------------------------------------------------------- /libs/hivex/include/hivex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/include/hivex.h -------------------------------------------------------------------------------- /libs/hivex/lib/handle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/handle.c -------------------------------------------------------------------------------- /libs/hivex/lib/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/node.c -------------------------------------------------------------------------------- /libs/hivex/lib/utf16.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/utf16.c -------------------------------------------------------------------------------- /libs/hivex/lib/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/util.c -------------------------------------------------------------------------------- /libs/hivex/lib/value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/value.c -------------------------------------------------------------------------------- /libs/hivex/lib/visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/visit.c -------------------------------------------------------------------------------- /libs/hivex/lib/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/hivex/lib/write.c -------------------------------------------------------------------------------- /libs/json-c/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/AUTHORS -------------------------------------------------------------------------------- /libs/json-c/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/COPYING -------------------------------------------------------------------------------- /libs/json-c/JSONC.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/JSONC.inf -------------------------------------------------------------------------------- /libs/json-c/arraylist.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/arraylist.c -------------------------------------------------------------------------------- /libs/json-c/arraylist.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/arraylist.h -------------------------------------------------------------------------------- /libs/json-c/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/debug.c -------------------------------------------------------------------------------- /libs/json-c/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/debug.h -------------------------------------------------------------------------------- /libs/json-c/json-c-uefi/json_config.h: -------------------------------------------------------------------------------- 1 | #include "config.h" 2 | -------------------------------------------------------------------------------- /libs/json-c/json-c.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json-c.cmake -------------------------------------------------------------------------------- /libs/json-c/json-c.sym: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json-c.sym -------------------------------------------------------------------------------- /libs/json-c/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json.h -------------------------------------------------------------------------------- /libs/json-c/json_inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_inttypes.h -------------------------------------------------------------------------------- /libs/json-c/json_object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_object.c -------------------------------------------------------------------------------- /libs/json-c/json_object.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_object.h -------------------------------------------------------------------------------- /libs/json-c/json_pointer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_pointer.c -------------------------------------------------------------------------------- /libs/json-c/json_pointer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_pointer.h -------------------------------------------------------------------------------- /libs/json-c/json_tokener.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_tokener.c -------------------------------------------------------------------------------- /libs/json-c/json_tokener.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_tokener.h -------------------------------------------------------------------------------- /libs/json-c/json_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_types.h -------------------------------------------------------------------------------- /libs/json-c/json_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_util.c -------------------------------------------------------------------------------- /libs/json-c/json_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_util.h -------------------------------------------------------------------------------- /libs/json-c/json_visit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_visit.c -------------------------------------------------------------------------------- /libs/json-c/json_visit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/json_visit.h -------------------------------------------------------------------------------- /libs/json-c/libjson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/libjson.c -------------------------------------------------------------------------------- /libs/json-c/linkhash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/linkhash.c -------------------------------------------------------------------------------- /libs/json-c/linkhash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/linkhash.h -------------------------------------------------------------------------------- /libs/json-c/math_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/math_compat.h -------------------------------------------------------------------------------- /libs/json-c/printbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/printbuf.c -------------------------------------------------------------------------------- /libs/json-c/printbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/printbuf.h -------------------------------------------------------------------------------- /libs/json-c/random_seed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/random_seed.c -------------------------------------------------------------------------------- /libs/json-c/random_seed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/random_seed.h -------------------------------------------------------------------------------- /libs/json-c/strdup_compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/json-c/strdup_compat.h -------------------------------------------------------------------------------- /libs/libkmod/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/COPYING -------------------------------------------------------------------------------- /libs/libkmod/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/README -------------------------------------------------------------------------------- /libs/libkmod/hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/hash.c -------------------------------------------------------------------------------- /libs/libkmod/include/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/include/hash.h -------------------------------------------------------------------------------- /libs/libkmod/include/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/include/util.h -------------------------------------------------------------------------------- /libs/libkmod/libkmod-elf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/libkmod-elf.c -------------------------------------------------------------------------------- /libs/libkmod/libkmod-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/libkmod-file.c -------------------------------------------------------------------------------- /libs/libkmod/libkmod-list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/libkmod-list.c -------------------------------------------------------------------------------- /libs/libkmod/libkmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/libkmod.c -------------------------------------------------------------------------------- /libs/libkmod/libkmod.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/libkmod.cmake -------------------------------------------------------------------------------- /libs/libkmod/libkmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/libkmod.h -------------------------------------------------------------------------------- /libs/libkmod/strbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/strbuf.c -------------------------------------------------------------------------------- /libs/libkmod/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libkmod/util.c -------------------------------------------------------------------------------- /libs/libmd/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/COPYING -------------------------------------------------------------------------------- /libs/libmd/include/md2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/md2.h -------------------------------------------------------------------------------- /libs/libmd/include/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/md4.h -------------------------------------------------------------------------------- /libs/libmd/include/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/md5.h -------------------------------------------------------------------------------- /libs/libmd/include/ripemd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/ripemd.h -------------------------------------------------------------------------------- /libs/libmd/include/rmd160.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/rmd160.h -------------------------------------------------------------------------------- /libs/libmd/include/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/sha.h -------------------------------------------------------------------------------- /libs/libmd/include/sha1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/sha1.h -------------------------------------------------------------------------------- /libs/libmd/include/sha2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/sha2.h -------------------------------------------------------------------------------- /libs/libmd/include/sha256.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/sha256.h -------------------------------------------------------------------------------- /libs/libmd/include/sha512.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/include/sha512.h -------------------------------------------------------------------------------- /libs/libmd/libmd.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/libmd.cmake -------------------------------------------------------------------------------- /libs/libmd/src/helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/helper.c -------------------------------------------------------------------------------- /libs/libmd/src/local-link.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/local-link.h -------------------------------------------------------------------------------- /libs/libmd/src/md2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/md2.c -------------------------------------------------------------------------------- /libs/libmd/src/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/md4.c -------------------------------------------------------------------------------- /libs/libmd/src/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/md5.c -------------------------------------------------------------------------------- /libs/libmd/src/rmd160.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/rmd160.c -------------------------------------------------------------------------------- /libs/libmd/src/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/sha1.c -------------------------------------------------------------------------------- /libs/libmd/src/sha2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libmd/src/sha2.c -------------------------------------------------------------------------------- /libs/libtsm/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libtsm/COPYING -------------------------------------------------------------------------------- /libs/libtsm/LICENSE_htable: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libtsm/LICENSE_htable -------------------------------------------------------------------------------- /libs/libtsm/TSMLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libtsm/TSMLib.inf -------------------------------------------------------------------------------- /libs/libtsm/external/wcwidth/.gitignore: -------------------------------------------------------------------------------- 1 | test_wcwidth 2 | -------------------------------------------------------------------------------- /libs/libtsm/libtsm.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libtsm/libtsm.cmake -------------------------------------------------------------------------------- /libs/libtsm/src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libtsm/src/config.h.in -------------------------------------------------------------------------------- /libs/libufdt/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/NOTICE -------------------------------------------------------------------------------- /libs/libufdt/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/OWNERS -------------------------------------------------------------------------------- /libs/libufdt/UfdtLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/UfdtLib.inf -------------------------------------------------------------------------------- /libs/libufdt/libufdt.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/libufdt.cmake -------------------------------------------------------------------------------- /libs/libufdt/ufdt_convert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/ufdt_convert.c -------------------------------------------------------------------------------- /libs/libufdt/ufdt_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/ufdt_node.c -------------------------------------------------------------------------------- /libs/libufdt/ufdt_overlay.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libufdt/ufdt_overlay.c -------------------------------------------------------------------------------- /libs/libzip/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/AUTHORS -------------------------------------------------------------------------------- /libs/libzip/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/CMakeLists.txt -------------------------------------------------------------------------------- /libs/libzip/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/LICENSE -------------------------------------------------------------------------------- /libs/libzip/THANKS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/THANKS -------------------------------------------------------------------------------- /libs/libzip/ZipLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/ZipLib.inf -------------------------------------------------------------------------------- /libs/libzip/lib/compat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/compat.h -------------------------------------------------------------------------------- /libs/libzip/lib/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip.h -------------------------------------------------------------------------------- /libs/libzip/lib/zip_add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_add.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_close.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_entry.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_error.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_fopen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_fopen.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_fread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_fread.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_fseek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_fseek.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_ftell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_ftell.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_hash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_hash.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_new.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_open.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_stat.c -------------------------------------------------------------------------------- /libs/libzip/lib/zip_utf-8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zip_utf-8.c -------------------------------------------------------------------------------- /libs/libzip/lib/zipint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/lib/zipint.h -------------------------------------------------------------------------------- /libs/libzip/src/zipcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/src/zipcmp.c -------------------------------------------------------------------------------- /libs/libzip/src/zipmerge.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/src/zipmerge.c -------------------------------------------------------------------------------- /libs/libzip/src/ziptool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/src/ziptool.c -------------------------------------------------------------------------------- /libs/libzip/uefi/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/uefi/config.h -------------------------------------------------------------------------------- /libs/libzip/uefi/zipconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/libzip/uefi/zipconf.h -------------------------------------------------------------------------------- /libs/lodepng/LodePNG.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lodepng/LodePNG.inf -------------------------------------------------------------------------------- /libs/lodepng/lodepng.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lodepng/lodepng.c -------------------------------------------------------------------------------- /libs/lodepng/lodepng.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lodepng/lodepng.cmake -------------------------------------------------------------------------------- /libs/lodepng/lodepng.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lodepng/lodepng.h -------------------------------------------------------------------------------- /libs/lua/LuaLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/LuaLib.inf -------------------------------------------------------------------------------- /libs/lua/lapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lapi.c -------------------------------------------------------------------------------- /libs/lua/lapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lapi.h -------------------------------------------------------------------------------- /libs/lua/lauxlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lauxlib.c -------------------------------------------------------------------------------- /libs/lua/lauxlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lauxlib.h -------------------------------------------------------------------------------- /libs/lua/lbaselib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lbaselib.c -------------------------------------------------------------------------------- /libs/lua/lcode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lcode.c -------------------------------------------------------------------------------- /libs/lua/lcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lcode.h -------------------------------------------------------------------------------- /libs/lua/lcorolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lcorolib.c -------------------------------------------------------------------------------- /libs/lua/lctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lctype.c -------------------------------------------------------------------------------- /libs/lua/lctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lctype.h -------------------------------------------------------------------------------- /libs/lua/ldblib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ldblib.c -------------------------------------------------------------------------------- /libs/lua/ldebug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ldebug.c -------------------------------------------------------------------------------- /libs/lua/ldebug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ldebug.h -------------------------------------------------------------------------------- /libs/lua/ldo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ldo.c -------------------------------------------------------------------------------- /libs/lua/ldo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ldo.h -------------------------------------------------------------------------------- /libs/lua/ldump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ldump.c -------------------------------------------------------------------------------- /libs/lua/lfunc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lfunc.c -------------------------------------------------------------------------------- /libs/lua/lfunc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lfunc.h -------------------------------------------------------------------------------- /libs/lua/lgc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lgc.c -------------------------------------------------------------------------------- /libs/lua/lgc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lgc.h -------------------------------------------------------------------------------- /libs/lua/linit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/linit.c -------------------------------------------------------------------------------- /libs/lua/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/liolib.c -------------------------------------------------------------------------------- /libs/lua/ljumptab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ljumptab.h -------------------------------------------------------------------------------- /libs/lua/llex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/llex.c -------------------------------------------------------------------------------- /libs/lua/llex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/llex.h -------------------------------------------------------------------------------- /libs/lua/llimits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/llimits.h -------------------------------------------------------------------------------- /libs/lua/lmathlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lmathlib.c -------------------------------------------------------------------------------- /libs/lua/lmem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lmem.c -------------------------------------------------------------------------------- /libs/lua/lmem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lmem.h -------------------------------------------------------------------------------- /libs/lua/loadlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/loadlib.c -------------------------------------------------------------------------------- /libs/lua/lobject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lobject.c -------------------------------------------------------------------------------- /libs/lua/lobject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lobject.h -------------------------------------------------------------------------------- /libs/lua/lopcodes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lopcodes.c -------------------------------------------------------------------------------- /libs/lua/lopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lopcodes.h -------------------------------------------------------------------------------- /libs/lua/lopnames.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lopnames.h -------------------------------------------------------------------------------- /libs/lua/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/loslib.c -------------------------------------------------------------------------------- /libs/lua/lparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lparser.c -------------------------------------------------------------------------------- /libs/lua/lparser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lparser.h -------------------------------------------------------------------------------- /libs/lua/lprefix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lprefix.h -------------------------------------------------------------------------------- /libs/lua/lstate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lstate.c -------------------------------------------------------------------------------- /libs/lua/lstate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lstate.h -------------------------------------------------------------------------------- /libs/lua/lstring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lstring.c -------------------------------------------------------------------------------- /libs/lua/lstring.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lstring.h -------------------------------------------------------------------------------- /libs/lua/lstrlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lstrlib.c -------------------------------------------------------------------------------- /libs/lua/ltable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltable.c -------------------------------------------------------------------------------- /libs/lua/ltable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltable.h -------------------------------------------------------------------------------- /libs/lua/ltablib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltablib.c -------------------------------------------------------------------------------- /libs/lua/ltests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltests.c -------------------------------------------------------------------------------- /libs/lua/ltests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltests.h -------------------------------------------------------------------------------- /libs/lua/ltm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltm.c -------------------------------------------------------------------------------- /libs/lua/ltm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/ltm.h -------------------------------------------------------------------------------- /libs/lua/lua-uefi/liolib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lua-uefi/liolib.c -------------------------------------------------------------------------------- /libs/lua/lua-uefi/loslib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lua-uefi/loslib.c -------------------------------------------------------------------------------- /libs/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lua.c -------------------------------------------------------------------------------- /libs/lua/lua.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lua.cmake -------------------------------------------------------------------------------- /libs/lua/lua.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lua.h -------------------------------------------------------------------------------- /libs/lua/luaconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/luaconf.h -------------------------------------------------------------------------------- /libs/lua/lualib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lualib.h -------------------------------------------------------------------------------- /libs/lua/lundump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lundump.c -------------------------------------------------------------------------------- /libs/lua/lundump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lundump.h -------------------------------------------------------------------------------- /libs/lua/lutf8lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lutf8lib.c -------------------------------------------------------------------------------- /libs/lua/lvm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lvm.c -------------------------------------------------------------------------------- /libs/lua/lvm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lvm.h -------------------------------------------------------------------------------- /libs/lua/lzio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lzio.c -------------------------------------------------------------------------------- /libs/lua/lzio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lua/lzio.h -------------------------------------------------------------------------------- /libs/lvgl.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl.cmake -------------------------------------------------------------------------------- /libs/lvgl/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/.editorconfig -------------------------------------------------------------------------------- /libs/lvgl/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/.gitignore -------------------------------------------------------------------------------- /libs/lvgl/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/Kconfig -------------------------------------------------------------------------------- /libs/lvgl/LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/LICENCE.txt -------------------------------------------------------------------------------- /libs/lvgl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/README.md -------------------------------------------------------------------------------- /libs/lvgl/README_zh.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/README_zh.md -------------------------------------------------------------------------------- /libs/lvgl/component.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/component.mk -------------------------------------------------------------------------------- /libs/lvgl/library.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/library.json -------------------------------------------------------------------------------- /libs/lvgl/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/lvgl.h -------------------------------------------------------------------------------- /libs/lvgl/lvgl.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/lvgl.mk -------------------------------------------------------------------------------- /libs/lvgl/src/core/lv_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/core/lv_obj.c -------------------------------------------------------------------------------- /libs/lvgl/src/core/lv_obj.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/core/lv_obj.h -------------------------------------------------------------------------------- /libs/lvgl/src/extra/others/fragment/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/lvgl/src/hal/lv_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/hal/lv_hal.h -------------------------------------------------------------------------------- /libs/lvgl/src/hal/lv_hal.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/hal/lv_hal.mk -------------------------------------------------------------------------------- /libs/lvgl/src/lv_api_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/lv_api_map.h -------------------------------------------------------------------------------- /libs/lvgl/src/lvgl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/lvgl.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_fs.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_fs.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_gc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_gc.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_gc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_gc.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_ll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_ll.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_ll.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_ll.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_log.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_log.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_lru.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_lru.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_lru.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_lru.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_mem.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_mem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_mem.h -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_txt.c -------------------------------------------------------------------------------- /libs/lvgl/src/misc/lv_txt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/lvgl/src/misc/lv_txt.h -------------------------------------------------------------------------------- /libs/mxml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/LICENSE -------------------------------------------------------------------------------- /libs/mxml/MiniXML.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/MiniXML.inf -------------------------------------------------------------------------------- /libs/mxml/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/config.h.in -------------------------------------------------------------------------------- /libs/mxml/mxml-attr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-attr.c -------------------------------------------------------------------------------- /libs/mxml/mxml-entity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-entity.c -------------------------------------------------------------------------------- /libs/mxml/mxml-file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-file.c -------------------------------------------------------------------------------- /libs/mxml/mxml-get.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-get.c -------------------------------------------------------------------------------- /libs/mxml/mxml-index.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-index.c -------------------------------------------------------------------------------- /libs/mxml/mxml-node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-node.c -------------------------------------------------------------------------------- /libs/mxml/mxml-private.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-private.c -------------------------------------------------------------------------------- /libs/mxml/mxml-private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-private.h -------------------------------------------------------------------------------- /libs/mxml/mxml-search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-search.c -------------------------------------------------------------------------------- /libs/mxml/mxml-set.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-set.c -------------------------------------------------------------------------------- /libs/mxml/mxml-string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml-string.c -------------------------------------------------------------------------------- /libs/mxml/mxml.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml.cmake -------------------------------------------------------------------------------- /libs/mxml/mxml.config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml.config.h.in -------------------------------------------------------------------------------- /libs/mxml/mxml.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/mxml/mxml.h -------------------------------------------------------------------------------- /libs/nanosvg/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/nanosvg/LICENSE.txt -------------------------------------------------------------------------------- /libs/nanosvg/NanoSVG.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/nanosvg/NanoSVG.inf -------------------------------------------------------------------------------- /libs/nanosvg/nanosvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/nanosvg/nanosvg.c -------------------------------------------------------------------------------- /libs/regex/RegexLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/regex/RegexLib.inf -------------------------------------------------------------------------------- /libs/regex/regex.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/regex/regex.cmake -------------------------------------------------------------------------------- /libs/regex/regexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/regex/regexp.c -------------------------------------------------------------------------------- /libs/regex/regexp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/regex/regexp.h -------------------------------------------------------------------------------- /libs/stb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/LICENSE -------------------------------------------------------------------------------- /libs/stb/STBLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/STBLib.inf -------------------------------------------------------------------------------- /libs/stb/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb.c -------------------------------------------------------------------------------- /libs/stb/stb.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb.cmake -------------------------------------------------------------------------------- /libs/stb/stb_c_lexer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_c_lexer.h -------------------------------------------------------------------------------- /libs/stb/stb_divide.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_divide.h -------------------------------------------------------------------------------- /libs/stb/stb_ds.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_ds.h -------------------------------------------------------------------------------- /libs/stb/stb_dxt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_dxt.h -------------------------------------------------------------------------------- /libs/stb/stb_easy_font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_easy_font.h -------------------------------------------------------------------------------- /libs/stb/stb_hexwave.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_hexwave.h -------------------------------------------------------------------------------- /libs/stb/stb_image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_image.h -------------------------------------------------------------------------------- /libs/stb/stb_include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_include.h -------------------------------------------------------------------------------- /libs/stb/stb_leakcheck.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_leakcheck.h -------------------------------------------------------------------------------- /libs/stb/stb_rect_pack.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_rect_pack.h -------------------------------------------------------------------------------- /libs/stb/stb_sprintf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_sprintf.h -------------------------------------------------------------------------------- /libs/stb/stb_textedit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_textedit.h -------------------------------------------------------------------------------- /libs/stb/stb_truetype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_truetype.h -------------------------------------------------------------------------------- /libs/stb/stb_vorbis.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/stb/stb_vorbis.c -------------------------------------------------------------------------------- /libs/util-linux/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/util-linux/COPYING -------------------------------------------------------------------------------- /libs/util-linux/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/util-linux/README -------------------------------------------------------------------------------- /libs/util-linux/libuuid/.dirstamp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/util-linux/ul.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/util-linux/ul.cmake -------------------------------------------------------------------------------- /libs/zlib/Zlib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/Zlib.inf -------------------------------------------------------------------------------- /libs/zlib/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/adler32.c -------------------------------------------------------------------------------- /libs/zlib/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/compress.c -------------------------------------------------------------------------------- /libs/zlib/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/crc32.c -------------------------------------------------------------------------------- /libs/zlib/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/crc32.h -------------------------------------------------------------------------------- /libs/zlib/deflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/deflate.c -------------------------------------------------------------------------------- /libs/zlib/deflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/deflate.h -------------------------------------------------------------------------------- /libs/zlib/gzclose.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/gzclose.c -------------------------------------------------------------------------------- /libs/zlib/gzguts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/gzguts.h -------------------------------------------------------------------------------- /libs/zlib/gzlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/gzlib.c -------------------------------------------------------------------------------- /libs/zlib/gzread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/gzread.c -------------------------------------------------------------------------------- /libs/zlib/gzwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/gzwrite.c -------------------------------------------------------------------------------- /libs/zlib/infback.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/infback.c -------------------------------------------------------------------------------- /libs/zlib/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inffast.c -------------------------------------------------------------------------------- /libs/zlib/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inffast.h -------------------------------------------------------------------------------- /libs/zlib/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inffixed.h -------------------------------------------------------------------------------- /libs/zlib/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inflate.c -------------------------------------------------------------------------------- /libs/zlib/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inflate.h -------------------------------------------------------------------------------- /libs/zlib/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inftrees.c -------------------------------------------------------------------------------- /libs/zlib/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/inftrees.h -------------------------------------------------------------------------------- /libs/zlib/trees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/trees.c -------------------------------------------------------------------------------- /libs/zlib/trees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/trees.h -------------------------------------------------------------------------------- /libs/zlib/uncompr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/uncompr.c -------------------------------------------------------------------------------- /libs/zlib/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/zconf.h -------------------------------------------------------------------------------- /libs/zlib/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/zlib.cmake -------------------------------------------------------------------------------- /libs/zlib/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/zlib.h -------------------------------------------------------------------------------- /libs/zlib/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/zutil.c -------------------------------------------------------------------------------- /libs/zlib/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/libs/zlib/zutil.h -------------------------------------------------------------------------------- /po/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/po/CMakeLists.txt -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /prebuilts/kernel.txz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/prebuilts/kernel.txz -------------------------------------------------------------------------------- /prebuilts/vmlinuz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/prebuilts/vmlinuz -------------------------------------------------------------------------------- /root/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/.gitignore -------------------------------------------------------------------------------- /root/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/bin: -------------------------------------------------------------------------------- 1 | usr/bin -------------------------------------------------------------------------------- /root/dev/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/default.ttf: -------------------------------------------------------------------------------- 1 | ../usr/share/fonts/wqy-mono-microhei.ttf -------------------------------------------------------------------------------- /root/etc/group: -------------------------------------------------------------------------------- 1 | root:x:0:root 2 | -------------------------------------------------------------------------------- /root/etc/gshadow: -------------------------------------------------------------------------------- 1 | root:::root 2 | -------------------------------------------------------------------------------- /root/etc/hosts: -------------------------------------------------------------------------------- 1 | 127.0.0.1 localhost 2 | -------------------------------------------------------------------------------- /root/etc/mtab: -------------------------------------------------------------------------------- 1 | ../proc/self/mount -------------------------------------------------------------------------------- /root/etc/passwd: -------------------------------------------------------------------------------- 1 | root:x:0:0::/:/bin/sh 2 | -------------------------------------------------------------------------------- /root/etc/profile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/profile -------------------------------------------------------------------------------- /root/etc/protocols: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/protocols -------------------------------------------------------------------------------- /root/etc/resolv.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/etc/services: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/services -------------------------------------------------------------------------------- /root/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/shadow -------------------------------------------------------------------------------- /root/etc/shells: -------------------------------------------------------------------------------- 1 | /bin/sh 2 | -------------------------------------------------------------------------------- /root/etc/symbols.ttf: -------------------------------------------------------------------------------- 1 | ../usr/share/fonts/fontawesome5.ttf -------------------------------------------------------------------------------- /root/etc/terminfo/a/ansi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/a/ansi -------------------------------------------------------------------------------- /root/etc/terminfo/d/dumb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/d/dumb -------------------------------------------------------------------------------- /root/etc/terminfo/e/emu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/e/emu -------------------------------------------------------------------------------- /root/etc/terminfo/l/linux: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/l/linux -------------------------------------------------------------------------------- /root/etc/terminfo/p/pty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/p/pty -------------------------------------------------------------------------------- /root/etc/terminfo/p/putty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/p/putty -------------------------------------------------------------------------------- /root/etc/terminfo/r/rxvt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/r/rxvt -------------------------------------------------------------------------------- /root/etc/terminfo/v/vt100: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/v/vt100 -------------------------------------------------------------------------------- /root/etc/terminfo/v/vt102: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/v/vt102 -------------------------------------------------------------------------------- /root/etc/terminfo/v/vt200: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/v/vt200 -------------------------------------------------------------------------------- /root/etc/terminfo/v/vt220: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/v/vt220 -------------------------------------------------------------------------------- /root/etc/terminfo/x/xterm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/root/etc/terminfo/x/xterm -------------------------------------------------------------------------------- /root/lib: -------------------------------------------------------------------------------- 1 | usr/lib -------------------------------------------------------------------------------- /root/lib64: -------------------------------------------------------------------------------- 1 | usr/lib -------------------------------------------------------------------------------- /root/proc/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/run/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/sbin: -------------------------------------------------------------------------------- 1 | usr/bin -------------------------------------------------------------------------------- /root/sys/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/usr/bin/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/usr/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/usr/lib64: -------------------------------------------------------------------------------- 1 | lib -------------------------------------------------------------------------------- /root/usr/sbin: -------------------------------------------------------------------------------- 1 | bin -------------------------------------------------------------------------------- /root/usr/share/pixmaps/mime/inode-file.svg: -------------------------------------------------------------------------------- 1 | application-x-zerosize.svg -------------------------------------------------------------------------------- /root/usr/share/terminfo: -------------------------------------------------------------------------------- 1 | ../../etc/terminfo -------------------------------------------------------------------------------- /root/var/cache/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/var/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/var/lock: -------------------------------------------------------------------------------- 1 | ../run/lock -------------------------------------------------------------------------------- /root/var/log/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /root/var/run: -------------------------------------------------------------------------------- 1 | ../run -------------------------------------------------------------------------------- /root/var/tmp/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/build-edk2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/build-edk2.sh -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/calc-lines.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/calc-lines.sh -------------------------------------------------------------------------------- /scripts/functions.sh.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/functions.sh.inc -------------------------------------------------------------------------------- /scripts/gen-initramfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/gen-initramfs.sh -------------------------------------------------------------------------------- /scripts/gen-logfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/gen-logfs.sh -------------------------------------------------------------------------------- /scripts/gen-miniroot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/gen-miniroot.sh -------------------------------------------------------------------------------- /scripts/install-gmo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/install-gmo.sh -------------------------------------------------------------------------------- /scripts/qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/qemu.sh -------------------------------------------------------------------------------- /scripts/submodules.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/scripts/submodules.sh -------------------------------------------------------------------------------- /src/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/CMakeLists.txt -------------------------------------------------------------------------------- /src/SimpleInitRootFS.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/SimpleInitRootFS.inf -------------------------------------------------------------------------------- /src/adbd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/CMakeLists.txt -------------------------------------------------------------------------------- /src/adbd/adb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/adb.c -------------------------------------------------------------------------------- /src/adbd/adb_auth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/adb_auth.c -------------------------------------------------------------------------------- /src/adbd/adbd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/adbd_internal.h -------------------------------------------------------------------------------- /src/adbd/fdevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/fdevent.c -------------------------------------------------------------------------------- /src/adbd/file_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/file_sync.c -------------------------------------------------------------------------------- /src/adbd/gadget.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/gadget.c -------------------------------------------------------------------------------- /src/adbd/services.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/services.c -------------------------------------------------------------------------------- /src/adbd/socket_local.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/socket_local.c -------------------------------------------------------------------------------- /src/adbd/sockets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/sockets.c -------------------------------------------------------------------------------- /src/adbd/transport.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/transport.c -------------------------------------------------------------------------------- /src/adbd/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/adbd/usb.c -------------------------------------------------------------------------------- /src/assets/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/assets/CMakeLists.txt -------------------------------------------------------------------------------- /src/assets/assets.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/assets/assets.c -------------------------------------------------------------------------------- /src/bcd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/CMakeLists.txt -------------------------------------------------------------------------------- /src/bcd/bcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/bcd.c -------------------------------------------------------------------------------- /src/bcd/bcdedit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/bcdedit.c -------------------------------------------------------------------------------- /src/bcd/bcdstore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/bcdstore.h -------------------------------------------------------------------------------- /src/bcd/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/data.c -------------------------------------------------------------------------------- /src/bcd/device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/device.c -------------------------------------------------------------------------------- /src/bcd/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/dump.c -------------------------------------------------------------------------------- /src/bcd/element.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/element.c -------------------------------------------------------------------------------- /src/bcd/element_value.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/element_value.c -------------------------------------------------------------------------------- /src/bcd/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/lib.c -------------------------------------------------------------------------------- /src/bcd/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/object.c -------------------------------------------------------------------------------- /src/bcd/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/bcd/store.c -------------------------------------------------------------------------------- /src/boot/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/CMakeLists.txt -------------------------------------------------------------------------------- /src/boot/boot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/boot.c -------------------------------------------------------------------------------- /src/boot/bootdef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/bootdef.c -------------------------------------------------------------------------------- /src/boot/charger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/charger.c -------------------------------------------------------------------------------- /src/boot/cpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/cpu.c -------------------------------------------------------------------------------- /src/boot/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/drivers.c -------------------------------------------------------------------------------- /src/boot/efi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/efi.c -------------------------------------------------------------------------------- /src/boot/efi_path.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/efi_path.c -------------------------------------------------------------------------------- /src/boot/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/exit.c -------------------------------------------------------------------------------- /src/boot/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/linux.c -------------------------------------------------------------------------------- /src/boot/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/lua.c -------------------------------------------------------------------------------- /src/boot/prober.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/prober.c -------------------------------------------------------------------------------- /src/boot/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/reboot.c -------------------------------------------------------------------------------- /src/boot/reboot_uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/reboot_uefi.c -------------------------------------------------------------------------------- /src/boot/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/root.c -------------------------------------------------------------------------------- /src/boot/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/splash.c -------------------------------------------------------------------------------- /src/boot/system.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/system.c -------------------------------------------------------------------------------- /src/boot/uefi_option.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/boot/uefi_option.c -------------------------------------------------------------------------------- /src/cmdline/androidboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/androidboot.c -------------------------------------------------------------------------------- /src/cmdline/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/cmdline.c -------------------------------------------------------------------------------- /src/cmdline/conffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/conffs.c -------------------------------------------------------------------------------- /src/cmdline/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/console.c -------------------------------------------------------------------------------- /src/cmdline/gui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/gui.c -------------------------------------------------------------------------------- /src/cmdline/logfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/logfs.c -------------------------------------------------------------------------------- /src/cmdline/options.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/options.c -------------------------------------------------------------------------------- /src/cmdline/root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/cmdline/root.c -------------------------------------------------------------------------------- /src/commands/abootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/abootimg.c -------------------------------------------------------------------------------- /src/commands/adbd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/adbd.c -------------------------------------------------------------------------------- /src/commands/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/arch.c -------------------------------------------------------------------------------- /src/commands/cat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/cat.c -------------------------------------------------------------------------------- /src/commands/cd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/cd.c -------------------------------------------------------------------------------- /src/commands/chdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/chdir.c -------------------------------------------------------------------------------- /src/commands/chroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/chroot.c -------------------------------------------------------------------------------- /src/commands/chvt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/chvt.c -------------------------------------------------------------------------------- /src/commands/clear.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/clear.c -------------------------------------------------------------------------------- /src/commands/close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/close.c -------------------------------------------------------------------------------- /src/commands/confctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/confctl.c -------------------------------------------------------------------------------- /src/commands/conftools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/conftools.c -------------------------------------------------------------------------------- /src/commands/dmesg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/dmesg.c -------------------------------------------------------------------------------- /src/commands/dumpinput.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/dumpinput.c -------------------------------------------------------------------------------- /src/commands/dumps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/dumps.c -------------------------------------------------------------------------------- /src/commands/echo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/echo.c -------------------------------------------------------------------------------- /src/commands/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/exit.c -------------------------------------------------------------------------------- /src/commands/findfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/findfs.c -------------------------------------------------------------------------------- /src/commands/halt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/halt.c -------------------------------------------------------------------------------- /src/commands/help.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/help.c -------------------------------------------------------------------------------- /src/commands/initctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/initctl.c -------------------------------------------------------------------------------- /src/commands/input_code.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/input_code.h -------------------------------------------------------------------------------- /src/commands/insmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/insmod.c -------------------------------------------------------------------------------- /src/commands/loggerctl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/loggerctl.c -------------------------------------------------------------------------------- /src/commands/ls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/ls.c -------------------------------------------------------------------------------- /src/commands/lsfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/lsfd.c -------------------------------------------------------------------------------- /src/commands/lsmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/lsmod.c -------------------------------------------------------------------------------- /src/commands/modprobe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/modprobe.c -------------------------------------------------------------------------------- /src/commands/mountpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/mountpoint.c -------------------------------------------------------------------------------- /src/commands/poweroff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/poweroff.c -------------------------------------------------------------------------------- /src/commands/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/reboot.c -------------------------------------------------------------------------------- /src/commands/rmmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/rmmod.c -------------------------------------------------------------------------------- /src/commands/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/service.c -------------------------------------------------------------------------------- /src/commands/setsid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/setsid.c -------------------------------------------------------------------------------- /src/commands/truefalse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/truefalse.c -------------------------------------------------------------------------------- /src/commands/uname.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/uname.c -------------------------------------------------------------------------------- /src/commands/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/unlink.c -------------------------------------------------------------------------------- /src/commands/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/version.c -------------------------------------------------------------------------------- /src/commands/write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/commands/write.c -------------------------------------------------------------------------------- /src/compress/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/compress/compress.c -------------------------------------------------------------------------------- /src/compress/gzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/compress/gzip.c -------------------------------------------------------------------------------- /src/compress/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/compress/internal.h -------------------------------------------------------------------------------- /src/confd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/CMakeLists.txt -------------------------------------------------------------------------------- /src/confd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/client.c -------------------------------------------------------------------------------- /src/confd/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/dump.c -------------------------------------------------------------------------------- /src/confd/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/file.c -------------------------------------------------------------------------------- /src/confd/file_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/file_conf.c -------------------------------------------------------------------------------- /src/confd/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/internal.c -------------------------------------------------------------------------------- /src/confd/json_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/json_conf.c -------------------------------------------------------------------------------- /src/confd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/server.c -------------------------------------------------------------------------------- /src/confd/store.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/store.c -------------------------------------------------------------------------------- /src/confd/uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/uefi.c -------------------------------------------------------------------------------- /src/confd/xml_conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/confd/xml_conf.c -------------------------------------------------------------------------------- /src/config-uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/config-uefi.h -------------------------------------------------------------------------------- /src/config.h.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/config.h.in -------------------------------------------------------------------------------- /src/devd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/CMakeLists.txt -------------------------------------------------------------------------------- /src/devd/devd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/devd.c -------------------------------------------------------------------------------- /src/devd/devd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/devd_internal.h -------------------------------------------------------------------------------- /src/devd/devtmpfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/devtmpfs.c -------------------------------------------------------------------------------- /src/devd/dyndev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/dyndev.c -------------------------------------------------------------------------------- /src/devd/firmware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/firmware.c -------------------------------------------------------------------------------- /src/devd/hotplug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/hotplug.c -------------------------------------------------------------------------------- /src/devd/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/internal.c -------------------------------------------------------------------------------- /src/devd/modalias.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/modalias.c -------------------------------------------------------------------------------- /src/devd/modules_load.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/modules_load.c -------------------------------------------------------------------------------- /src/devd/netlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/netlink.c -------------------------------------------------------------------------------- /src/devd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/server.c -------------------------------------------------------------------------------- /src/devd/uevent.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/devd/uevent.c -------------------------------------------------------------------------------- /src/filesystem/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/drivers.c -------------------------------------------------------------------------------- /src/filesystem/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/file.c -------------------------------------------------------------------------------- /src/filesystem/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/internal.c -------------------------------------------------------------------------------- /src/filesystem/locked.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/locked.c -------------------------------------------------------------------------------- /src/filesystem/oper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/oper.c -------------------------------------------------------------------------------- /src/filesystem/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/string.c -------------------------------------------------------------------------------- /src/filesystem/utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/utils.c -------------------------------------------------------------------------------- /src/filesystem/volume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/filesystem/volume.c -------------------------------------------------------------------------------- /src/gadget/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/CMakeLists.txt -------------------------------------------------------------------------------- /src/gadget/add.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/add.c -------------------------------------------------------------------------------- /src/gadget/add_function.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/add_function.c -------------------------------------------------------------------------------- /src/gadget/general.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/general.c -------------------------------------------------------------------------------- /src/gadget/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/register.c -------------------------------------------------------------------------------- /src/gadget/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/service.c -------------------------------------------------------------------------------- /src/gadget/startstop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/startstop.c -------------------------------------------------------------------------------- /src/gadget/unregister.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gadget/unregister.c -------------------------------------------------------------------------------- /src/getopt/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/getopt/CMakeLists.txt -------------------------------------------------------------------------------- /src/getopt/getopt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/getopt/getopt.c -------------------------------------------------------------------------------- /src/getopt/getopt_long.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/getopt/getopt_long.c -------------------------------------------------------------------------------- /src/gui/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/CMakeLists.txt -------------------------------------------------------------------------------- /src/gui/SimpleInitGUI.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/SimpleInitGUI.inf -------------------------------------------------------------------------------- /src/gui/activities.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/activities.c -------------------------------------------------------------------------------- /src/gui/activity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/activity.c -------------------------------------------------------------------------------- /src/gui/color.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/color.c -------------------------------------------------------------------------------- /src/gui/decoders/bmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/decoders/bmp.c -------------------------------------------------------------------------------- /src/gui/decoders/image.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/decoders/image.c -------------------------------------------------------------------------------- /src/gui/decoders/jpeg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/decoders/jpeg.c -------------------------------------------------------------------------------- /src/gui/decoders/png.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/decoders/png.c -------------------------------------------------------------------------------- /src/gui/decoders/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/decoders/stb.c -------------------------------------------------------------------------------- /src/gui/decoders/svg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/decoders/svg.c -------------------------------------------------------------------------------- /src/gui/drivers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers.c -------------------------------------------------------------------------------- /src/gui/drivers/drm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/drm.c -------------------------------------------------------------------------------- /src/gui/drivers/dummy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/dummy.c -------------------------------------------------------------------------------- /src/gui/drivers/fbdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/fbdev.c -------------------------------------------------------------------------------- /src/gui/drivers/gtk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/gtk.c -------------------------------------------------------------------------------- /src/gui/drivers/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/http.c -------------------------------------------------------------------------------- /src/gui/drivers/input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/input.c -------------------------------------------------------------------------------- /src/gui/drivers/modes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/modes.c -------------------------------------------------------------------------------- /src/gui/drivers/sdl2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/sdl2.c -------------------------------------------------------------------------------- /src/gui/drivers/stdin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/stdin.c -------------------------------------------------------------------------------- /src/gui/drivers/vnc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/drivers/vnc.c -------------------------------------------------------------------------------- /src/gui/engine/activity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/activity.c -------------------------------------------------------------------------------- /src/gui/engine/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/app.c -------------------------------------------------------------------------------- /src/gui/engine/code.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/code.c -------------------------------------------------------------------------------- /src/gui/engine/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/event.c -------------------------------------------------------------------------------- /src/gui/engine/inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/inline.c -------------------------------------------------------------------------------- /src/gui/engine/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/lib.c -------------------------------------------------------------------------------- /src/gui/engine/object.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/object.c -------------------------------------------------------------------------------- /src/gui/engine/objects.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/objects.c -------------------------------------------------------------------------------- /src/gui/engine/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/render.c -------------------------------------------------------------------------------- /src/gui/engine/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/struct.c -------------------------------------------------------------------------------- /src/gui/engine/style.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/engine/style.c -------------------------------------------------------------------------------- /src/gui/gui_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/gui_init.c -------------------------------------------------------------------------------- /src/gui/guidrv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/guidrv.c -------------------------------------------------------------------------------- /src/gui/lua/activity.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/activity.c -------------------------------------------------------------------------------- /src/gui/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/lua.c -------------------------------------------------------------------------------- /src/gui/lua/lvgl/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/lvgl/lib.c -------------------------------------------------------------------------------- /src/gui/lua/lvgl/lvgl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/lvgl/lvgl.c -------------------------------------------------------------------------------- /src/gui/lua/lvgl/obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/lvgl/obj.c -------------------------------------------------------------------------------- /src/gui/lua/render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/render.c -------------------------------------------------------------------------------- /src/gui/lua/render_obj.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/render_obj.c -------------------------------------------------------------------------------- /src/gui/lua/sysbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/lua/sysbar.c -------------------------------------------------------------------------------- /src/gui/string/align.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/align.lst -------------------------------------------------------------------------------- /src/gui/string/dir.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/dir.lst -------------------------------------------------------------------------------- /src/gui/string/event.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/event.lst -------------------------------------------------------------------------------- /src/gui/string/key.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/key.lst -------------------------------------------------------------------------------- /src/gui/string/opa.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/opa.lst -------------------------------------------------------------------------------- /src/gui/string/part.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/part.lst -------------------------------------------------------------------------------- /src/gui/string/state.lst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/state.lst -------------------------------------------------------------------------------- /src/gui/string/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/string.c -------------------------------------------------------------------------------- /src/gui/string/template.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/string/template.h -------------------------------------------------------------------------------- /src/gui/theme/icon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/theme/icon.c -------------------------------------------------------------------------------- /src/gui/tools.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/gui/tools.c -------------------------------------------------------------------------------- /src/hardware/battery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/hardware/battery.c -------------------------------------------------------------------------------- /src/hardware/led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/hardware/led.c -------------------------------------------------------------------------------- /src/hardware/vibrate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/hardware/vibrate.c -------------------------------------------------------------------------------- /src/host/rootfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/host/rootfs.c -------------------------------------------------------------------------------- /src/initd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/CMakeLists.txt -------------------------------------------------------------------------------- /src/initd/bootsvc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/bootsvc.c -------------------------------------------------------------------------------- /src/initd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/client.c -------------------------------------------------------------------------------- /src/initd/conffs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/conffs.c -------------------------------------------------------------------------------- /src/initd/environ.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/environ.c -------------------------------------------------------------------------------- /src/initd/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/init.c -------------------------------------------------------------------------------- /src/initd/logfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/logfs.c -------------------------------------------------------------------------------- /src/initd/preinit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/preinit.c -------------------------------------------------------------------------------- /src/initd/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/protocol.c -------------------------------------------------------------------------------- /src/initd/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/reboot.c -------------------------------------------------------------------------------- /src/initd/run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/run.c -------------------------------------------------------------------------------- /src/initd/signals.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/signals.c -------------------------------------------------------------------------------- /src/initd/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/socket.c -------------------------------------------------------------------------------- /src/initd/umount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/initd/umount.c -------------------------------------------------------------------------------- /src/lib/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/CMakeLists.txt -------------------------------------------------------------------------------- /src/lib/SimpleInitLib.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/SimpleInitLib.inf -------------------------------------------------------------------------------- /src/lib/aboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/aboot.c -------------------------------------------------------------------------------- /src/lib/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/array.c -------------------------------------------------------------------------------- /src/lib/base64.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/base64.c -------------------------------------------------------------------------------- /src/lib/credential.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/credential.c -------------------------------------------------------------------------------- /src/lib/exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/exit.c -------------------------------------------------------------------------------- /src/lib/fdtparser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/fdtparser.c -------------------------------------------------------------------------------- /src/lib/file.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/file.c -------------------------------------------------------------------------------- /src/lib/http.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/http.c -------------------------------------------------------------------------------- /src/lib/keyval.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/keyval.c -------------------------------------------------------------------------------- /src/lib/language.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/language.c -------------------------------------------------------------------------------- /src/lib/list.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/list.c -------------------------------------------------------------------------------- /src/lib/mime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/mime.c -------------------------------------------------------------------------------- /src/lib/mode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/mode.c -------------------------------------------------------------------------------- /src/lib/modules.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/modules.c -------------------------------------------------------------------------------- /src/lib/mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/mount.c -------------------------------------------------------------------------------- /src/lib/param.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/param.c -------------------------------------------------------------------------------- /src/lib/pool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/pool.c -------------------------------------------------------------------------------- /src/lib/proctitle.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/proctitle.c -------------------------------------------------------------------------------- /src/lib/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/random.c -------------------------------------------------------------------------------- /src/lib/readable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/readable.c -------------------------------------------------------------------------------- /src/lib/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/reboot.c -------------------------------------------------------------------------------- /src/lib/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/recovery.c -------------------------------------------------------------------------------- /src/lib/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/replace.c -------------------------------------------------------------------------------- /src/lib/signal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/signal.c -------------------------------------------------------------------------------- /src/lib/stdio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/stdio.c -------------------------------------------------------------------------------- /src/lib/strings.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/strings.c -------------------------------------------------------------------------------- /src/lib/switchroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/switchroot.c -------------------------------------------------------------------------------- /src/lib/uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/uefi.c -------------------------------------------------------------------------------- /src/lib/uefi_string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/uefi_string.c -------------------------------------------------------------------------------- /src/lib/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/url.c -------------------------------------------------------------------------------- /src/lib/websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lib/websocket.c -------------------------------------------------------------------------------- /src/linux-boot/aboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/aboot.c -------------------------------------------------------------------------------- /src/linux-boot/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/arm.c -------------------------------------------------------------------------------- /src/linux-boot/cmdline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/cmdline.c -------------------------------------------------------------------------------- /src/linux-boot/compress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/compress.c -------------------------------------------------------------------------------- /src/linux-boot/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/conf.c -------------------------------------------------------------------------------- /src/linux-boot/dtb_sel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/dtb_sel.c -------------------------------------------------------------------------------- /src/linux-boot/dtbo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/dtbo.c -------------------------------------------------------------------------------- /src/linux-boot/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/dump.c -------------------------------------------------------------------------------- /src/linux-boot/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/fdt.c -------------------------------------------------------------------------------- /src/linux-boot/info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/info.c -------------------------------------------------------------------------------- /src/linux-boot/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/internal.h -------------------------------------------------------------------------------- /src/linux-boot/linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/linux.c -------------------------------------------------------------------------------- /src/linux-boot/loader.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/loader.c -------------------------------------------------------------------------------- /src/linux-boot/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/mem.c -------------------------------------------------------------------------------- /src/linux-boot/move.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/move.c -------------------------------------------------------------------------------- /src/linux-boot/qcom.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/qcom.c -------------------------------------------------------------------------------- /src/linux-boot/qcom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/qcom.h -------------------------------------------------------------------------------- /src/linux-boot/ramdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/ramdisk.c -------------------------------------------------------------------------------- /src/linux-boot/random.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/random.c -------------------------------------------------------------------------------- /src/linux-boot/splash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/splash.c -------------------------------------------------------------------------------- /src/linux-boot/uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/linux-boot/uefi.c -------------------------------------------------------------------------------- /src/locate/disk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/disk.c -------------------------------------------------------------------------------- /src/locate/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/fs.c -------------------------------------------------------------------------------- /src/locate/gpt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/gpt.c -------------------------------------------------------------------------------- /src/locate/internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/internal.h -------------------------------------------------------------------------------- /src/locate/locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/locate.c -------------------------------------------------------------------------------- /src/locate/locates.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/locates.c -------------------------------------------------------------------------------- /src/locate/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/locate/mbr.c -------------------------------------------------------------------------------- /src/loggerd/buffer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/buffer.c -------------------------------------------------------------------------------- /src/loggerd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/client.c -------------------------------------------------------------------------------- /src/loggerd/file_logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/file_logger.c -------------------------------------------------------------------------------- /src/loggerd/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/internal.c -------------------------------------------------------------------------------- /src/loggerd/klog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/klog.c -------------------------------------------------------------------------------- /src/loggerd/lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/lib.c -------------------------------------------------------------------------------- /src/loggerd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/server.c -------------------------------------------------------------------------------- /src/loggerd/syslog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/loggerd/syslog.c -------------------------------------------------------------------------------- /src/lua/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/CMakeLists.txt -------------------------------------------------------------------------------- /src/lua/SimpleInitLua.inf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/SimpleInitLua.inf -------------------------------------------------------------------------------- /src/lua/abootimg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/abootimg.c -------------------------------------------------------------------------------- /src/lua/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/conf.c -------------------------------------------------------------------------------- /src/lua/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/data.c -------------------------------------------------------------------------------- /src/lua/fdisk/fdisk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/fdisk/fdisk.c -------------------------------------------------------------------------------- /src/lua/fdisk/fdisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/fdisk/fdisk.h -------------------------------------------------------------------------------- /src/lua/fdisk/fdisk_ask.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/fdisk/fdisk_ask.c -------------------------------------------------------------------------------- /src/lua/feature.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/feature.c -------------------------------------------------------------------------------- /src/lua/filesystem/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/filesystem/fs.c -------------------------------------------------------------------------------- /src/lua/filesystem/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/filesystem/fs.h -------------------------------------------------------------------------------- /src/lua/filesystem/fsh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/filesystem/fsh.c -------------------------------------------------------------------------------- /src/lua/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/init.c -------------------------------------------------------------------------------- /src/lua/libs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/libs.c -------------------------------------------------------------------------------- /src/lua/locate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/locate.c -------------------------------------------------------------------------------- /src/lua/logger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/logger.c -------------------------------------------------------------------------------- /src/lua/lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/lua.c -------------------------------------------------------------------------------- /src/lua/nanosvg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/nanosvg.c -------------------------------------------------------------------------------- /src/lua/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/recovery.c -------------------------------------------------------------------------------- /src/lua/stb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/stb.c -------------------------------------------------------------------------------- /src/lua/uefi/data/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/data/event.c -------------------------------------------------------------------------------- /src/lua/uefi/data/guid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/data/guid.c -------------------------------------------------------------------------------- /src/lua/uefi/data/time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/data/time.c -------------------------------------------------------------------------------- /src/lua/uefi/file_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/file_info.c -------------------------------------------------------------------------------- /src/lua/uefi/guids.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/guids.c -------------------------------------------------------------------------------- /src/lua/uefi/libs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/libs.c -------------------------------------------------------------------------------- /src/lua/uefi/lua_uefi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/lua_uefi.h -------------------------------------------------------------------------------- /src/lua/uefi/uefi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/uefi/uefi.c -------------------------------------------------------------------------------- /src/lua/url.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/lua/url.c -------------------------------------------------------------------------------- /src/main/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/main/dump.c -------------------------------------------------------------------------------- /src/main/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/main/main.c -------------------------------------------------------------------------------- /src/main/uefimain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/main/uefimain.c -------------------------------------------------------------------------------- /src/main/wrapper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/main/wrapper.c -------------------------------------------------------------------------------- /src/rootfs_data.s.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/rootfs_data.s.in -------------------------------------------------------------------------------- /src/service/conf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/conf.c -------------------------------------------------------------------------------- /src/service/data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/data.c -------------------------------------------------------------------------------- /src/service/default.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/default.c -------------------------------------------------------------------------------- /src/service/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/dump.c -------------------------------------------------------------------------------- /src/service/execute.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/execute.c -------------------------------------------------------------------------------- /src/service/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/queue.c -------------------------------------------------------------------------------- /src/service/scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/scheduler.c -------------------------------------------------------------------------------- /src/service/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/service.c -------------------------------------------------------------------------------- /src/service/sigchld.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/sigchld.c -------------------------------------------------------------------------------- /src/service/start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/start.c -------------------------------------------------------------------------------- /src/service/stop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/stop.c -------------------------------------------------------------------------------- /src/service/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/string.c -------------------------------------------------------------------------------- /src/service/struct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/service/struct.c -------------------------------------------------------------------------------- /src/shell/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/shell/CMakeLists.txt -------------------------------------------------------------------------------- /src/shell/cmd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/shell/cmd.c -------------------------------------------------------------------------------- /src/shell/commands.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/shell/commands.c -------------------------------------------------------------------------------- /src/shell/external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/shell/external.c -------------------------------------------------------------------------------- /src/shell/replace.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/shell/replace.c -------------------------------------------------------------------------------- /src/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/shell/shell.c -------------------------------------------------------------------------------- /src/ttyd/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/CMakeLists.txt -------------------------------------------------------------------------------- /src/ttyd/client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/client.c -------------------------------------------------------------------------------- /src/ttyd/internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/internal.c -------------------------------------------------------------------------------- /src/ttyd/issue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/issue.c -------------------------------------------------------------------------------- /src/ttyd/login.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/login.c -------------------------------------------------------------------------------- /src/ttyd/protocol.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/protocol.c -------------------------------------------------------------------------------- /src/ttyd/server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/server.c -------------------------------------------------------------------------------- /src/ttyd/session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/session.c -------------------------------------------------------------------------------- /src/ttyd/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/speed.c -------------------------------------------------------------------------------- /src/ttyd/ttyd_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/ttyd_internal.h -------------------------------------------------------------------------------- /src/ttyd/worker.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/ttyd/worker.c -------------------------------------------------------------------------------- /src/wasm/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/CMakeLists.txt -------------------------------------------------------------------------------- /src/wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/index.html -------------------------------------------------------------------------------- /src/wasm/json-c.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/json-c.cmake -------------------------------------------------------------------------------- /src/wasm/web_gui_render.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/web_gui_render.c -------------------------------------------------------------------------------- /src/wasm/web_gui_render.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/web_gui_render.h -------------------------------------------------------------------------------- /src/wasm/websocket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/websocket.c -------------------------------------------------------------------------------- /src/wasm/websocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/websocket.h -------------------------------------------------------------------------------- /src/wasm/zlib.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BigfootACA/simple-init/HEAD/src/wasm/zlib.cmake --------------------------------------------------------------------------------