├── .gitignore ├── AndroidBoot.mk ├── LICENSE ├── README.md ├── app ├── aboot │ ├── aboot.c │ ├── bootimg.h │ ├── devinfo.h │ ├── fastboot.c │ ├── fastboot.h │ ├── fastboot_test.c │ ├── fastboot_test.h │ ├── fotainfo.c │ ├── fotainfo.h │ ├── mdtp.c │ ├── mdtp.h │ ├── mdtp_defs.c │ ├── mdtp_defs.h │ ├── mdtp_fuse.c │ ├── mdtp_ui.c │ ├── meta_format.h │ ├── recovery.c │ ├── recovery.h │ ├── rules.mk │ └── sparse_format.h ├── app.c ├── clocktests │ ├── clock_tests.c │ └── rules.mk ├── mmutest │ ├── mmu_test.c │ └── rules.mk ├── nandwrite │ ├── bootimg.h │ ├── nandwrite.c │ └── rules.mk ├── pcitests │ ├── pci_tests.c │ └── rules.mk ├── rpmbtests │ ├── qseecom_lk_test.c │ ├── rules.mk │ ├── ufs_rpmb.c │ └── ufs_rpmb.h ├── rules.mk ├── shell │ ├── rules.mk │ └── shell.c ├── stringtests │ ├── mymemcpy.S │ ├── mymemset.S │ ├── rules.mk │ └── string_tests.c └── tests │ ├── i2c_test.c │ ├── include │ └── app │ │ ├── kauth_test.h │ │ └── tests.h │ ├── kauth_test.c │ ├── printf_tests.c │ ├── rules.mk │ ├── tests.c │ └── thread_tests.c ├── arch ├── arm │ ├── arch.c │ ├── asm.S │ ├── cache-ops.S │ ├── cache.c │ ├── compile.mk │ ├── crt0.S │ ├── dcc.S │ ├── exceptions.S │ ├── faults.c │ ├── include │ │ └── arch │ │ │ ├── arch_thread.h │ │ │ ├── arm.h │ │ │ ├── arm │ │ │ ├── cores.h │ │ │ ├── dcc.h │ │ │ ├── mmu.h │ │ │ └── ops.h │ │ │ └── defines.h │ ├── mmu.c │ ├── mmu_lpae.c │ ├── ops.S │ ├── rules.mk │ ├── system-onesegment.ld │ ├── system-twosegment.ld │ ├── thread.c │ ├── trustzone-system-onesegment.ld │ └── trustzone-test-system-onesegment.ld └── x86 │ ├── arch.c │ ├── asm.S │ ├── cache-ops.S │ ├── cache.c │ ├── compile.mk │ ├── crt0.S │ ├── descriptor.c │ ├── faults.c │ ├── include │ └── arch │ │ ├── arch_thread.h │ │ ├── defines.h │ │ ├── x86.h │ │ └── x86 │ │ ├── descriptor.h │ │ ├── mmu.h │ │ └── ops.h │ ├── kernel.ld │ ├── mmu.c │ ├── ops.S │ ├── rules.mk │ └── thread.c ├── dev ├── dev.c ├── fbcon │ ├── fbcon.c │ ├── font5x12.h │ └── rules.mk ├── gcdb │ └── display │ │ ├── fastboot_oem_display.h │ │ ├── gcdb_autopll.c │ │ ├── gcdb_autopll.h │ │ ├── gcdb_display.c │ │ ├── gcdb_display.h │ │ ├── gcdb_display_param.c │ │ ├── include │ │ ├── display_resource.h │ │ ├── panel.h │ │ ├── panel_adv7533_1080p60.h │ │ ├── panel_adv7533_720p60.h │ │ ├── panel_auo_qvga_cmd.h │ │ ├── panel_byd_1200p_video.h │ │ ├── panel_fl10802_fwvga_video.h │ │ ├── panel_generic_720p_cmd.h │ │ ├── panel_hx8279a_wsvga_video.h │ │ ├── panel_hx8379a_fwvga_skua_video.h │ │ ├── panel_hx8379a_fwvga_video.h │ │ ├── panel_hx8379a_truly_fwvga_video.h │ │ ├── panel_hx8379a_wvga_video.h │ │ ├── panel_hx8379c_fwvga_video.h │ │ ├── panel_hx8389b_qhd_video.h │ │ ├── panel_hx8394a_720p_video.h │ │ ├── panel_hx8394d_720p_video.h │ │ ├── panel_hx8394d_qhd_video.h │ │ ├── panel_hx8399a_1080p_video.h │ │ ├── panel_ili9806e_fwvga_video.h │ │ ├── panel_innolux_720p_video.h │ │ ├── panel_jdi_1080p_video.h │ │ ├── panel_jdi_4k_dualdsi_video.h │ │ ├── panel_jdi_4k_dualdsi_video_nofbc.h │ │ ├── panel_jdi_a216_fhd_video.h │ │ ├── panel_jdi_fhd_video.h │ │ ├── panel_jdi_qhd_dualdsi_cmd.h │ │ ├── panel_jdi_qhd_dualdsi_video.h │ │ ├── panel_nt35521_720p_video.h │ │ ├── panel_nt35521_wxga_video.h │ │ ├── panel_nt35590_720p_cmd.h │ │ ├── panel_nt35590_720p_video.h │ │ ├── panel_nt35590_qvga_cmd.h │ │ ├── panel_nt35596_1080p_skuk_video.h │ │ ├── panel_nt35596_1080p_video.h │ │ ├── panel_nt35597_wqxga_cmd.h │ │ ├── panel_nt35597_wqxga_dsc_cmd.h │ │ ├── panel_nt35597_wqxga_dsc_video.h │ │ ├── panel_nt35597_wqxga_dualdsi_cmd.h │ │ ├── panel_nt35597_wqxga_dualdsi_video.h │ │ ├── panel_nt35597_wqxga_video.h │ │ ├── panel_otm1283a_720p_video.h │ │ ├── panel_otm1906c_1080p_cmd.h │ │ ├── panel_otm8018b_fwvga_video.h │ │ ├── panel_otm8019a_fwvga_video.h │ │ ├── panel_r61318_hd_video.h │ │ ├── panel_r63417_1080p_video.h │ │ ├── panel_r69007_wqxga_cmd.h │ │ ├── panel_samsung_wxga_video.h │ │ ├── panel_sharp_1080p_cmd.h │ │ ├── panel_sharp_qhd_video.h │ │ ├── panel_sharp_wqxga_dualdsi_video.h │ │ ├── panel_ssd2080m_720p_video.h │ │ ├── panel_toshiba_720p_video.h │ │ ├── panel_truly_1080p_cmd.h │ │ ├── panel_truly_1080p_video.h │ │ ├── panel_truly_wvga_cmd.h │ │ └── panel_truly_wvga_video.h │ │ ├── panel_display.c │ │ ├── panel_display.h │ │ └── rules.mk ├── keys │ ├── gpio_keypad.c │ ├── keys.c │ └── rules.mk ├── net │ └── smc91c96 │ │ ├── include │ │ └── dev │ │ │ └── net │ │ │ └── smc91c96.h │ │ ├── rules.mk │ │ ├── smc91c96.c │ │ └── smc91c96_p.h ├── pmic │ ├── fgsram │ │ ├── include │ │ │ └── pm_fg_sram.h │ │ ├── pm_fg_sram.c │ │ └── rules.mk │ ├── pm8921 │ │ ├── include │ │ │ └── dev │ │ │ │ ├── pm8921.h │ │ │ │ ├── pm8921_leds.h │ │ │ │ └── pm8921_pwm.h │ │ ├── pm8921.c │ │ ├── pm8921_hw.h │ │ ├── pm8921_pwm.c │ │ └── rules.mk │ ├── pm8x41 │ │ ├── include │ │ │ ├── pm8x41.h │ │ │ ├── pm8x41_adc.h │ │ │ ├── pm8x41_hw.h │ │ │ ├── pm8x41_regulator.h │ │ │ ├── pm8x41_wled.h │ │ │ ├── pm_pwm.h │ │ │ └── pm_vib.h │ │ ├── pm8x41.c │ │ ├── pm8x41_adc.c │ │ ├── pm8x41_regulator.c │ │ ├── pm8x41_vib.c │ │ ├── pm8x41_wled.c │ │ ├── pm_pwm.c │ │ └── rules.mk │ ├── pmi8994 │ │ ├── include │ │ │ ├── pm_app_smbchg.h │ │ │ ├── pm_comm.h │ │ │ ├── pm_err_flags.h │ │ │ ├── pm_fg_adc_usr.h │ │ │ ├── pm_fg_driver.h │ │ │ ├── pm_resources_and_types.h │ │ │ ├── pm_smbchg_bat_if.h │ │ │ ├── pm_smbchg_chgr.h │ │ │ ├── pm_smbchg_dc_chgpth.h │ │ │ ├── pm_smbchg_driver.h │ │ │ ├── pm_smbchg_misc.h │ │ │ └── pm_smbchg_usb_chgpth.h │ │ ├── pm_app_smbchg.c │ │ ├── pm_comm_spmi_lite.c │ │ ├── pm_config_target.c │ │ ├── pm_fg_adc_usr.c │ │ ├── pm_fg_driver.c │ │ ├── pm_smbchg_bat_if.c │ │ ├── pm_smbchg_chgr.c │ │ ├── pm_smbchg_dc_chgpth.c │ │ ├── pm_smbchg_driver.c │ │ ├── pm_smbchg_misc.c │ │ ├── pm_smbchg_usb_chgpth.c │ │ └── rules.mk │ └── twl4030 │ │ ├── include │ │ └── dev │ │ │ └── twl4030.h │ │ ├── rules.mk │ │ ├── twl4030.c │ │ └── twl4030_hw.h ├── qpnp_haptic │ ├── qpnp_haptic.c │ └── rules.mk ├── qpnp_led │ ├── include │ │ └── qpnp_led.h │ ├── qpnp_led.c │ └── rules.mk ├── qpnp_wled │ ├── include │ │ └── qpnp_wled.h │ ├── qpnp_wled.c │ └── rules.mk ├── rules.mk ├── ssbi │ ├── include │ │ └── dev │ │ │ └── ssbi.h │ ├── rules.mk │ └── ssbi.c ├── usb │ ├── rules.mk │ └── usb.c └── vib │ ├── include │ └── vibrator.h │ ├── rules.mk │ └── vibrator.c ├── include ├── Makefile.am ├── app.h ├── arch.h ├── arch │ ├── ops.h │ └── thread.h ├── asm.h ├── assert.h ├── bits.h ├── compiler.h ├── ctype.h ├── debug.h ├── dev │ ├── display.h │ ├── ethernet.h │ ├── fbcon.h │ ├── flash-ubi.h │ ├── flash.h │ ├── gpio.h │ ├── gpio_keypad.h │ ├── i2c.h │ ├── keys.h │ ├── lcdc.h │ ├── pci.h │ ├── uart.h │ ├── udc.h │ ├── usb.h │ └── usbc.h ├── endian.h ├── err.h ├── errno.h ├── hw │ ├── mii.h │ └── usb.h ├── inttypes.h ├── kernel │ ├── dpc.h │ ├── event.h │ ├── mutex.h │ ├── thread.h │ └── timer.h ├── lib │ ├── bcache.h │ ├── bio.h │ ├── cbuf.h │ ├── console.h │ ├── font.h │ ├── fs.h │ ├── gfx.h │ ├── gfxconsole.h │ ├── heap.h │ ├── partition.h │ ├── ptable.h │ ├── text.h │ └── tga.h ├── limits.h ├── list.h ├── malloc.h ├── new.h ├── platform.h ├── platform │ ├── debug.h │ ├── interrupts.h │ └── timer.h ├── pow2.h ├── printf.h ├── rand.h ├── reg.h ├── stdint.h ├── stdio.h ├── stdlib.h ├── string.h ├── sys │ └── types.h └── target.h ├── kernel ├── debug.c ├── dpc.c ├── event.c ├── main.c ├── mutex.c ├── rules.mk ├── thread.c └── timer.c ├── lib ├── bcache │ ├── bcache.c │ └── rules.mk ├── bio │ ├── bio.c │ ├── debug.c │ ├── mem.c │ ├── rules.mk │ └── subdev.c ├── cbuf │ ├── cbuf.c │ └── rules.mk ├── console │ ├── console.c │ └── rules.mk ├── debug │ ├── debug.c │ └── rules.mk ├── font │ ├── font.c │ ├── font.h │ └── rules.mk ├── fs │ ├── debug.c │ ├── fs.c │ └── rules.mk ├── gfx │ ├── gfx.c │ └── rules.mk ├── gfxconsole │ ├── gfxconsole.c │ └── rules.mk ├── heap │ ├── heap.c │ └── rules.mk ├── libc │ ├── atexit.c │ ├── atoi.c │ ├── ctype.c │ ├── eabi.c │ ├── gcd_lcm.c │ ├── itoa.c │ ├── malloc.c │ ├── new.cpp │ ├── printf.c │ ├── pure_virtual.cpp │ ├── rand.c │ ├── rules.mk │ └── string │ │ ├── arch │ │ ├── arm │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ └── rules.mk │ │ └── x86 │ │ │ ├── memcpy.S │ │ │ ├── memset.S │ │ │ └── rules.mk │ │ ├── bcopy.c │ │ ├── bzero.c │ │ ├── memchr.c │ │ ├── memcmp.c │ │ ├── memcpy.c │ │ ├── memmove.c │ │ ├── memscan.c │ │ ├── memscpy.c │ │ ├── memset.c │ │ ├── rules.mk │ │ ├── strcat.c │ │ ├── strchr.c │ │ ├── strcmp.c │ │ ├── strcoll.c │ │ ├── strcpy.c │ │ ├── strdup.c │ │ ├── strerror.c │ │ ├── strlcat.c │ │ ├── strlcpy.c │ │ ├── strlen.c │ │ ├── strncat.c │ │ ├── strncmp.c │ │ ├── strncpy.c │ │ ├── strnicmp.c │ │ ├── strnlen.c │ │ ├── strpbrk.c │ │ ├── strrchr.c │ │ ├── strrev.c │ │ ├── strspn.c │ │ ├── strstr.c │ │ ├── strtok.c │ │ └── strxfrm.c ├── libfdt │ ├── Makefile.libfdt │ ├── README.license │ ├── TODO │ ├── fdt.c │ ├── fdt.h │ ├── fdt_empty_tree.c │ ├── fdt_ro.c │ ├── fdt_rw.c │ ├── fdt_strerror.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── libfdt.h │ ├── libfdt_env.h │ ├── libfdt_internal.h │ ├── rules.mk │ └── version.lds ├── openssl │ ├── CleanSpec.mk │ ├── MODULE_LICENSE_BSD_LIKE │ ├── NOTICE │ ├── README.android │ ├── ThirdPartyProject.prop │ ├── android-config.mk │ ├── android.testssl │ │ ├── CAss.cnf │ │ ├── Uss.cnf │ │ ├── server2.pem │ │ ├── testssl │ │ └── testssl.sh │ ├── apps │ │ ├── CA.com │ │ ├── CA.pl │ │ ├── CA.pl.in │ │ ├── CA.sh │ │ ├── app_rand.c │ │ ├── apps.c │ │ ├── apps.h │ │ ├── asn1pars.c │ │ ├── ca-cert.srl │ │ ├── ca-key.pem │ │ ├── ca-req.pem │ │ ├── ca.c │ │ ├── cert.pem │ │ ├── ciphers.c │ │ ├── client.pem │ │ ├── cms.c │ │ ├── crl.c │ │ ├── crl2p7.c │ │ ├── dgst.c │ │ ├── dh.c │ │ ├── dh1024.pem │ │ ├── dh2048.pem │ │ ├── dh4096.pem │ │ ├── dh512.pem │ │ ├── dhparam.c │ │ ├── dsa-ca.pem │ │ ├── dsa-pca.pem │ │ ├── dsa.c │ │ ├── dsa1024.pem │ │ ├── dsa512.pem │ │ ├── dsap.pem │ │ ├── dsaparam.c │ │ ├── ec.c │ │ ├── ecparam.c │ │ ├── enc.c │ │ ├── engine.c │ │ ├── errstr.c │ │ ├── gendh.c │ │ ├── gendsa.c │ │ ├── genpkey.c │ │ ├── genrsa.c │ │ ├── install.com │ │ ├── makeapps.com │ │ ├── md4.c │ │ ├── nseq.c │ │ ├── ocsp.c │ │ ├── oid.cnf │ │ ├── openssl-vms.cnf │ │ ├── openssl.c │ │ ├── openssl.cnf │ │ ├── passwd.c │ │ ├── pca-cert.srl │ │ ├── pca-key.pem │ │ ├── pca-req.pem │ │ ├── pkcs12.c │ │ ├── pkcs7.c │ │ ├── pkcs8.c │ │ ├── pkey.c │ │ ├── pkeyparam.c │ │ ├── pkeyutl.c │ │ ├── prime.c │ │ ├── privkey.pem │ │ ├── progs.h │ │ ├── progs.pl │ │ ├── rand.c │ │ ├── req.c │ │ ├── req.pem │ │ ├── rsa.c │ │ ├── rsa8192.pem │ │ ├── rsautl.c │ │ ├── s1024key.pem │ │ ├── s1024req.pem │ │ ├── s512-key.pem │ │ ├── s512-req.pem │ │ ├── s_apps.h │ │ ├── s_cb.c │ │ ├── s_client.c │ │ ├── s_server.c │ │ ├── s_socket.c │ │ ├── s_time.c │ │ ├── server.pem │ │ ├── server.srl │ │ ├── server2.pem │ │ ├── sess_id.c │ │ ├── smime.c │ │ ├── speed.c │ │ ├── spkac.c │ │ ├── testCA.pem │ │ ├── testdsa.h │ │ ├── testrsa.h │ │ ├── timeouts.h │ │ ├── verify.c │ │ ├── version.c │ │ ├── winrand.c │ │ └── x509.c │ ├── crypto │ │ ├── LPdir_nyi.c │ │ ├── LPdir_unix.c │ │ ├── LPdir_vms.c │ │ ├── LPdir_win.c │ │ ├── LPdir_win32.c │ │ ├── LPdir_wince.c │ │ ├── aes │ │ │ ├── README │ │ │ ├── aes.h │ │ │ ├── aes_cbc.c │ │ │ ├── aes_cfb.c │ │ │ ├── aes_core.c │ │ │ ├── aes_ctr.c │ │ │ ├── aes_ecb.c │ │ │ ├── aes_ige.c │ │ │ ├── aes_locl.h │ │ │ ├── aes_misc.c │ │ │ ├── aes_ofb.c │ │ │ ├── aes_wrap.c │ │ │ ├── aes_x86core.c │ │ │ └── asm │ │ │ │ ├── aes-586.pl │ │ │ │ ├── aes-armv4.pl │ │ │ │ ├── aes-armv4.s │ │ │ │ ├── aes-ia64.S │ │ │ │ ├── aes-ppc.pl │ │ │ │ ├── aes-s390x.pl │ │ │ │ ├── aes-sparcv9.pl │ │ │ │ └── aes-x86_64.pl │ │ ├── asn1 │ │ │ ├── a_bitstr.c │ │ │ ├── a_bool.c │ │ │ ├── a_bytes.c │ │ │ ├── a_d2i_fp.c │ │ │ ├── a_digest.c │ │ │ ├── a_dup.c │ │ │ ├── a_enum.c │ │ │ ├── a_gentm.c │ │ │ ├── a_i2d_fp.c │ │ │ ├── a_int.c │ │ │ ├── a_mbstr.c │ │ │ ├── a_object.c │ │ │ ├── a_octet.c │ │ │ ├── a_print.c │ │ │ ├── a_set.c │ │ │ ├── a_sign.c │ │ │ ├── a_strex.c │ │ │ ├── a_strnid.c │ │ │ ├── a_time.c │ │ │ ├── a_type.c │ │ │ ├── a_utctm.c │ │ │ ├── a_utf8.c │ │ │ ├── a_verify.c │ │ │ ├── ameth_lib.c │ │ │ ├── asn1.h │ │ │ ├── asn1_err.c │ │ │ ├── asn1_gen.c │ │ │ ├── asn1_lib.c │ │ │ ├── asn1_locl.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1_par.c │ │ │ ├── asn1t.h │ │ │ ├── asn_mime.c │ │ │ ├── asn_moid.c │ │ │ ├── asn_pack.c │ │ │ ├── bio_asn1.c │ │ │ ├── bio_ndef.c │ │ │ ├── charmap.h │ │ │ ├── charmap.pl │ │ │ ├── d2i_pr.c │ │ │ ├── d2i_pu.c │ │ │ ├── evp_asn1.c │ │ │ ├── f_enum.c │ │ │ ├── f_int.c │ │ │ ├── f_string.c │ │ │ ├── i2d_pr.c │ │ │ ├── i2d_pu.c │ │ │ ├── n_pkey.c │ │ │ ├── nsseq.c │ │ │ ├── p5_pbe.c │ │ │ ├── p5_pbev2.c │ │ │ ├── p8_pkey.c │ │ │ ├── t_bitst.c │ │ │ ├── t_crl.c │ │ │ ├── t_pkey.c │ │ │ ├── t_req.c │ │ │ ├── t_spki.c │ │ │ ├── t_x509.c │ │ │ ├── t_x509a.c │ │ │ ├── tasn_dec.c │ │ │ ├── tasn_enc.c │ │ │ ├── tasn_fre.c │ │ │ ├── tasn_new.c │ │ │ ├── tasn_prn.c │ │ │ ├── tasn_typ.c │ │ │ ├── tasn_utl.c │ │ │ ├── x_algor.c │ │ │ ├── x_attrib.c │ │ │ ├── x_bignum.c │ │ │ ├── x_crl.c │ │ │ ├── x_exten.c │ │ │ ├── x_info.c │ │ │ ├── x_long.c │ │ │ ├── x_name.c │ │ │ ├── x_nx509.c │ │ │ ├── x_pkey.c │ │ │ ├── x_pubkey.c │ │ │ ├── x_req.c │ │ │ ├── x_sig.c │ │ │ ├── x_spki.c │ │ │ ├── x_val.c │ │ │ ├── x_x509.c │ │ │ └── x_x509a.c │ │ ├── bf │ │ │ ├── COPYRIGHT │ │ │ ├── asm │ │ │ │ ├── bf-586.pl │ │ │ │ └── bf-686.pl │ │ │ ├── bf_cfb64.c │ │ │ ├── bf_ecb.c │ │ │ ├── bf_enc.c │ │ │ ├── bf_locl.h │ │ │ ├── bf_ofb64.c │ │ │ ├── bf_pi.h │ │ │ ├── bf_skey.c │ │ │ └── blowfish.h │ │ ├── bio │ │ │ ├── b_dump.c │ │ │ ├── b_print.c │ │ │ ├── b_sock.c │ │ │ ├── bf_buff.c │ │ │ ├── bf_lbuf.c │ │ │ ├── bf_nbio.c │ │ │ ├── bf_null.c │ │ │ ├── bio.h │ │ │ ├── bio_cb.c │ │ │ ├── bio_err.c │ │ │ ├── bio_lcl.h │ │ │ ├── bio_lib.c │ │ │ ├── bss_acpt.c │ │ │ ├── bss_bio.c │ │ │ ├── bss_conn.c │ │ │ ├── bss_dgram.c │ │ │ ├── bss_fd.c │ │ │ ├── bss_file.c │ │ │ ├── bss_log.c │ │ │ ├── bss_mem.c │ │ │ ├── bss_null.c │ │ │ ├── bss_rtcp.c │ │ │ └── bss_sock.c │ │ ├── bn │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── alpha-mont.pl │ │ │ │ ├── armv4-mont.S │ │ │ │ ├── armv4-mont.pl │ │ │ │ ├── armv4-mont.s │ │ │ │ ├── bn-586.pl │ │ │ │ ├── co-586.pl │ │ │ │ ├── ia64.S │ │ │ │ ├── mips3-mont.pl │ │ │ │ ├── mips3.s │ │ │ │ ├── pa-risc2.s │ │ │ │ ├── pa-risc2W.s │ │ │ │ ├── ppc-mont.pl │ │ │ │ ├── ppc.pl │ │ │ │ ├── ppc64-mont.pl │ │ │ │ ├── s390x-mont.pl │ │ │ │ ├── s390x.S │ │ │ │ ├── sparcv8.S │ │ │ │ ├── sparcv8plus.S │ │ │ │ ├── sparcv9-mont.pl │ │ │ │ ├── sparcv9a-mont.pl │ │ │ │ ├── via-mont.pl │ │ │ │ ├── vms.mar │ │ │ │ ├── x86-mont.pl │ │ │ │ ├── x86.pl │ │ │ │ ├── x86 │ │ │ │ │ ├── add.pl │ │ │ │ │ ├── comba.pl │ │ │ │ │ ├── div.pl │ │ │ │ │ ├── f │ │ │ │ │ ├── mul.pl │ │ │ │ │ ├── mul_add.pl │ │ │ │ │ ├── sqr.pl │ │ │ │ │ └── sub.pl │ │ │ │ ├── x86_64-gcc.c │ │ │ │ └── x86_64-mont.pl │ │ │ ├── bn.h │ │ │ ├── bn.mul │ │ │ ├── bn_add.c │ │ │ ├── bn_asm.c │ │ │ ├── bn_blind.c │ │ │ ├── bn_const.c │ │ │ ├── bn_ctx.c │ │ │ ├── bn_depr.c │ │ │ ├── bn_div.c │ │ │ ├── bn_err.c │ │ │ ├── bn_exp.c │ │ │ ├── bn_exp2.c │ │ │ ├── bn_gcd.c │ │ │ ├── bn_gf2m.c │ │ │ ├── bn_kron.c │ │ │ ├── bn_lcl.h │ │ │ ├── bn_lib.c │ │ │ ├── bn_mod.c │ │ │ ├── bn_mont.c │ │ │ ├── bn_mpi.c │ │ │ ├── bn_mul.c │ │ │ ├── bn_nist.c │ │ │ ├── bn_prime.c │ │ │ ├── bn_prime.h │ │ │ ├── bn_prime.pl │ │ │ ├── bn_print.c │ │ │ ├── bn_rand.c │ │ │ ├── bn_recp.c │ │ │ ├── bn_shift.c │ │ │ ├── bn_sqr.c │ │ │ ├── bn_sqrt.c │ │ │ ├── bn_word.c │ │ │ ├── bnspeed.c │ │ │ ├── bntest.c │ │ │ ├── divtest.c │ │ │ ├── exp.c │ │ │ ├── expspeed.c │ │ │ ├── exptest.c │ │ │ ├── todo │ │ │ └── vms-helper.c │ │ ├── buffer │ │ │ ├── buf_err.c │ │ │ ├── buffer.c │ │ │ └── buffer.h │ │ ├── comp │ │ │ ├── c_rle.c │ │ │ ├── c_zlib.c │ │ │ ├── comp.h │ │ │ ├── comp_err.c │ │ │ └── comp_lib.c │ │ ├── conf │ │ │ ├── README │ │ │ ├── cnf_save.c │ │ │ ├── conf.h │ │ │ ├── conf_api.c │ │ │ ├── conf_api.h │ │ │ ├── conf_def.c │ │ │ ├── conf_def.h │ │ │ ├── conf_err.c │ │ │ ├── conf_lib.c │ │ │ ├── conf_mall.c │ │ │ ├── conf_mod.c │ │ │ ├── conf_sap.c │ │ │ ├── keysets.pl │ │ │ ├── ssleay.cnf │ │ │ └── test.c │ │ ├── cpt_err.c │ │ ├── cryptlib.c │ │ ├── cryptlib.h │ │ ├── crypto-lib.com │ │ ├── crypto.h │ │ ├── cversion.c │ │ ├── des │ │ │ ├── COPYRIGHT │ │ │ ├── DES.pm │ │ │ ├── DES.xs │ │ │ ├── FILES0 │ │ │ ├── INSTALL │ │ │ ├── Imakefile │ │ │ ├── KERBEROS │ │ │ ├── README │ │ │ ├── VERSION │ │ │ ├── asm │ │ │ │ ├── crypt586.pl │ │ │ │ ├── des-586.pl │ │ │ │ ├── des_enc.m4 │ │ │ │ ├── desboth.pl │ │ │ │ └── readme │ │ │ ├── cbc3_enc.c │ │ │ ├── cbc_cksm.c │ │ │ ├── cbc_enc.c │ │ │ ├── cfb64ede.c │ │ │ ├── cfb64enc.c │ │ │ ├── cfb_enc.c │ │ │ ├── des-lib.com │ │ │ ├── des.c │ │ │ ├── des.h │ │ │ ├── des.pod │ │ │ ├── des3s.cpp │ │ │ ├── des_enc.c │ │ │ ├── des_locl.h │ │ │ ├── des_old.c │ │ │ ├── des_old.h │ │ │ ├── des_old2.c │ │ │ ├── des_opts.c │ │ │ ├── des_ver.h │ │ │ ├── dess.cpp │ │ │ ├── destest.c │ │ │ ├── ecb3_enc.c │ │ │ ├── ecb_enc.c │ │ │ ├── ede_cbcm_enc.c │ │ │ ├── enc_read.c │ │ │ ├── enc_writ.c │ │ │ ├── fcrypt.c │ │ │ ├── fcrypt_b.c │ │ │ ├── makefile.bc │ │ │ ├── ncbc_enc.c │ │ │ ├── ofb64ede.c │ │ │ ├── ofb64enc.c │ │ │ ├── ofb_enc.c │ │ │ ├── options.txt │ │ │ ├── pcbc_enc.c │ │ │ ├── qud_cksm.c │ │ │ ├── rand_key.c │ │ │ ├── read2pwd.c │ │ │ ├── read_pwd.c │ │ │ ├── rpc_des.h │ │ │ ├── rpc_enc.c │ │ │ ├── rpw.c │ │ │ ├── set_key.c │ │ │ ├── speed.c │ │ │ ├── spr.h │ │ │ ├── str2key.c │ │ │ ├── t │ │ │ │ └── test │ │ │ ├── times │ │ │ │ ├── 486-50.sol │ │ │ │ ├── 586-100.lnx │ │ │ │ ├── 686-200.fre │ │ │ │ ├── alpha.cc │ │ │ │ ├── hpux.cc │ │ │ │ ├── sparc.gcc │ │ │ │ └── usparc.cc │ │ │ ├── typemap │ │ │ └── xcbc_enc.c │ │ ├── dh │ │ │ ├── dh.h │ │ │ ├── dh1024.pem │ │ │ ├── dh192.pem │ │ │ ├── dh2048.pem │ │ │ ├── dh4096.pem │ │ │ ├── dh512.pem │ │ │ ├── dh_ameth.c │ │ │ ├── dh_asn1.c │ │ │ ├── dh_check.c │ │ │ ├── dh_depr.c │ │ │ ├── dh_err.c │ │ │ ├── dh_gen.c │ │ │ ├── dh_key.c │ │ │ ├── dh_lib.c │ │ │ ├── dh_pmeth.c │ │ │ ├── dhtest.c │ │ │ ├── example │ │ │ ├── generate │ │ │ ├── p1024.c │ │ │ ├── p192.c │ │ │ └── p512.c │ │ ├── dsa │ │ │ ├── README │ │ │ ├── dsa.h │ │ │ ├── dsa_ameth.c │ │ │ ├── dsa_asn1.c │ │ │ ├── dsa_depr.c │ │ │ ├── dsa_err.c │ │ │ ├── dsa_gen.c │ │ │ ├── dsa_key.c │ │ │ ├── dsa_lib.c │ │ │ ├── dsa_locl.h │ │ │ ├── dsa_ossl.c │ │ │ ├── dsa_pmeth.c │ │ │ ├── dsa_prn.c │ │ │ ├── dsa_sign.c │ │ │ ├── dsa_vrf.c │ │ │ ├── dsagen.c │ │ │ ├── dsatest.c │ │ │ └── fips186a.txt │ │ ├── dso │ │ │ ├── README │ │ │ ├── dso.h │ │ │ ├── dso_dl.c │ │ │ ├── dso_dlfcn.c │ │ │ ├── dso_err.c │ │ │ ├── dso_lib.c │ │ │ ├── dso_null.c │ │ │ ├── dso_openssl.c │ │ │ ├── dso_vms.c │ │ │ └── dso_win32.c │ │ ├── ebcdic.c │ │ ├── ebcdic.h │ │ ├── ec │ │ │ ├── ec.h │ │ │ ├── ec2_mult.c │ │ │ ├── ec2_smpl.c │ │ │ ├── ec_ameth.c │ │ │ ├── ec_asn1.c │ │ │ ├── ec_check.c │ │ │ ├── ec_curve.c │ │ │ ├── ec_cvt.c │ │ │ ├── ec_err.c │ │ │ ├── ec_key.c │ │ │ ├── ec_lcl.h │ │ │ ├── ec_lib.c │ │ │ ├── ec_mult.c │ │ │ ├── ec_pmeth.c │ │ │ ├── ec_print.c │ │ │ ├── eck_prn.c │ │ │ ├── ecp_mont.c │ │ │ ├── ecp_nist.c │ │ │ ├── ecp_smpl.c │ │ │ └── ectest.c │ │ ├── ecdh │ │ │ ├── ecdh.h │ │ │ ├── ecdhtest.c │ │ │ ├── ech_err.c │ │ │ ├── ech_key.c │ │ │ ├── ech_lib.c │ │ │ ├── ech_locl.h │ │ │ └── ech_ossl.c │ │ ├── ecdsa │ │ │ ├── ecdsa.h │ │ │ ├── ecdsatest.c │ │ │ ├── ecs_asn1.c │ │ │ ├── ecs_err.c │ │ │ ├── ecs_lib.c │ │ │ ├── ecs_locl.h │ │ │ ├── ecs_ossl.c │ │ │ ├── ecs_sign.c │ │ │ └── ecs_vrf.c │ │ ├── engine │ │ │ ├── README │ │ │ ├── eng_all.c │ │ │ ├── eng_cnf.c │ │ │ ├── eng_cryptodev.c │ │ │ ├── eng_ctrl.c │ │ │ ├── eng_dyn.c │ │ │ ├── eng_err.c │ │ │ ├── eng_fat.c │ │ │ ├── eng_init.c │ │ │ ├── eng_int.h │ │ │ ├── eng_lib.c │ │ │ ├── eng_list.c │ │ │ ├── eng_openssl.c │ │ │ ├── eng_pkey.c │ │ │ ├── eng_table.c │ │ │ ├── engine.h │ │ │ ├── enginetest.c │ │ │ ├── tb_cipher.c │ │ │ ├── tb_dh.c │ │ │ ├── tb_digest.c │ │ │ ├── tb_dsa.c │ │ │ ├── tb_ecdh.c │ │ │ ├── tb_ecdsa.c │ │ │ ├── tb_rand.c │ │ │ ├── tb_rsa.c │ │ │ └── tb_store.c │ │ ├── err │ │ │ ├── err.c │ │ │ ├── err.h │ │ │ ├── err_all.c │ │ │ ├── err_prn.c │ │ │ └── openssl.ec │ │ ├── evp │ │ │ ├── bio_b64.c │ │ │ ├── bio_enc.c │ │ │ ├── bio_md.c │ │ │ ├── bio_ok.c │ │ │ ├── c_all.c │ │ │ ├── c_allc.c │ │ │ ├── c_alld.c │ │ │ ├── digest.c │ │ │ ├── e_aes.c │ │ │ ├── e_bf.c │ │ │ ├── e_camellia.c │ │ │ ├── e_cast.c │ │ │ ├── e_des.c │ │ │ ├── e_des3.c │ │ │ ├── e_dsa.c │ │ │ ├── e_idea.c │ │ │ ├── e_null.c │ │ │ ├── e_old.c │ │ │ ├── e_rc2.c │ │ │ ├── e_rc4.c │ │ │ ├── e_rc5.c │ │ │ ├── e_seed.c │ │ │ ├── e_xcbc_d.c │ │ │ ├── encode.c │ │ │ ├── evp.h │ │ │ ├── evp_acnf.c │ │ │ ├── evp_enc.c │ │ │ ├── evp_err.c │ │ │ ├── evp_key.c │ │ │ ├── evp_lib.c │ │ │ ├── evp_locl.h │ │ │ ├── evp_pbe.c │ │ │ ├── evp_pkey.c │ │ │ ├── evp_test.c │ │ │ ├── evptests.txt │ │ │ ├── m_dss.c │ │ │ ├── m_dss1.c │ │ │ ├── m_ecdsa.c │ │ │ ├── m_md4.c │ │ │ ├── m_md5.c │ │ │ ├── m_mdc2.c │ │ │ ├── m_null.c │ │ │ ├── m_ripemd.c │ │ │ ├── m_sha1.c │ │ │ ├── m_sigver.c │ │ │ ├── m_wp.c │ │ │ ├── names.c │ │ │ ├── openbsd_hw.c │ │ │ ├── p5_crpt.c │ │ │ ├── p5_crpt2.c │ │ │ ├── p_dec.c │ │ │ ├── p_enc.c │ │ │ ├── p_lib.c │ │ │ ├── p_open.c │ │ │ ├── p_seal.c │ │ │ ├── p_sign.c │ │ │ ├── p_verify.c │ │ │ ├── pmeth_fn.c │ │ │ ├── pmeth_gn.c │ │ │ └── pmeth_lib.c │ │ ├── ex_data.c │ │ ├── hmac │ │ │ ├── hm_ameth.c │ │ │ ├── hm_pmeth.c │ │ │ ├── hmac.c │ │ │ ├── hmac.h │ │ │ └── hmactest.c │ │ ├── ia64cpuid.S │ │ ├── install.com │ │ ├── jpake │ │ │ ├── jpake.c │ │ │ ├── jpake.h │ │ │ ├── jpake_err.c │ │ │ └── jpaketest.c │ │ ├── krb5 │ │ │ ├── krb5_asn.c │ │ │ └── krb5_asn.h │ │ ├── lhash │ │ │ ├── lh_stats.c │ │ │ ├── lh_test.c │ │ │ ├── lhash.c │ │ │ ├── lhash.h │ │ │ └── num.pl │ │ ├── md32_common.h │ │ ├── md4 │ │ │ ├── md4.c │ │ │ ├── md4.h │ │ │ ├── md4_dgst.c │ │ │ ├── md4_locl.h │ │ │ ├── md4_one.c │ │ │ ├── md4s.cpp │ │ │ └── md4test.c │ │ ├── md5 │ │ │ ├── asm │ │ │ │ ├── md5-586.pl │ │ │ │ ├── md5-ia64.S │ │ │ │ └── md5-x86_64.pl │ │ │ ├── md5.c │ │ │ ├── md5.h │ │ │ ├── md5_dgst.c │ │ │ ├── md5_locl.h │ │ │ ├── md5_one.c │ │ │ ├── md5s.cpp │ │ │ └── md5test.c │ │ ├── mdc2 │ │ │ ├── mdc2.h │ │ │ ├── mdc2_one.c │ │ │ ├── mdc2dgst.c │ │ │ └── mdc2test.c │ │ ├── mem.c │ │ ├── mem_clr.c │ │ ├── mem_dbg.c │ │ ├── modes │ │ │ ├── cbc128.c │ │ │ ├── cfb128.c │ │ │ ├── ctr128.c │ │ │ └── ofb128.c │ │ ├── o_dir.c │ │ ├── o_dir.h │ │ ├── o_dir_test.c │ │ ├── o_str.c │ │ ├── o_str.h │ │ ├── o_time.c │ │ ├── o_time.h │ │ ├── objects │ │ │ ├── o_names.c │ │ │ ├── obj_dat.c │ │ │ ├── obj_dat.h │ │ │ ├── obj_dat.pl │ │ │ ├── obj_err.c │ │ │ ├── obj_lib.c │ │ │ ├── obj_mac.h │ │ │ ├── obj_mac.num │ │ │ ├── obj_xref.c │ │ │ ├── obj_xref.h │ │ │ ├── obj_xref.txt │ │ │ ├── objects.README │ │ │ ├── objects.h │ │ │ ├── objects.pl │ │ │ ├── objects.txt │ │ │ └── objxref.pl │ │ ├── ocsp │ │ │ ├── ocsp.h │ │ │ ├── ocsp_asn.c │ │ │ ├── ocsp_cl.c │ │ │ ├── ocsp_err.c │ │ │ ├── ocsp_ext.c │ │ │ ├── ocsp_ht.c │ │ │ ├── ocsp_lib.c │ │ │ ├── ocsp_prn.c │ │ │ ├── ocsp_srv.c │ │ │ └── ocsp_vfy.c │ │ ├── opensslconf.h │ │ ├── opensslconf.h.in │ │ ├── opensslv.h │ │ ├── ossl_typ.h │ │ ├── pem │ │ │ ├── message │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pem_all.c │ │ │ ├── pem_err.c │ │ │ ├── pem_info.c │ │ │ ├── pem_lib.c │ │ │ ├── pem_oth.c │ │ │ ├── pem_pk8.c │ │ │ ├── pem_pkey.c │ │ │ ├── pem_seal.c │ │ │ ├── pem_sign.c │ │ │ ├── pem_x509.c │ │ │ ├── pem_xaux.c │ │ │ ├── pkcs7.lis │ │ │ └── pvkfmt.c │ │ ├── perlasm │ │ │ ├── cbc.pl │ │ │ ├── ppc-xlate.pl │ │ │ ├── readme │ │ │ ├── x86_64-xlate.pl │ │ │ ├── x86asm.pl │ │ │ ├── x86gas.pl │ │ │ ├── x86masm.pl │ │ │ └── x86nasm.pl │ │ ├── pkcs12 │ │ │ ├── p12_add.c │ │ │ ├── p12_asn.c │ │ │ ├── p12_attr.c │ │ │ ├── p12_crpt.c │ │ │ ├── p12_crt.c │ │ │ ├── p12_decr.c │ │ │ ├── p12_init.c │ │ │ ├── p12_key.c │ │ │ ├── p12_kiss.c │ │ │ ├── p12_mutl.c │ │ │ ├── p12_npas.c │ │ │ ├── p12_p8d.c │ │ │ ├── p12_p8e.c │ │ │ ├── p12_utl.c │ │ │ ├── pk12err.c │ │ │ └── pkcs12.h │ │ ├── pkcs7 │ │ │ ├── bio_ber.c │ │ │ ├── dec.c │ │ │ ├── des.pem │ │ │ ├── doc │ │ │ ├── enc.c │ │ │ ├── es1.pem │ │ │ ├── example.c │ │ │ ├── example.h │ │ │ ├── info.pem │ │ │ ├── infokey.pem │ │ │ ├── p7 │ │ │ │ ├── a1 │ │ │ │ ├── a2 │ │ │ │ ├── cert.p7c │ │ │ │ ├── smime.p7m │ │ │ │ └── smime.p7s │ │ │ ├── pk7_asn1.c │ │ │ ├── pk7_attr.c │ │ │ ├── pk7_dgst.c │ │ │ ├── pk7_doit.c │ │ │ ├── pk7_enc.c │ │ │ ├── pk7_lib.c │ │ │ ├── pk7_mime.c │ │ │ ├── pk7_smime.c │ │ │ ├── pkcs7.h │ │ │ ├── pkcs7err.c │ │ │ ├── server.pem │ │ │ ├── sign.c │ │ │ ├── t │ │ │ │ ├── 3des.pem │ │ │ │ ├── 3dess.pem │ │ │ │ ├── c.pem │ │ │ │ ├── ff │ │ │ │ ├── msie-e │ │ │ │ ├── msie-e.pem │ │ │ │ ├── msie-enc-01 │ │ │ │ ├── msie-enc-01.pem │ │ │ │ ├── msie-enc-02 │ │ │ │ ├── msie-enc-02.pem │ │ │ │ ├── msie-s-a-e │ │ │ │ ├── msie-s-a-e.pem │ │ │ │ ├── nav-smime │ │ │ │ ├── s.pem │ │ │ │ └── server.pem │ │ │ └── verify.c │ │ ├── ppccpuid.pl │ │ ├── pqueue │ │ │ ├── pq_test.c │ │ │ ├── pqueue.c │ │ │ └── pqueue.h │ │ ├── rand │ │ │ ├── md_rand.c │ │ │ ├── rand.h │ │ │ ├── rand_egd.c │ │ │ ├── rand_err.c │ │ │ ├── rand_lcl.h │ │ │ ├── rand_lib.c │ │ │ ├── rand_nw.c │ │ │ ├── rand_os2.c │ │ │ ├── rand_unix.c │ │ │ ├── rand_vms.c │ │ │ ├── rand_win.c │ │ │ ├── randfile.c │ │ │ └── randtest.c │ │ ├── rc2 │ │ │ ├── rc2.h │ │ │ ├── rc2_cbc.c │ │ │ ├── rc2_ecb.c │ │ │ ├── rc2_locl.h │ │ │ ├── rc2_skey.c │ │ │ ├── rc2cfb64.c │ │ │ ├── rc2ofb64.c │ │ │ ├── rc2speed.c │ │ │ ├── rc2test.c │ │ │ ├── rrc2.doc │ │ │ ├── tab.c │ │ │ └── version │ │ ├── rc4 │ │ │ ├── asm │ │ │ │ ├── rc4-586.pl │ │ │ │ ├── rc4-ia64.pl │ │ │ │ ├── rc4-s390x.pl │ │ │ │ └── rc4-x86_64.pl │ │ │ ├── rc4.c │ │ │ ├── rc4.h │ │ │ ├── rc4_enc.c │ │ │ ├── rc4_locl.h │ │ │ ├── rc4_skey.c │ │ │ ├── rc4s.cpp │ │ │ ├── rc4speed.c │ │ │ ├── rc4test.c │ │ │ └── rrc4.doc │ │ ├── ripemd │ │ │ ├── README │ │ │ ├── asm │ │ │ │ ├── rips.cpp │ │ │ │ └── rmd-586.pl │ │ │ ├── ripemd.h │ │ │ ├── rmd160.c │ │ │ ├── rmd_dgst.c │ │ │ ├── rmd_locl.h │ │ │ ├── rmd_one.c │ │ │ ├── rmdconst.h │ │ │ └── rmdtest.c │ │ ├── rsa │ │ │ ├── rsa.h │ │ │ ├── rsa_ameth.c │ │ │ ├── rsa_asn1.c │ │ │ ├── rsa_chk.c │ │ │ ├── rsa_depr.c │ │ │ ├── rsa_eay.c │ │ │ ├── rsa_err.c │ │ │ ├── rsa_gen.c │ │ │ ├── rsa_lib.c │ │ │ ├── rsa_locl.h │ │ │ ├── rsa_none.c │ │ │ ├── rsa_null.c │ │ │ ├── rsa_oaep.c │ │ │ ├── rsa_pk1.c │ │ │ ├── rsa_pmeth.c │ │ │ ├── rsa_prn.c │ │ │ ├── rsa_pss.c │ │ │ ├── rsa_saos.c │ │ │ ├── rsa_sign.c │ │ │ ├── rsa_ssl.c │ │ │ ├── rsa_test.c │ │ │ └── rsa_x931.c │ │ ├── rules.mk │ │ ├── s390xcap.c │ │ ├── s390xcpuid.S │ │ ├── sha │ │ │ ├── asm │ │ │ │ ├── README │ │ │ │ ├── sha1-586.pl │ │ │ │ ├── sha1-armv4-large.S │ │ │ │ ├── sha1-armv4-large.pl │ │ │ │ ├── sha1-ia64.pl │ │ │ │ ├── sha1-ppc.pl │ │ │ │ ├── sha1-s390x.pl │ │ │ │ ├── sha1-sparcv9.pl │ │ │ │ ├── sha1-sparcv9a.pl │ │ │ │ ├── sha1-thumb.pl │ │ │ │ ├── sha1-x86_64.pl │ │ │ │ ├── sha256-586.pl │ │ │ │ ├── sha256-armv4.S │ │ │ │ ├── sha256-armv4.pl │ │ │ │ ├── sha512-586.pl │ │ │ │ ├── sha512-armv4.pl │ │ │ │ ├── sha512-armv4.s │ │ │ │ ├── sha512-ia64.pl │ │ │ │ ├── sha512-ppc.pl │ │ │ │ ├── sha512-s390x.pl │ │ │ │ ├── sha512-sparcv9.pl │ │ │ │ └── sha512-x86_64.pl │ │ │ ├── sha.c │ │ │ ├── sha.h │ │ │ ├── sha1.c │ │ │ ├── sha1_one.c │ │ │ ├── sha1dgst.c │ │ │ ├── sha1test.c │ │ │ ├── sha256.c │ │ │ ├── sha256t.c │ │ │ ├── sha512.c │ │ │ ├── sha512t.c │ │ │ ├── sha_dgst.c │ │ │ ├── sha_locl.h │ │ │ └── shatest.c │ │ ├── sparccpuid.S │ │ ├── sparcv9cap.c │ │ ├── stack │ │ │ ├── safestack.h │ │ │ ├── stack.c │ │ │ └── stack.h │ │ ├── store │ │ │ ├── README │ │ │ ├── store.h │ │ │ ├── str_err.c │ │ │ ├── str_lib.c │ │ │ ├── str_locl.h │ │ │ ├── str_mem.c │ │ │ └── str_meth.c │ │ ├── symhacks.h │ │ ├── threads │ │ │ ├── README │ │ │ ├── mttest.c │ │ │ ├── netware.bat │ │ │ ├── profile.sh │ │ │ ├── ptest.bat │ │ │ ├── pthread.sh │ │ │ ├── pthread2.sh │ │ │ ├── pthreads-vms.com │ │ │ ├── purify.sh │ │ │ ├── solaris.sh │ │ │ ├── th-lock.c │ │ │ └── win32.bat │ │ ├── ts │ │ │ └── ts_err.c │ │ ├── txt_db │ │ │ ├── txt_db.c │ │ │ └── txt_db.h │ │ ├── ui │ │ │ ├── ui.h │ │ │ ├── ui_compat.c │ │ │ ├── ui_compat.h │ │ │ ├── ui_err.c │ │ │ ├── ui_lib.c │ │ │ ├── ui_locl.h │ │ │ ├── ui_openssl.c │ │ │ └── ui_util.c │ │ ├── uid.c │ │ ├── x509 │ │ │ ├── by_dir.c │ │ │ ├── by_file.c │ │ │ ├── x509.h │ │ │ ├── x509_att.c │ │ │ ├── x509_cmp.c │ │ │ ├── x509_d2.c │ │ │ ├── x509_def.c │ │ │ ├── x509_err.c │ │ │ ├── x509_ext.c │ │ │ ├── x509_lu.c │ │ │ ├── x509_obj.c │ │ │ ├── x509_r2x.c │ │ │ ├── x509_req.c │ │ │ ├── x509_set.c │ │ │ ├── x509_trs.c │ │ │ ├── x509_txt.c │ │ │ ├── x509_v3.c │ │ │ ├── x509_vfy.c │ │ │ ├── x509_vfy.h │ │ │ ├── x509_vpm.c │ │ │ ├── x509cset.c │ │ │ ├── x509name.c │ │ │ ├── x509rset.c │ │ │ ├── x509spki.c │ │ │ ├── x509type.c │ │ │ └── x_all.c │ │ ├── x509v3 │ │ │ ├── ext_dat.h │ │ │ ├── pcy_cache.c │ │ │ ├── pcy_data.c │ │ │ ├── pcy_int.h │ │ │ ├── pcy_lib.c │ │ │ ├── pcy_map.c │ │ │ ├── pcy_node.c │ │ │ ├── pcy_tree.c │ │ │ ├── tabtest.c │ │ │ ├── v3_addr.c │ │ │ ├── v3_akey.c │ │ │ ├── v3_akeya.c │ │ │ ├── v3_alt.c │ │ │ ├── v3_asid.c │ │ │ ├── v3_bcons.c │ │ │ ├── v3_bitst.c │ │ │ ├── v3_conf.c │ │ │ ├── v3_cpols.c │ │ │ ├── v3_crld.c │ │ │ ├── v3_enum.c │ │ │ ├── v3_extku.c │ │ │ ├── v3_genn.c │ │ │ ├── v3_ia5.c │ │ │ ├── v3_info.c │ │ │ ├── v3_int.c │ │ │ ├── v3_lib.c │ │ │ ├── v3_ncons.c │ │ │ ├── v3_ocsp.c │ │ │ ├── v3_pci.c │ │ │ ├── v3_pcia.c │ │ │ ├── v3_pcons.c │ │ │ ├── v3_pku.c │ │ │ ├── v3_pmaps.c │ │ │ ├── v3_prn.c │ │ │ ├── v3_purp.c │ │ │ ├── v3_skey.c │ │ │ ├── v3_sxnet.c │ │ │ ├── v3_utl.c │ │ │ ├── v3conf.c │ │ │ ├── v3err.c │ │ │ ├── v3prin.c │ │ │ └── x509v3.h │ │ ├── x86_64cpuid.pl │ │ └── x86cpuid.pl │ ├── e_os.h │ ├── e_os2.h │ ├── import_openssl.sh │ ├── include │ │ └── openssl │ │ │ ├── aes.h │ │ │ ├── asn1.h │ │ │ ├── asn1_mac.h │ │ │ ├── asn1t.h │ │ │ ├── bio.h │ │ │ ├── blowfish.h │ │ │ ├── bn.h │ │ │ ├── buffer.h │ │ │ ├── comp.h │ │ │ ├── conf.h │ │ │ ├── conf_api.h │ │ │ ├── crypto.h │ │ │ ├── des.h │ │ │ ├── des_old.h │ │ │ ├── dh.h │ │ │ ├── dsa.h │ │ │ ├── dso.h │ │ │ ├── dtls1.h │ │ │ ├── e_os2.h │ │ │ ├── ebcdic.h │ │ │ ├── ec.h │ │ │ ├── ecdh.h │ │ │ ├── ecdsa.h │ │ │ ├── engine.h │ │ │ ├── err.h │ │ │ ├── evp.h │ │ │ ├── hmac.h │ │ │ ├── krb5_asn.h │ │ │ ├── kssl.h │ │ │ ├── lhash.h │ │ │ ├── md4.h │ │ │ ├── md5.h │ │ │ ├── modes.h │ │ │ ├── obj_mac.h │ │ │ ├── objects.h │ │ │ ├── ocsp.h │ │ │ ├── opensslconf.h │ │ │ ├── opensslv.h │ │ │ ├── ossl_typ.h │ │ │ ├── pem.h │ │ │ ├── pem2.h │ │ │ ├── pkcs12.h │ │ │ ├── pkcs7.h │ │ │ ├── pqueue.h │ │ │ ├── rand.h │ │ │ ├── rc2.h │ │ │ ├── rc4.h │ │ │ ├── ripemd.h │ │ │ ├── rsa.h │ │ │ ├── safestack.h │ │ │ ├── sha.h │ │ │ ├── ssl.h │ │ │ ├── ssl2.h │ │ │ ├── ssl23.h │ │ │ ├── ssl3.h │ │ │ ├── stack.h │ │ │ ├── symhacks.h │ │ │ ├── tls1.h │ │ │ ├── ts.h │ │ │ ├── txt_db.h │ │ │ ├── ui.h │ │ │ ├── ui_compat.h │ │ │ ├── x509.h │ │ │ ├── x509_vfy.h │ │ │ └── x509v3.h │ ├── openssl.config │ ├── openssl.version │ ├── patches │ │ ├── README │ │ ├── apps_Android.mk │ │ ├── crypto_Android.mk │ │ ├── handshake_cutthrough.patch │ │ ├── jsse.patch │ │ ├── progs.patch │ │ ├── secadv_20101116-2.patch │ │ ├── small_records.patch │ │ ├── ssl_Android.mk │ │ └── testssl.sh │ ├── rules.mk │ └── ssl │ │ ├── Makefile │ │ ├── bio_ssl.c │ │ ├── d1_both.c │ │ ├── d1_clnt.c │ │ ├── d1_enc.c │ │ ├── d1_lib.c │ │ ├── d1_meth.c │ │ ├── d1_pkt.c │ │ ├── d1_srvr.c │ │ ├── dtls1.h │ │ ├── install.com │ │ ├── kssl.c │ │ ├── kssl.h │ │ ├── kssl_lcl.h │ │ ├── rules.mk │ │ ├── s23_clnt.c │ │ ├── s23_lib.c │ │ ├── s23_meth.c │ │ ├── s23_pkt.c │ │ ├── s23_srvr.c │ │ ├── s2_clnt.c │ │ ├── s2_enc.c │ │ ├── s2_lib.c │ │ ├── s2_meth.c │ │ ├── s2_pkt.c │ │ ├── s2_srvr.c │ │ ├── s3_both.c │ │ ├── s3_clnt.c │ │ ├── s3_enc.c │ │ ├── s3_lib.c │ │ ├── s3_meth.c │ │ ├── s3_pkt.c │ │ ├── s3_srvr.c │ │ ├── ssl-lib.com │ │ ├── ssl.h │ │ ├── ssl2.h │ │ ├── ssl23.h │ │ ├── ssl3.h │ │ ├── ssl_algs.c │ │ ├── ssl_asn1.c │ │ ├── ssl_cert.c │ │ ├── ssl_ciph.c │ │ ├── ssl_err.c │ │ ├── ssl_err2.c │ │ ├── ssl_lib.c │ │ ├── ssl_locl.h │ │ ├── ssl_rsa.c │ │ ├── ssl_sess.c │ │ ├── ssl_stat.c │ │ ├── ssl_task.c │ │ ├── ssl_txt.c │ │ ├── ssltest.c │ │ ├── t1_clnt.c │ │ ├── t1_enc.c │ │ ├── t1_lib.c │ │ ├── t1_meth.c │ │ ├── t1_reneg.c │ │ ├── t1_srvr.c │ │ └── tls1.h ├── partition │ ├── partition.c │ └── rules.mk ├── ptable │ ├── ptable.c │ └── rules.mk ├── text │ ├── rules.mk │ └── text.c ├── tga │ ├── rules.mk │ └── tga.c └── zlib_inflate │ ├── adler32.c │ ├── crc32.c │ ├── crc32.h │ ├── decompress.c │ ├── decompress.h │ ├── inffast.c │ ├── inffast.h │ ├── inffixed.h │ ├── inflate.c │ ├── inflate.h │ ├── inftrees.c │ ├── inftrees.h │ ├── rules.mk │ ├── zconf.h │ ├── zlib.h │ ├── zutil.c │ └── zutil.h ├── make ├── build.mk ├── macros.mk └── module.mk ├── makefile ├── platform ├── apq8084 │ ├── acpuclock.c │ ├── apq8084-clock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── platform.c │ └── rules.mk ├── armemu │ ├── blkdev.c │ ├── debug.c │ ├── display.c │ ├── include │ │ └── platform │ │ │ ├── armemu.h │ │ │ └── armemu │ │ │ └── memmap.h │ ├── interrupts.c │ ├── net.c │ ├── platform.c │ ├── platform_p.h │ ├── rules.mk │ └── timer.c ├── at91sam7 │ ├── README │ ├── at91sam7s.pins │ ├── at91sam7x.pins │ ├── debug.c │ ├── emac_dev.c │ ├── include │ │ └── platform │ │ │ └── at91sam7.h │ ├── init_clock.S │ ├── init_clock_48mhz.S │ ├── interrupts.c │ ├── mkboard.py │ ├── mux.c │ ├── platform.c │ ├── platform_early.S │ ├── rules.mk │ └── timer.c ├── debug.c ├── fsm9010 │ ├── acpuclock.c │ ├── fsm9010-clock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── platform.c │ └── rules.mk ├── fsm9900 │ ├── acpuclock.c │ ├── fsm9900-clock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── platform.c │ └── rules.mk ├── init.c ├── integrator │ ├── debug.c │ ├── include │ │ └── platform │ │ │ └── integrator.h │ ├── interrupts.c │ ├── platform.c │ ├── platform_p.h │ ├── rules.mk │ └── timer.c ├── mdm9607 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── mdm9607-clock.c │ ├── platform.c │ └── rules.mk ├── mdm9640 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── mdm9640-clock.c │ ├── platform.c │ └── rules.mk ├── mdm9x15 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── platform.c │ └── rules.mk ├── mdm9x25 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── mdm9x25-clock.c │ ├── platform.c │ └── rules.mk ├── mdm9x35 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── mdm9x35-clock.c │ ├── platform.c │ └── rules.mk ├── msm7k │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── interrupts.c │ ├── panel.c │ ├── platform.c │ └── rules.mk ├── msm7x27a │ ├── acpuclock.c │ ├── arch_init.S │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── interrupts.c │ ├── panel.c │ ├── platform.c │ └── rules.mk ├── msm7x30 │ ├── acpuclock.c │ ├── arch_init.S │ ├── gpio.c │ ├── gpio_hw.h │ ├── include │ │ └── platform │ │ │ ├── adm.h │ │ │ ├── iomap.h │ │ │ ├── irqs.h │ │ │ ├── machtype.h │ │ │ └── remote_spinlock.h │ ├── interrupts.c │ ├── panel.c │ ├── panel.h │ ├── panel_sharp_wvga.c │ ├── platform.c │ ├── remote_spinlock.c │ └── rules.mk ├── msm8226 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8226-clock.c │ ├── platform.c │ └── rules.mk ├── msm8610 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8610-clock.c │ ├── platform.c │ └── rules.mk ├── msm8909 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8909-clock.c │ ├── platform.c │ └── rules.mk ├── msm8916 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8916-clock.c │ ├── platform.c │ └── rules.mk ├── msm8952 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8952-clock.c │ ├── platform.c │ └── rules.mk ├── msm8960 │ ├── acpuclock.c │ ├── clock.c │ ├── gpio.c │ ├── hdmi_core.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── platform.c │ └── rules.mk ├── msm8974 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8974-clock.c │ ├── platform.c │ └── rules.mk ├── msm8994 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msm8994-clock.c │ ├── platform.c │ └── rules.mk ├── msm8996 │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ ├── irqs.h │ │ │ └── partial_goods.h │ ├── msm8996-clock.c │ ├── platform.c │ └── rules.mk ├── msm8x60 │ ├── acpuclock.c │ ├── gpio.c │ ├── hdmi_core.c │ ├── include │ │ └── platform │ │ │ ├── adm.h │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ ├── irqs.h │ │ │ ├── machtype.h │ │ │ ├── pmic.h │ │ │ ├── pmic_batt_alarm.h │ │ │ ├── pmic_pwm.h │ │ │ └── scm-io.h │ ├── panel.c │ ├── panel_auo_wvga.c │ ├── platform.c │ ├── pmic.c │ ├── pmic_batt_alarm.c │ ├── pmic_pwm.c │ ├── rules.mk │ └── scm-io.c ├── msm_shared │ ├── adm.c │ ├── adm.h │ ├── bam.c │ ├── board.c │ ├── boot_device.c │ ├── boot_stats.c │ ├── boot_verifier.c │ ├── certificate.c │ ├── clock-local.c │ ├── clock.c │ ├── clock_alpha_pll.c │ ├── clock_lib2.c │ ├── clock_pll.c │ ├── crc32.c │ ├── crypto4_eng.c │ ├── crypto5_eng.c │ ├── crypto5_wrapper.c │ ├── crypto_eng.c │ ├── crypto_hash.c │ ├── debug.c │ ├── dev_tree.c │ ├── display.c │ ├── dload_util.c │ ├── dme.c │ ├── dmov.h │ ├── edp.c │ ├── edp_aux.c │ ├── edp_phy.c │ ├── edp_util.c │ ├── flash-ubi.c │ ├── glink │ │ ├── glink_api.c │ │ ├── glink_core_if.c │ │ ├── glink_core_intentless_xport.c │ │ ├── glink_core_internal.c │ │ ├── glink_os_utils_dal.c │ │ ├── glink_rpmcore_setup.c │ │ ├── glink_vector.c │ │ ├── xport_rpm.c │ │ └── xport_rpm_config.c │ ├── gpio.c │ ├── hdmi_pll_20nm.c │ ├── hdmi_pll_28nm.c │ ├── hsusb.c │ ├── hsusb.h │ ├── i2c_qup.c │ ├── image_verify.c │ ├── include │ │ ├── bam.h │ │ ├── baseband.h │ │ ├── blsp_qup.h │ │ ├── board.h │ │ ├── boot_device.h │ │ ├── boot_stats.h │ │ ├── boot_verifier.h │ │ ├── certificate.h │ │ ├── clock-local.h │ │ ├── clock.h │ │ ├── clock_alpha_pll.h │ │ ├── clock_lib2.h │ │ ├── clock_pll.h │ │ ├── crc32.h │ │ ├── crypto4_eng.h │ │ ├── crypto5_eng.h │ │ ├── crypto5_wrapper.h │ │ ├── crypto_eng.h │ │ ├── crypto_hash.h │ │ ├── dev_tree.h │ │ ├── dload_util.h │ │ ├── dme.h │ │ ├── edp.h │ │ ├── glink.h │ │ ├── glink_channel_migration.h │ │ ├── glink_core_if.h │ │ ├── glink_internal.h │ │ ├── glink_os_type.h │ │ ├── glink_os_utils.h │ │ ├── glink_rpm.h │ │ ├── glink_transport_if.h │ │ ├── glink_vector.h │ │ ├── gpio.h │ │ ├── gsbi.h │ │ ├── i2c_qup.h │ │ ├── image_verify.h │ │ ├── jtag.h │ │ ├── mddi.h │ │ ├── mdp3.h │ │ ├── mdp4.h │ │ ├── mdp5.h │ │ ├── mdss_hdmi.h │ │ ├── mipi_dsi.h │ │ ├── mipi_dsi_autopll_thulium.h │ │ ├── mipi_dsi_i2c.h │ │ ├── mmc.h │ │ ├── mmc_dml.h │ │ ├── mmc_sdhci.h │ │ ├── mmc_wrapper.h │ │ ├── mmu.h │ │ ├── msm_panel.h │ │ ├── nand.h │ │ ├── oem_keystore.h │ │ ├── partial_goods.h │ │ ├── partition_parser.h │ │ ├── qgic.h │ │ ├── qgic_common.h │ │ ├── qgic_v3.h │ │ ├── qmp_phy.h │ │ ├── qpic.h │ │ ├── qpic_nand.h │ │ ├── qpic_panel.h │ │ ├── qseecom_lk.h │ │ ├── qseecom_lk_api.h │ │ ├── qseecomi_lk.h │ │ ├── qtimer.h │ │ ├── qtimer_mmap_hw.h │ │ ├── qusb2_phy.h │ │ ├── regulator.h │ │ ├── rpm-glink.h │ │ ├── rpm-ipc.h │ │ ├── rpm-smd.h │ │ ├── rpmb.h │ │ ├── rpmb_listener.h │ │ ├── scm.h │ │ ├── sdhci.h │ │ ├── sdhci_msm.h │ │ ├── shutdown_detect.h │ │ ├── smd.h │ │ ├── smem_list.h │ │ ├── smem_type.h │ │ ├── splash.h │ │ ├── splash.h.README │ │ ├── spmi.h │ │ ├── spmi_v2.h │ │ ├── uart_dm.h │ │ ├── ucs.h │ │ ├── ufs.h │ │ ├── ufs_hci.h │ │ ├── ufs_hw.h │ │ ├── uic.h │ │ ├── upiu.h │ │ ├── utp.h │ │ ├── wdog.h │ │ ├── xport_rpm.h │ │ └── xport_rpm_config.h │ ├── interrupts.c │ ├── jtag.c │ ├── jtag_hook.S │ ├── lcdc.c │ ├── lvds.c │ ├── mddi.c │ ├── mddi_hw.h │ ├── mdp3.c │ ├── mdp4.c │ ├── mdp5.c │ ├── mdp_lcdc.c │ ├── mdss_hdmi.c │ ├── mipi_dsc.c │ ├── mipi_dsi.c │ ├── mipi_dsi_autopll.c │ ├── mipi_dsi_autopll_20nm.c │ ├── mipi_dsi_autopll_thulium.c │ ├── mipi_dsi_i2c.c │ ├── mipi_dsi_phy.c │ ├── mmc.c │ ├── mmc_sdhci.c │ ├── mmc_wrapper.c │ ├── nand.c │ ├── partial_goods.c │ ├── partition_parser.c │ ├── proc_comm.c │ ├── qgic.c │ ├── qgic_common.c │ ├── qgic_v3.c │ ├── qmp_usb30_phy.c │ ├── qpic.c │ ├── qpic_nand.c │ ├── qpic_panel.c │ ├── qseecom_lk.c │ ├── qtimer.c │ ├── qtimer_cp15.c │ ├── qtimer_mmap.c │ ├── qusb2_phy.c │ ├── reboot.c │ ├── reboot.h │ ├── rpm-glink.c │ ├── rpm-ipc.c │ ├── rpm-smd.c │ ├── rpmb │ │ ├── rpmb.c │ │ ├── rpmb_emmc.c │ │ ├── rpmb_listener.c │ │ ├── rpmb_ufs.c │ │ └── rules.mk │ ├── rules.mk │ ├── scm.c │ ├── sdhci.c │ ├── sdhci_msm.c │ ├── shutdown_detect.c │ ├── smd.c │ ├── smem.c │ ├── smem.h │ ├── smem_list.c │ ├── smem_ptable.c │ ├── spi.c │ ├── spmi.c │ ├── timer.c │ ├── uart.c │ ├── uart_dm.c │ ├── ucs.c │ ├── ufs.c │ ├── ufs_hci.c │ ├── uic.c │ ├── usb30_dwc.c │ ├── usb30_dwc.h │ ├── usb30_dwc_hw.c │ ├── usb30_dwc_hw.h │ ├── usb30_dwc_hwio.h │ ├── usb30_udc.c │ ├── usb30_udc.h │ ├── usb30_wrapper.c │ ├── usb30_wrapper.h │ ├── usb30_wrapper_hwio.h │ ├── utp.c │ └── wdog.c ├── msmtitanium │ ├── acpuclock.c │ ├── gpio.c │ ├── include │ │ └── platform │ │ │ ├── clock.h │ │ │ ├── gpio.h │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── msmtitanium-clock.c │ ├── platform.c │ └── rules.mk ├── omap3 │ ├── cpu_early_init.S │ ├── debug.c │ ├── i2c.c │ ├── include │ │ └── platform │ │ │ └── omap3.h │ ├── interrupts.c │ ├── platform.c │ ├── platform_p.h │ ├── rules.mk │ ├── timer.c │ ├── uart.c │ └── usbc.c ├── omap5912 │ ├── debug.c │ ├── include │ │ └── platform │ │ │ └── omap5912.h │ ├── interrupts.c │ ├── platform.c │ ├── platform_p.h │ ├── rules.mk │ └── timer.c ├── pc │ ├── console.c │ ├── debug.c │ ├── include │ │ └── platform │ │ │ ├── console.h │ │ │ ├── keyboard.h │ │ │ ├── multiboot.h │ │ │ ├── pc.h │ │ │ └── pc │ │ │ ├── iomap.h │ │ │ └── memmap.h │ ├── interrupts.c │ ├── keyboard.c │ ├── pci.c │ ├── platform.c │ ├── platform_p.h │ ├── rules.mk │ └── timer.c ├── qsd8650a │ ├── acpuclock.c │ ├── arch_init.S │ ├── gpio.c │ ├── gpio_hw.h │ ├── include │ │ └── platform │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── interrupts.c │ ├── platform.c │ └── rules.mk ├── qsd8k │ ├── acpuclock.c │ ├── arch_init.S │ ├── gpio.c │ ├── gpio_hw.h │ ├── include │ │ └── platform │ │ │ ├── iomap.h │ │ │ └── irqs.h │ ├── interrupts.c │ ├── panel.c │ ├── platform.c │ └── rules.mk └── rules.mk ├── project ├── aboot-surf7k.mk ├── aboot-surf8k.mk ├── apq8064.mk ├── apq8084.mk ├── armemu-test.mk ├── beagle-test.mk ├── fsm9010.mk ├── fsm9900.mk ├── mdm9607.mk ├── mdm9615.mk ├── mdm9615_nandwrite.mk ├── mdm9625.mk ├── mdm9635.mk ├── mdm9640.mk ├── msm7627_6x.mk ├── msm7627_6x_nandwrite.mk ├── msm7627_surf.mk ├── msm7627_surf_nandwrite.mk ├── msm7627a.mk ├── msm7627a_nandwrite.mk ├── msm7630_fusion.mk ├── msm7630_fusion_nandwrite.mk ├── msm7630_surf.mk ├── msm7630_surf_nandwrite.mk ├── msm8226.mk ├── msm8610.mk ├── msm8660_surf.mk ├── msm8909.mk ├── msm8916.mk ├── msm8952.mk ├── msm8960.mk ├── msm8974.mk ├── msm8994.mk ├── msm8996.mk ├── msmtitanium.mk ├── osk5912-test.mk ├── pc-x86-test.mk ├── qemu-arm-test.mk ├── qsd8250_ffa.mk ├── qsd8250_ffa_nandwrite.mk ├── qsd8250_surf.mk ├── qsd8250_surf_nandwrite.mk ├── qsd8650a_st1x.mk ├── qsd8650a_st1x_nandwrite.mk ├── sam7ex256-test.mk └── surf-test.mk ├── scripts ├── aboot_test.py ├── attach.cmm ├── buildall ├── config_a11.cmm ├── config_scorpion.cmm ├── do-armemu-test ├── do-beagle-test ├── do-osk5912-test ├── do-sam7ex256-test ├── lk.cmm └── tagit └── target ├── apq8084 ├── include │ └── target │ │ └── display.h ├── init.c ├── meminfo.c ├── oem_panel.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── armemu ├── armemu.conf └── rules.mk ├── beagle ├── include │ └── target │ │ └── debugconfig.h └── rules.mk ├── fsm9010 ├── init.c ├── meminfo.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── fsm9900 ├── init.c ├── meminfo.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── init.c ├── mdm9607 ├── init.c ├── keypad.c ├── meminfo.c ├── regulator.c ├── rules.mk └── tools │ └── makefile ├── mdm9615 ├── atags.c ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── mdm9625 ├── include │ └── target │ │ └── board.h ├── init.c ├── keypad.c ├── meminfo.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── mdm9635 ├── init.c ├── keypad.c ├── meminfo.c ├── qpic_panel_drv.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── mdm9640 ├── init.c ├── keypad.c ├── meminfo.c ├── qpic_panel_drv.c ├── rules.mk ├── target_display.c └── tools │ └── makefile ├── msm7627_surf ├── atags.c ├── include │ └── target │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── msm7627a ├── atags.c ├── include │ └── target │ │ ├── board.h │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── msm7630_surf ├── atags.c ├── include │ └── target │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── msm8226 ├── include │ └── target │ │ └── display.h ├── init.c ├── meminfo.c ├── oem_panel.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── msm8610 ├── include │ └── target │ │ └── display.h ├── init.c ├── meminfo.c ├── oem_panel.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── msm8660_surf ├── atags.c ├── include │ └── target │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── msm8909 ├── include │ └── target │ │ └── display.h ├── init.c ├── meminfo.c ├── oem_panel.c ├── regulator.c ├── rules.mk ├── target_display.c └── tools │ └── makefile ├── msm8916 ├── include │ └── target │ │ └── display.h ├── init.c ├── meminfo.c ├── oem_panel.c ├── rules.mk ├── target_display.c └── tools │ └── makefile ├── msm8952 ├── include │ └── target │ │ └── display.h ├── init.c ├── mdtp_defs.c ├── meminfo.c ├── oem_panel.c ├── regulator.c ├── rules.mk ├── target_display.c └── tools │ └── makefile ├── msm8960 ├── atags.c ├── include │ └── target │ │ ├── board.h │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── msm8974 ├── include │ └── target │ │ └── display.h ├── init.c ├── meminfo.c ├── oem_panel.c ├── rules.mk ├── target_display.c └── tools │ ├── makefile │ └── mkheader.c ├── msm8994 ├── include │ └── target │ │ └── display.h ├── init.c ├── mdtp_defs.c ├── meminfo.c ├── oem_panel.c ├── regulator.c ├── rules.mk ├── target_display.c └── tools │ └── makefile ├── msm8996 ├── include │ └── target │ │ └── display.h ├── init.c ├── mdtp_defs.c ├── meminfo.c ├── oem_panel.c ├── regulator.c ├── rules.mk ├── target_display.c └── tools │ └── makefile ├── msmtitanium ├── init.c ├── meminfo.c ├── rules.mk └── tools │ └── makefile ├── osk5912 ├── init.c └── rules.mk ├── pc-x86 └── rules.mk ├── qemu-arm └── rules.mk ├── qsd8250_ffa ├── atags.c ├── include │ └── target │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── qsd8250_surf ├── atags.c ├── include │ └── target │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── qsd8650a_st1x ├── atags.c ├── include │ └── target │ │ └── display.h ├── init.c ├── keypad.c ├── rules.mk └── tools │ ├── makefile │ └── mkheader.c ├── rules.mk ├── sam7ex256 ├── README ├── include │ └── platform │ │ ├── mux.def │ │ └── mux.h ├── mkmux.sh └── rules.mk ├── surf-msm7k ├── atags.c ├── init.c ├── keypad.c ├── panel.c └── rules.mk ├── surf-qsd8k ├── atags.c ├── init.c ├── keypad.c └── rules.mk └── target_display.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/.gitignore -------------------------------------------------------------------------------- /AndroidBoot.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/AndroidBoot.mk -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/README.md -------------------------------------------------------------------------------- /app/aboot/aboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/aboot.c -------------------------------------------------------------------------------- /app/aboot/bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/bootimg.h -------------------------------------------------------------------------------- /app/aboot/devinfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/devinfo.h -------------------------------------------------------------------------------- /app/aboot/fastboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/fastboot.c -------------------------------------------------------------------------------- /app/aboot/fastboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/fastboot.h -------------------------------------------------------------------------------- /app/aboot/fastboot_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/fastboot_test.c -------------------------------------------------------------------------------- /app/aboot/fastboot_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/fastboot_test.h -------------------------------------------------------------------------------- /app/aboot/fotainfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/fotainfo.c -------------------------------------------------------------------------------- /app/aboot/fotainfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/fotainfo.h -------------------------------------------------------------------------------- /app/aboot/mdtp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/mdtp.c -------------------------------------------------------------------------------- /app/aboot/mdtp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/mdtp.h -------------------------------------------------------------------------------- /app/aboot/mdtp_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/mdtp_defs.c -------------------------------------------------------------------------------- /app/aboot/mdtp_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/mdtp_defs.h -------------------------------------------------------------------------------- /app/aboot/mdtp_fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/mdtp_fuse.c -------------------------------------------------------------------------------- /app/aboot/mdtp_ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/mdtp_ui.c -------------------------------------------------------------------------------- /app/aboot/meta_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/meta_format.h -------------------------------------------------------------------------------- /app/aboot/recovery.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/recovery.c -------------------------------------------------------------------------------- /app/aboot/recovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/recovery.h -------------------------------------------------------------------------------- /app/aboot/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/rules.mk -------------------------------------------------------------------------------- /app/aboot/sparse_format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/aboot/sparse_format.h -------------------------------------------------------------------------------- /app/app.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/app.c -------------------------------------------------------------------------------- /app/clocktests/clock_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/clocktests/clock_tests.c -------------------------------------------------------------------------------- /app/clocktests/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/clocktests/rules.mk -------------------------------------------------------------------------------- /app/mmutest/mmu_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/mmutest/mmu_test.c -------------------------------------------------------------------------------- /app/mmutest/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/mmutest/rules.mk -------------------------------------------------------------------------------- /app/nandwrite/bootimg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/nandwrite/bootimg.h -------------------------------------------------------------------------------- /app/nandwrite/nandwrite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/nandwrite/nandwrite.c -------------------------------------------------------------------------------- /app/nandwrite/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/nandwrite/rules.mk -------------------------------------------------------------------------------- /app/pcitests/pci_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/pcitests/pci_tests.c -------------------------------------------------------------------------------- /app/pcitests/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/pcitests/rules.mk -------------------------------------------------------------------------------- /app/rpmbtests/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/rpmbtests/rules.mk -------------------------------------------------------------------------------- /app/rpmbtests/ufs_rpmb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/rpmbtests/ufs_rpmb.c -------------------------------------------------------------------------------- /app/rpmbtests/ufs_rpmb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/rpmbtests/ufs_rpmb.h -------------------------------------------------------------------------------- /app/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/rules.mk -------------------------------------------------------------------------------- /app/shell/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/shell/rules.mk -------------------------------------------------------------------------------- /app/shell/shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/shell/shell.c -------------------------------------------------------------------------------- /app/stringtests/mymemcpy.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/stringtests/mymemcpy.S -------------------------------------------------------------------------------- /app/stringtests/mymemset.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/stringtests/mymemset.S -------------------------------------------------------------------------------- /app/stringtests/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/stringtests/rules.mk -------------------------------------------------------------------------------- /app/tests/i2c_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/i2c_test.c -------------------------------------------------------------------------------- /app/tests/include/app/tests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/include/app/tests.h -------------------------------------------------------------------------------- /app/tests/kauth_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/kauth_test.c -------------------------------------------------------------------------------- /app/tests/printf_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/printf_tests.c -------------------------------------------------------------------------------- /app/tests/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/rules.mk -------------------------------------------------------------------------------- /app/tests/tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/tests.c -------------------------------------------------------------------------------- /app/tests/thread_tests.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/app/tests/thread_tests.c -------------------------------------------------------------------------------- /arch/arm/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/arch.c -------------------------------------------------------------------------------- /arch/arm/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/asm.S -------------------------------------------------------------------------------- /arch/arm/cache-ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/cache-ops.S -------------------------------------------------------------------------------- /arch/arm/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/cache.c -------------------------------------------------------------------------------- /arch/arm/compile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/compile.mk -------------------------------------------------------------------------------- /arch/arm/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/crt0.S -------------------------------------------------------------------------------- /arch/arm/dcc.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/dcc.S -------------------------------------------------------------------------------- /arch/arm/exceptions.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/exceptions.S -------------------------------------------------------------------------------- /arch/arm/faults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/faults.c -------------------------------------------------------------------------------- /arch/arm/include/arch/arm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/include/arch/arm.h -------------------------------------------------------------------------------- /arch/arm/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/mmu.c -------------------------------------------------------------------------------- /arch/arm/mmu_lpae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/mmu_lpae.c -------------------------------------------------------------------------------- /arch/arm/ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/ops.S -------------------------------------------------------------------------------- /arch/arm/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/rules.mk -------------------------------------------------------------------------------- /arch/arm/system-onesegment.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/system-onesegment.ld -------------------------------------------------------------------------------- /arch/arm/system-twosegment.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/system-twosegment.ld -------------------------------------------------------------------------------- /arch/arm/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/arm/thread.c -------------------------------------------------------------------------------- /arch/x86/arch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/arch.c -------------------------------------------------------------------------------- /arch/x86/asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/asm.S -------------------------------------------------------------------------------- /arch/x86/cache-ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/cache-ops.S -------------------------------------------------------------------------------- /arch/x86/cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/cache.c -------------------------------------------------------------------------------- /arch/x86/compile.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/compile.mk -------------------------------------------------------------------------------- /arch/x86/crt0.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/crt0.S -------------------------------------------------------------------------------- /arch/x86/descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/descriptor.c -------------------------------------------------------------------------------- /arch/x86/faults.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/faults.c -------------------------------------------------------------------------------- /arch/x86/include/arch/x86.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/include/arch/x86.h -------------------------------------------------------------------------------- /arch/x86/kernel.ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/kernel.ld -------------------------------------------------------------------------------- /arch/x86/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/mmu.c -------------------------------------------------------------------------------- /arch/x86/ops.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/ops.S -------------------------------------------------------------------------------- /arch/x86/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/rules.mk -------------------------------------------------------------------------------- /arch/x86/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/arch/x86/thread.c -------------------------------------------------------------------------------- /dev/dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/dev.c -------------------------------------------------------------------------------- /dev/fbcon/fbcon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/fbcon/fbcon.c -------------------------------------------------------------------------------- /dev/fbcon/font5x12.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/fbcon/font5x12.h -------------------------------------------------------------------------------- /dev/fbcon/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/fbcon/rules.mk -------------------------------------------------------------------------------- /dev/gcdb/display/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/gcdb/display/rules.mk -------------------------------------------------------------------------------- /dev/keys/gpio_keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/keys/gpio_keypad.c -------------------------------------------------------------------------------- /dev/keys/keys.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/keys/keys.c -------------------------------------------------------------------------------- /dev/keys/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/keys/rules.mk -------------------------------------------------------------------------------- /dev/net/smc91c96/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/net/smc91c96/rules.mk -------------------------------------------------------------------------------- /dev/net/smc91c96/smc91c96.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/net/smc91c96/smc91c96.c -------------------------------------------------------------------------------- /dev/net/smc91c96/smc91c96_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/net/smc91c96/smc91c96_p.h -------------------------------------------------------------------------------- /dev/pmic/fgsram/pm_fg_sram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/fgsram/pm_fg_sram.c -------------------------------------------------------------------------------- /dev/pmic/fgsram/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/fgsram/rules.mk -------------------------------------------------------------------------------- /dev/pmic/pm8921/pm8921.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8921/pm8921.c -------------------------------------------------------------------------------- /dev/pmic/pm8921/pm8921_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8921/pm8921_hw.h -------------------------------------------------------------------------------- /dev/pmic/pm8921/pm8921_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8921/pm8921_pwm.c -------------------------------------------------------------------------------- /dev/pmic/pm8921/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8921/rules.mk -------------------------------------------------------------------------------- /dev/pmic/pm8x41/pm8x41.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8x41/pm8x41.c -------------------------------------------------------------------------------- /dev/pmic/pm8x41/pm8x41_adc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8x41/pm8x41_adc.c -------------------------------------------------------------------------------- /dev/pmic/pm8x41/pm8x41_vib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8x41/pm8x41_vib.c -------------------------------------------------------------------------------- /dev/pmic/pm8x41/pm8x41_wled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8x41/pm8x41_wled.c -------------------------------------------------------------------------------- /dev/pmic/pm8x41/pm_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8x41/pm_pwm.c -------------------------------------------------------------------------------- /dev/pmic/pm8x41/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pm8x41/rules.mk -------------------------------------------------------------------------------- /dev/pmic/pmi8994/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/pmi8994/rules.mk -------------------------------------------------------------------------------- /dev/pmic/twl4030/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/twl4030/rules.mk -------------------------------------------------------------------------------- /dev/pmic/twl4030/twl4030.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/twl4030/twl4030.c -------------------------------------------------------------------------------- /dev/pmic/twl4030/twl4030_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/pmic/twl4030/twl4030_hw.h -------------------------------------------------------------------------------- /dev/qpnp_haptic/qpnp_haptic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/qpnp_haptic/qpnp_haptic.c -------------------------------------------------------------------------------- /dev/qpnp_haptic/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/qpnp_haptic/rules.mk -------------------------------------------------------------------------------- /dev/qpnp_led/qpnp_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/qpnp_led/qpnp_led.c -------------------------------------------------------------------------------- /dev/qpnp_led/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/qpnp_led/rules.mk -------------------------------------------------------------------------------- /dev/qpnp_wled/qpnp_wled.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/qpnp_wled/qpnp_wled.c -------------------------------------------------------------------------------- /dev/qpnp_wled/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/qpnp_wled/rules.mk -------------------------------------------------------------------------------- /dev/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/rules.mk -------------------------------------------------------------------------------- /dev/ssbi/include/dev/ssbi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/ssbi/include/dev/ssbi.h -------------------------------------------------------------------------------- /dev/ssbi/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/ssbi/rules.mk -------------------------------------------------------------------------------- /dev/ssbi/ssbi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/ssbi/ssbi.c -------------------------------------------------------------------------------- /dev/usb/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/usb/rules.mk -------------------------------------------------------------------------------- /dev/usb/usb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/usb/usb.c -------------------------------------------------------------------------------- /dev/vib/include/vibrator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/vib/include/vibrator.h -------------------------------------------------------------------------------- /dev/vib/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/vib/rules.mk -------------------------------------------------------------------------------- /dev/vib/vibrator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/dev/vib/vibrator.c -------------------------------------------------------------------------------- /include/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/Makefile.am -------------------------------------------------------------------------------- /include/app.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/app.h -------------------------------------------------------------------------------- /include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/arch.h -------------------------------------------------------------------------------- /include/arch/ops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/arch/ops.h -------------------------------------------------------------------------------- /include/arch/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/arch/thread.h -------------------------------------------------------------------------------- /include/asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/asm.h -------------------------------------------------------------------------------- /include/assert.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/assert.h -------------------------------------------------------------------------------- /include/bits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/bits.h -------------------------------------------------------------------------------- /include/compiler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/compiler.h -------------------------------------------------------------------------------- /include/ctype.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/ctype.h -------------------------------------------------------------------------------- /include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/debug.h -------------------------------------------------------------------------------- /include/dev/display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/display.h -------------------------------------------------------------------------------- /include/dev/ethernet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/ethernet.h -------------------------------------------------------------------------------- /include/dev/fbcon.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/fbcon.h -------------------------------------------------------------------------------- /include/dev/flash-ubi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/flash-ubi.h -------------------------------------------------------------------------------- /include/dev/flash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/flash.h -------------------------------------------------------------------------------- /include/dev/gpio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/gpio.h -------------------------------------------------------------------------------- /include/dev/gpio_keypad.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/gpio_keypad.h -------------------------------------------------------------------------------- /include/dev/i2c.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/i2c.h -------------------------------------------------------------------------------- /include/dev/keys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/keys.h -------------------------------------------------------------------------------- /include/dev/lcdc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/lcdc.h -------------------------------------------------------------------------------- /include/dev/pci.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/pci.h -------------------------------------------------------------------------------- /include/dev/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/uart.h -------------------------------------------------------------------------------- /include/dev/udc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/udc.h -------------------------------------------------------------------------------- /include/dev/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/usb.h -------------------------------------------------------------------------------- /include/dev/usbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/dev/usbc.h -------------------------------------------------------------------------------- /include/endian.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/endian.h -------------------------------------------------------------------------------- /include/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/err.h -------------------------------------------------------------------------------- /include/errno.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/errno.h -------------------------------------------------------------------------------- /include/hw/mii.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/hw/mii.h -------------------------------------------------------------------------------- /include/hw/usb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/hw/usb.h -------------------------------------------------------------------------------- /include/inttypes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/inttypes.h -------------------------------------------------------------------------------- /include/kernel/dpc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/kernel/dpc.h -------------------------------------------------------------------------------- /include/kernel/event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/kernel/event.h -------------------------------------------------------------------------------- /include/kernel/mutex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/kernel/mutex.h -------------------------------------------------------------------------------- /include/kernel/thread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/kernel/thread.h -------------------------------------------------------------------------------- /include/kernel/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/kernel/timer.h -------------------------------------------------------------------------------- /include/lib/bcache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/bcache.h -------------------------------------------------------------------------------- /include/lib/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/bio.h -------------------------------------------------------------------------------- /include/lib/cbuf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/cbuf.h -------------------------------------------------------------------------------- /include/lib/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/console.h -------------------------------------------------------------------------------- /include/lib/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/font.h -------------------------------------------------------------------------------- /include/lib/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/fs.h -------------------------------------------------------------------------------- /include/lib/gfx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/gfx.h -------------------------------------------------------------------------------- /include/lib/gfxconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/gfxconsole.h -------------------------------------------------------------------------------- /include/lib/heap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/heap.h -------------------------------------------------------------------------------- /include/lib/partition.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/partition.h -------------------------------------------------------------------------------- /include/lib/ptable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/ptable.h -------------------------------------------------------------------------------- /include/lib/text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/text.h -------------------------------------------------------------------------------- /include/lib/tga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/lib/tga.h -------------------------------------------------------------------------------- /include/limits.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/limits.h -------------------------------------------------------------------------------- /include/list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/list.h -------------------------------------------------------------------------------- /include/malloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/malloc.h -------------------------------------------------------------------------------- /include/new.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/new.h -------------------------------------------------------------------------------- /include/platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/platform.h -------------------------------------------------------------------------------- /include/platform/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/platform/debug.h -------------------------------------------------------------------------------- /include/platform/interrupts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/platform/interrupts.h -------------------------------------------------------------------------------- /include/platform/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/platform/timer.h -------------------------------------------------------------------------------- /include/pow2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/pow2.h -------------------------------------------------------------------------------- /include/printf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/printf.h -------------------------------------------------------------------------------- /include/rand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/rand.h -------------------------------------------------------------------------------- /include/reg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/reg.h -------------------------------------------------------------------------------- /include/stdint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/stdint.h -------------------------------------------------------------------------------- /include/stdio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/stdio.h -------------------------------------------------------------------------------- /include/stdlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/stdlib.h -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/string.h -------------------------------------------------------------------------------- /include/sys/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/sys/types.h -------------------------------------------------------------------------------- /include/target.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/include/target.h -------------------------------------------------------------------------------- /kernel/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/debug.c -------------------------------------------------------------------------------- /kernel/dpc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/dpc.c -------------------------------------------------------------------------------- /kernel/event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/event.c -------------------------------------------------------------------------------- /kernel/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/main.c -------------------------------------------------------------------------------- /kernel/mutex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/mutex.c -------------------------------------------------------------------------------- /kernel/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/rules.mk -------------------------------------------------------------------------------- /kernel/thread.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/thread.c -------------------------------------------------------------------------------- /kernel/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/kernel/timer.c -------------------------------------------------------------------------------- /lib/bcache/bcache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bcache/bcache.c -------------------------------------------------------------------------------- /lib/bcache/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bcache/rules.mk -------------------------------------------------------------------------------- /lib/bio/bio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bio/bio.c -------------------------------------------------------------------------------- /lib/bio/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bio/debug.c -------------------------------------------------------------------------------- /lib/bio/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bio/mem.c -------------------------------------------------------------------------------- /lib/bio/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bio/rules.mk -------------------------------------------------------------------------------- /lib/bio/subdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/bio/subdev.c -------------------------------------------------------------------------------- /lib/cbuf/cbuf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/cbuf/cbuf.c -------------------------------------------------------------------------------- /lib/cbuf/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/cbuf/rules.mk -------------------------------------------------------------------------------- /lib/console/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/console/console.c -------------------------------------------------------------------------------- /lib/console/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/console/rules.mk -------------------------------------------------------------------------------- /lib/debug/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/debug/debug.c -------------------------------------------------------------------------------- /lib/debug/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/debug/rules.mk -------------------------------------------------------------------------------- /lib/font/font.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/font/font.c -------------------------------------------------------------------------------- /lib/font/font.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/font/font.h -------------------------------------------------------------------------------- /lib/font/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/font/rules.mk -------------------------------------------------------------------------------- /lib/fs/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/fs/debug.c -------------------------------------------------------------------------------- /lib/fs/fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/fs/fs.c -------------------------------------------------------------------------------- /lib/fs/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/fs/rules.mk -------------------------------------------------------------------------------- /lib/gfx/gfx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/gfx/gfx.c -------------------------------------------------------------------------------- /lib/gfx/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/gfx/rules.mk -------------------------------------------------------------------------------- /lib/gfxconsole/gfxconsole.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/gfxconsole/gfxconsole.c -------------------------------------------------------------------------------- /lib/gfxconsole/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/gfxconsole/rules.mk -------------------------------------------------------------------------------- /lib/heap/heap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/heap/heap.c -------------------------------------------------------------------------------- /lib/heap/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/heap/rules.mk -------------------------------------------------------------------------------- /lib/libc/atexit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/atexit.c -------------------------------------------------------------------------------- /lib/libc/atoi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/atoi.c -------------------------------------------------------------------------------- /lib/libc/ctype.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/ctype.c -------------------------------------------------------------------------------- /lib/libc/eabi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/eabi.c -------------------------------------------------------------------------------- /lib/libc/gcd_lcm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/gcd_lcm.c -------------------------------------------------------------------------------- /lib/libc/itoa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/itoa.c -------------------------------------------------------------------------------- /lib/libc/malloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/malloc.c -------------------------------------------------------------------------------- /lib/libc/new.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/new.cpp -------------------------------------------------------------------------------- /lib/libc/printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/printf.c -------------------------------------------------------------------------------- /lib/libc/pure_virtual.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/pure_virtual.cpp -------------------------------------------------------------------------------- /lib/libc/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/rand.c -------------------------------------------------------------------------------- /lib/libc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/rules.mk -------------------------------------------------------------------------------- /lib/libc/string/bcopy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/bcopy.c -------------------------------------------------------------------------------- /lib/libc/string/bzero.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/bzero.c -------------------------------------------------------------------------------- /lib/libc/string/memchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memchr.c -------------------------------------------------------------------------------- /lib/libc/string/memcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memcmp.c -------------------------------------------------------------------------------- /lib/libc/string/memcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memcpy.c -------------------------------------------------------------------------------- /lib/libc/string/memmove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memmove.c -------------------------------------------------------------------------------- /lib/libc/string/memscan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memscan.c -------------------------------------------------------------------------------- /lib/libc/string/memscpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memscpy.c -------------------------------------------------------------------------------- /lib/libc/string/memset.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/memset.c -------------------------------------------------------------------------------- /lib/libc/string/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/rules.mk -------------------------------------------------------------------------------- /lib/libc/string/strcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strcat.c -------------------------------------------------------------------------------- /lib/libc/string/strchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strchr.c -------------------------------------------------------------------------------- /lib/libc/string/strcmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strcmp.c -------------------------------------------------------------------------------- /lib/libc/string/strcoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strcoll.c -------------------------------------------------------------------------------- /lib/libc/string/strcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strcpy.c -------------------------------------------------------------------------------- /lib/libc/string/strdup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strdup.c -------------------------------------------------------------------------------- /lib/libc/string/strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strerror.c -------------------------------------------------------------------------------- /lib/libc/string/strlcat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strlcat.c -------------------------------------------------------------------------------- /lib/libc/string/strlcpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strlcpy.c -------------------------------------------------------------------------------- /lib/libc/string/strlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strlen.c -------------------------------------------------------------------------------- /lib/libc/string/strncat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strncat.c -------------------------------------------------------------------------------- /lib/libc/string/strncmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strncmp.c -------------------------------------------------------------------------------- /lib/libc/string/strncpy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strncpy.c -------------------------------------------------------------------------------- /lib/libc/string/strnicmp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strnicmp.c -------------------------------------------------------------------------------- /lib/libc/string/strnlen.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strnlen.c -------------------------------------------------------------------------------- /lib/libc/string/strpbrk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strpbrk.c -------------------------------------------------------------------------------- /lib/libc/string/strrchr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strrchr.c -------------------------------------------------------------------------------- /lib/libc/string/strrev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strrev.c -------------------------------------------------------------------------------- /lib/libc/string/strspn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strspn.c -------------------------------------------------------------------------------- /lib/libc/string/strstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strstr.c -------------------------------------------------------------------------------- /lib/libc/string/strtok.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strtok.c -------------------------------------------------------------------------------- /lib/libc/string/strxfrm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libc/string/strxfrm.c -------------------------------------------------------------------------------- /lib/libfdt/Makefile.libfdt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/Makefile.libfdt -------------------------------------------------------------------------------- /lib/libfdt/README.license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/README.license -------------------------------------------------------------------------------- /lib/libfdt/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/TODO -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt.c -------------------------------------------------------------------------------- /lib/libfdt/fdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt.h -------------------------------------------------------------------------------- /lib/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt_empty_tree.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_ro.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt_ro.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt_rw.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt_strerror.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt_sw.c -------------------------------------------------------------------------------- /lib/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/fdt_wip.c -------------------------------------------------------------------------------- /lib/libfdt/libfdt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/libfdt.h -------------------------------------------------------------------------------- /lib/libfdt/libfdt_env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/libfdt_env.h -------------------------------------------------------------------------------- /lib/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/libfdt_internal.h -------------------------------------------------------------------------------- /lib/libfdt/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/rules.mk -------------------------------------------------------------------------------- /lib/libfdt/version.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/libfdt/version.lds -------------------------------------------------------------------------------- /lib/openssl/CleanSpec.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/CleanSpec.mk -------------------------------------------------------------------------------- /lib/openssl/MODULE_LICENSE_BSD_LIKE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/openssl/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/NOTICE -------------------------------------------------------------------------------- /lib/openssl/README.android: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/README.android -------------------------------------------------------------------------------- /lib/openssl/android-config.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/android-config.mk -------------------------------------------------------------------------------- /lib/openssl/apps/CA.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/CA.com -------------------------------------------------------------------------------- /lib/openssl/apps/CA.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/CA.pl -------------------------------------------------------------------------------- /lib/openssl/apps/CA.pl.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/CA.pl.in -------------------------------------------------------------------------------- /lib/openssl/apps/CA.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/CA.sh -------------------------------------------------------------------------------- /lib/openssl/apps/app_rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/app_rand.c -------------------------------------------------------------------------------- /lib/openssl/apps/apps.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/apps.c -------------------------------------------------------------------------------- /lib/openssl/apps/apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/apps.h -------------------------------------------------------------------------------- /lib/openssl/apps/asn1pars.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/asn1pars.c -------------------------------------------------------------------------------- /lib/openssl/apps/ca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /lib/openssl/apps/ca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ca-key.pem -------------------------------------------------------------------------------- /lib/openssl/apps/ca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ca-req.pem -------------------------------------------------------------------------------- /lib/openssl/apps/ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ca.c -------------------------------------------------------------------------------- /lib/openssl/apps/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/cert.pem -------------------------------------------------------------------------------- /lib/openssl/apps/ciphers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ciphers.c -------------------------------------------------------------------------------- /lib/openssl/apps/client.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/client.pem -------------------------------------------------------------------------------- /lib/openssl/apps/cms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/cms.c -------------------------------------------------------------------------------- /lib/openssl/apps/crl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/crl.c -------------------------------------------------------------------------------- /lib/openssl/apps/crl2p7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/crl2p7.c -------------------------------------------------------------------------------- /lib/openssl/apps/dgst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dgst.c -------------------------------------------------------------------------------- /lib/openssl/apps/dh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dh.c -------------------------------------------------------------------------------- /lib/openssl/apps/dh1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dh1024.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dh2048.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dh2048.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dh4096.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dh4096.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dh512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dh512.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dhparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dhparam.c -------------------------------------------------------------------------------- /lib/openssl/apps/dsa-ca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsa-ca.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dsa-pca.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsa-pca.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsa.c -------------------------------------------------------------------------------- /lib/openssl/apps/dsa1024.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsa1024.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dsa512.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsa512.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dsap.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsap.pem -------------------------------------------------------------------------------- /lib/openssl/apps/dsaparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/dsaparam.c -------------------------------------------------------------------------------- /lib/openssl/apps/ec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ec.c -------------------------------------------------------------------------------- /lib/openssl/apps/ecparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ecparam.c -------------------------------------------------------------------------------- /lib/openssl/apps/enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/enc.c -------------------------------------------------------------------------------- /lib/openssl/apps/engine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/engine.c -------------------------------------------------------------------------------- /lib/openssl/apps/errstr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/errstr.c -------------------------------------------------------------------------------- /lib/openssl/apps/gendh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/gendh.c -------------------------------------------------------------------------------- /lib/openssl/apps/gendsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/gendsa.c -------------------------------------------------------------------------------- /lib/openssl/apps/genpkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/genpkey.c -------------------------------------------------------------------------------- /lib/openssl/apps/genrsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/genrsa.c -------------------------------------------------------------------------------- /lib/openssl/apps/install.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/install.com -------------------------------------------------------------------------------- /lib/openssl/apps/makeapps.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/makeapps.com -------------------------------------------------------------------------------- /lib/openssl/apps/md4.c: -------------------------------------------------------------------------------- 1 | ../crypto/md4/md4.c -------------------------------------------------------------------------------- /lib/openssl/apps/nseq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/nseq.c -------------------------------------------------------------------------------- /lib/openssl/apps/ocsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/ocsp.c -------------------------------------------------------------------------------- /lib/openssl/apps/oid.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/oid.cnf -------------------------------------------------------------------------------- /lib/openssl/apps/openssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/openssl.c -------------------------------------------------------------------------------- /lib/openssl/apps/openssl.cnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/openssl.cnf -------------------------------------------------------------------------------- /lib/openssl/apps/passwd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/passwd.c -------------------------------------------------------------------------------- /lib/openssl/apps/pca-cert.srl: -------------------------------------------------------------------------------- 1 | 07 2 | -------------------------------------------------------------------------------- /lib/openssl/apps/pca-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pca-key.pem -------------------------------------------------------------------------------- /lib/openssl/apps/pca-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pca-req.pem -------------------------------------------------------------------------------- /lib/openssl/apps/pkcs12.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pkcs12.c -------------------------------------------------------------------------------- /lib/openssl/apps/pkcs7.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pkcs7.c -------------------------------------------------------------------------------- /lib/openssl/apps/pkcs8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pkcs8.c -------------------------------------------------------------------------------- /lib/openssl/apps/pkey.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pkey.c -------------------------------------------------------------------------------- /lib/openssl/apps/pkeyparam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pkeyparam.c -------------------------------------------------------------------------------- /lib/openssl/apps/pkeyutl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/pkeyutl.c -------------------------------------------------------------------------------- /lib/openssl/apps/prime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/prime.c -------------------------------------------------------------------------------- /lib/openssl/apps/privkey.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/privkey.pem -------------------------------------------------------------------------------- /lib/openssl/apps/progs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/progs.h -------------------------------------------------------------------------------- /lib/openssl/apps/progs.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/progs.pl -------------------------------------------------------------------------------- /lib/openssl/apps/rand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/rand.c -------------------------------------------------------------------------------- /lib/openssl/apps/req.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/req.c -------------------------------------------------------------------------------- /lib/openssl/apps/req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/req.pem -------------------------------------------------------------------------------- /lib/openssl/apps/rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/rsa.c -------------------------------------------------------------------------------- /lib/openssl/apps/rsa8192.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/rsa8192.pem -------------------------------------------------------------------------------- /lib/openssl/apps/rsautl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/rsautl.c -------------------------------------------------------------------------------- /lib/openssl/apps/s1024key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s1024key.pem -------------------------------------------------------------------------------- /lib/openssl/apps/s1024req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s1024req.pem -------------------------------------------------------------------------------- /lib/openssl/apps/s512-key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s512-key.pem -------------------------------------------------------------------------------- /lib/openssl/apps/s512-req.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s512-req.pem -------------------------------------------------------------------------------- /lib/openssl/apps/s_apps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s_apps.h -------------------------------------------------------------------------------- /lib/openssl/apps/s_cb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s_cb.c -------------------------------------------------------------------------------- /lib/openssl/apps/s_client.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s_client.c -------------------------------------------------------------------------------- /lib/openssl/apps/s_server.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s_server.c -------------------------------------------------------------------------------- /lib/openssl/apps/s_socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s_socket.c -------------------------------------------------------------------------------- /lib/openssl/apps/s_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/s_time.c -------------------------------------------------------------------------------- /lib/openssl/apps/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/server.pem -------------------------------------------------------------------------------- /lib/openssl/apps/server.srl: -------------------------------------------------------------------------------- 1 | 01 2 | -------------------------------------------------------------------------------- /lib/openssl/apps/server2.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/server2.pem -------------------------------------------------------------------------------- /lib/openssl/apps/sess_id.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/sess_id.c -------------------------------------------------------------------------------- /lib/openssl/apps/smime.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/smime.c -------------------------------------------------------------------------------- /lib/openssl/apps/speed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/speed.c -------------------------------------------------------------------------------- /lib/openssl/apps/spkac.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/spkac.c -------------------------------------------------------------------------------- /lib/openssl/apps/testCA.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/testCA.pem -------------------------------------------------------------------------------- /lib/openssl/apps/testdsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/testdsa.h -------------------------------------------------------------------------------- /lib/openssl/apps/testrsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/testrsa.h -------------------------------------------------------------------------------- /lib/openssl/apps/timeouts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/timeouts.h -------------------------------------------------------------------------------- /lib/openssl/apps/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/verify.c -------------------------------------------------------------------------------- /lib/openssl/apps/version.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/version.c -------------------------------------------------------------------------------- /lib/openssl/apps/winrand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/winrand.c -------------------------------------------------------------------------------- /lib/openssl/apps/x509.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/apps/x509.c -------------------------------------------------------------------------------- /lib/openssl/crypto/aes/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/aes/README -------------------------------------------------------------------------------- /lib/openssl/crypto/aes/aes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/aes/aes.h -------------------------------------------------------------------------------- /lib/openssl/crypto/bf/bf_pi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/bf/bf_pi.h -------------------------------------------------------------------------------- /lib/openssl/crypto/bio/bio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/bio/bio.h -------------------------------------------------------------------------------- /lib/openssl/crypto/bn/asm/x86/f: -------------------------------------------------------------------------------- 1 | #!/usr/local/bin/perl 2 | # x86 assember 3 | 4 | -------------------------------------------------------------------------------- /lib/openssl/crypto/bn/bn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/bn/bn.h -------------------------------------------------------------------------------- /lib/openssl/crypto/bn/bn.mul: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/bn/bn.mul -------------------------------------------------------------------------------- /lib/openssl/crypto/bn/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/bn/exp.c -------------------------------------------------------------------------------- /lib/openssl/crypto/bn/todo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/bn/todo -------------------------------------------------------------------------------- /lib/openssl/crypto/cpt_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/cpt_err.c -------------------------------------------------------------------------------- /lib/openssl/crypto/cryptlib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/cryptlib.c -------------------------------------------------------------------------------- /lib/openssl/crypto/cryptlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/cryptlib.h -------------------------------------------------------------------------------- /lib/openssl/crypto/crypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/crypto.h -------------------------------------------------------------------------------- /lib/openssl/crypto/cversion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/cversion.c -------------------------------------------------------------------------------- /lib/openssl/crypto/des/DES.pm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/DES.pm -------------------------------------------------------------------------------- /lib/openssl/crypto/des/DES.xs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/DES.xs -------------------------------------------------------------------------------- /lib/openssl/crypto/des/FILES0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/FILES0 -------------------------------------------------------------------------------- /lib/openssl/crypto/des/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/README -------------------------------------------------------------------------------- /lib/openssl/crypto/des/des.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/des.c -------------------------------------------------------------------------------- /lib/openssl/crypto/des/des.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/des.h -------------------------------------------------------------------------------- /lib/openssl/crypto/des/rpw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/rpw.c -------------------------------------------------------------------------------- /lib/openssl/crypto/des/spr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/spr.h -------------------------------------------------------------------------------- /lib/openssl/crypto/des/t/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/des/t/test -------------------------------------------------------------------------------- /lib/openssl/crypto/dh/dh.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dh/dh.h -------------------------------------------------------------------------------- /lib/openssl/crypto/dh/example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dh/example -------------------------------------------------------------------------------- /lib/openssl/crypto/dh/p1024.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dh/p1024.c -------------------------------------------------------------------------------- /lib/openssl/crypto/dh/p192.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dh/p192.c -------------------------------------------------------------------------------- /lib/openssl/crypto/dh/p512.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dh/p512.c -------------------------------------------------------------------------------- /lib/openssl/crypto/dsa/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dsa/README -------------------------------------------------------------------------------- /lib/openssl/crypto/dsa/dsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dsa/dsa.h -------------------------------------------------------------------------------- /lib/openssl/crypto/dso/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dso/README -------------------------------------------------------------------------------- /lib/openssl/crypto/dso/dso.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/dso/dso.h -------------------------------------------------------------------------------- /lib/openssl/crypto/ebcdic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/ebcdic.c -------------------------------------------------------------------------------- /lib/openssl/crypto/ebcdic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/ebcdic.h -------------------------------------------------------------------------------- /lib/openssl/crypto/ec/ec.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/ec/ec.h -------------------------------------------------------------------------------- /lib/openssl/crypto/err/err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/err/err.c -------------------------------------------------------------------------------- /lib/openssl/crypto/err/err.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/err/err.h -------------------------------------------------------------------------------- /lib/openssl/crypto/evp/e_bf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/evp/e_bf.c -------------------------------------------------------------------------------- /lib/openssl/crypto/evp/evp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/evp/evp.h -------------------------------------------------------------------------------- /lib/openssl/crypto/evp/m_wp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/evp/m_wp.c -------------------------------------------------------------------------------- /lib/openssl/crypto/ex_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/ex_data.c -------------------------------------------------------------------------------- /lib/openssl/crypto/md4/md4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/md4/md4.c -------------------------------------------------------------------------------- /lib/openssl/crypto/md4/md4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/md4/md4.h -------------------------------------------------------------------------------- /lib/openssl/crypto/md5/md5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/md5/md5.c -------------------------------------------------------------------------------- /lib/openssl/crypto/md5/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/md5/md5.h -------------------------------------------------------------------------------- /lib/openssl/crypto/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/mem.c -------------------------------------------------------------------------------- /lib/openssl/crypto/mem_clr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/mem_clr.c -------------------------------------------------------------------------------- /lib/openssl/crypto/mem_dbg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/mem_dbg.c -------------------------------------------------------------------------------- /lib/openssl/crypto/o_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/o_dir.c -------------------------------------------------------------------------------- /lib/openssl/crypto/o_dir.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/o_dir.h -------------------------------------------------------------------------------- /lib/openssl/crypto/o_str.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/o_str.c -------------------------------------------------------------------------------- /lib/openssl/crypto/o_str.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/o_str.h -------------------------------------------------------------------------------- /lib/openssl/crypto/o_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/o_time.c -------------------------------------------------------------------------------- /lib/openssl/crypto/o_time.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/o_time.h -------------------------------------------------------------------------------- /lib/openssl/crypto/opensslv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/opensslv.h -------------------------------------------------------------------------------- /lib/openssl/crypto/ossl_typ.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/ossl_typ.h -------------------------------------------------------------------------------- /lib/openssl/crypto/pem/pem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/pem/pem.h -------------------------------------------------------------------------------- /lib/openssl/crypto/pem/pem2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/pem/pem2.h -------------------------------------------------------------------------------- /lib/openssl/crypto/pkcs7/doc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/pkcs7/doc -------------------------------------------------------------------------------- /lib/openssl/crypto/pkcs7/t/ff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/pkcs7/t/ff -------------------------------------------------------------------------------- /lib/openssl/crypto/rc2/rc2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/rc2/rc2.h -------------------------------------------------------------------------------- /lib/openssl/crypto/rc2/tab.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/rc2/tab.c -------------------------------------------------------------------------------- /lib/openssl/crypto/rc4/rc4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/rc4/rc4.c -------------------------------------------------------------------------------- /lib/openssl/crypto/rc4/rc4.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/rc4/rc4.h -------------------------------------------------------------------------------- /lib/openssl/crypto/rsa/rsa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/rsa/rsa.h -------------------------------------------------------------------------------- /lib/openssl/crypto/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/rules.mk -------------------------------------------------------------------------------- /lib/openssl/crypto/s390xcap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/s390xcap.c -------------------------------------------------------------------------------- /lib/openssl/crypto/sha/asm/README: -------------------------------------------------------------------------------- 1 | C2.pl works 2 | -------------------------------------------------------------------------------- /lib/openssl/crypto/sha/sha.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/sha/sha.c -------------------------------------------------------------------------------- /lib/openssl/crypto/sha/sha.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/sha/sha.h -------------------------------------------------------------------------------- /lib/openssl/crypto/sha/sha1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/sha/sha1.c -------------------------------------------------------------------------------- /lib/openssl/crypto/symhacks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/symhacks.h -------------------------------------------------------------------------------- /lib/openssl/crypto/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/ui/ui.h -------------------------------------------------------------------------------- /lib/openssl/crypto/uid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/crypto/uid.c -------------------------------------------------------------------------------- /lib/openssl/e_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/e_os.h -------------------------------------------------------------------------------- /lib/openssl/e_os2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/e_os2.h -------------------------------------------------------------------------------- /lib/openssl/import_openssl.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/import_openssl.sh -------------------------------------------------------------------------------- /lib/openssl/openssl.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/openssl.config -------------------------------------------------------------------------------- /lib/openssl/openssl.version: -------------------------------------------------------------------------------- 1 | OPENSSL_VERSION=1.0.0a 2 | -------------------------------------------------------------------------------- /lib/openssl/patches/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/patches/README -------------------------------------------------------------------------------- /lib/openssl/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/rules.mk -------------------------------------------------------------------------------- /lib/openssl/ssl/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/Makefile -------------------------------------------------------------------------------- /lib/openssl/ssl/bio_ssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/bio_ssl.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_both.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_clnt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_enc.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_lib.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_meth.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_pkt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/d1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/d1_srvr.c -------------------------------------------------------------------------------- /lib/openssl/ssl/dtls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/dtls1.h -------------------------------------------------------------------------------- /lib/openssl/ssl/install.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/install.com -------------------------------------------------------------------------------- /lib/openssl/ssl/kssl.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/kssl.c -------------------------------------------------------------------------------- /lib/openssl/ssl/kssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/kssl.h -------------------------------------------------------------------------------- /lib/openssl/ssl/kssl_lcl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/kssl_lcl.h -------------------------------------------------------------------------------- /lib/openssl/ssl/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/rules.mk -------------------------------------------------------------------------------- /lib/openssl/ssl/s23_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s23_clnt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s23_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s23_lib.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s23_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s23_meth.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s23_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s23_pkt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s23_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s23_srvr.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s2_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s2_clnt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s2_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s2_enc.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s2_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s2_lib.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s2_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s2_meth.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s2_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s2_pkt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s2_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s2_srvr.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_both.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_both.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_clnt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_enc.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_lib.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_meth.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_pkt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_pkt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/s3_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/s3_srvr.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl-lib.com: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl-lib.com -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl.h -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl2.h -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl23.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl23.h -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl3.h -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_algs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_algs.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_asn1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_asn1.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_cert.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_cert.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_ciph.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_ciph.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_err.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_err.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_err2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_err2.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_lib.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_locl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_locl.h -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_rsa.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_rsa.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_sess.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_sess.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_stat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_stat.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_task.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_task.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssl_txt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssl_txt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/ssltest.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/ssltest.c -------------------------------------------------------------------------------- /lib/openssl/ssl/t1_clnt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/t1_clnt.c -------------------------------------------------------------------------------- /lib/openssl/ssl/t1_enc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/t1_enc.c -------------------------------------------------------------------------------- /lib/openssl/ssl/t1_lib.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/t1_lib.c -------------------------------------------------------------------------------- /lib/openssl/ssl/t1_meth.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/t1_meth.c -------------------------------------------------------------------------------- /lib/openssl/ssl/t1_reneg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/t1_reneg.c -------------------------------------------------------------------------------- /lib/openssl/ssl/t1_srvr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/t1_srvr.c -------------------------------------------------------------------------------- /lib/openssl/ssl/tls1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/openssl/ssl/tls1.h -------------------------------------------------------------------------------- /lib/partition/partition.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/partition/partition.c -------------------------------------------------------------------------------- /lib/partition/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/partition/rules.mk -------------------------------------------------------------------------------- /lib/ptable/ptable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/ptable/ptable.c -------------------------------------------------------------------------------- /lib/ptable/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/ptable/rules.mk -------------------------------------------------------------------------------- /lib/text/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/text/rules.mk -------------------------------------------------------------------------------- /lib/text/text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/text/text.c -------------------------------------------------------------------------------- /lib/tga/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/tga/rules.mk -------------------------------------------------------------------------------- /lib/tga/tga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/tga/tga.c -------------------------------------------------------------------------------- /lib/zlib_inflate/adler32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/adler32.c -------------------------------------------------------------------------------- /lib/zlib_inflate/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/crc32.c -------------------------------------------------------------------------------- /lib/zlib_inflate/crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/crc32.h -------------------------------------------------------------------------------- /lib/zlib_inflate/decompress.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/decompress.c -------------------------------------------------------------------------------- /lib/zlib_inflate/decompress.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/decompress.h -------------------------------------------------------------------------------- /lib/zlib_inflate/inffast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inffast.c -------------------------------------------------------------------------------- /lib/zlib_inflate/inffast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inffast.h -------------------------------------------------------------------------------- /lib/zlib_inflate/inffixed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inffixed.h -------------------------------------------------------------------------------- /lib/zlib_inflate/inflate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inflate.c -------------------------------------------------------------------------------- /lib/zlib_inflate/inflate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inflate.h -------------------------------------------------------------------------------- /lib/zlib_inflate/inftrees.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inftrees.c -------------------------------------------------------------------------------- /lib/zlib_inflate/inftrees.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/inftrees.h -------------------------------------------------------------------------------- /lib/zlib_inflate/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/rules.mk -------------------------------------------------------------------------------- /lib/zlib_inflate/zconf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/zconf.h -------------------------------------------------------------------------------- /lib/zlib_inflate/zlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/zlib.h -------------------------------------------------------------------------------- /lib/zlib_inflate/zutil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/zutil.c -------------------------------------------------------------------------------- /lib/zlib_inflate/zutil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/lib/zlib_inflate/zutil.h -------------------------------------------------------------------------------- /make/build.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/make/build.mk -------------------------------------------------------------------------------- /make/macros.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/make/macros.mk -------------------------------------------------------------------------------- /make/module.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/make/module.mk -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/makefile -------------------------------------------------------------------------------- /platform/apq8084/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/apq8084/acpuclock.c -------------------------------------------------------------------------------- /platform/apq8084/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/apq8084/gpio.c -------------------------------------------------------------------------------- /platform/apq8084/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/apq8084/platform.c -------------------------------------------------------------------------------- /platform/apq8084/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/apq8084/rules.mk -------------------------------------------------------------------------------- /platform/armemu/blkdev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/blkdev.c -------------------------------------------------------------------------------- /platform/armemu/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/debug.c -------------------------------------------------------------------------------- /platform/armemu/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/display.c -------------------------------------------------------------------------------- /platform/armemu/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/interrupts.c -------------------------------------------------------------------------------- /platform/armemu/net.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/net.c -------------------------------------------------------------------------------- /platform/armemu/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/platform.c -------------------------------------------------------------------------------- /platform/armemu/platform_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/platform_p.h -------------------------------------------------------------------------------- /platform/armemu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/rules.mk -------------------------------------------------------------------------------- /platform/armemu/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/armemu/timer.c -------------------------------------------------------------------------------- /platform/at91sam7/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/README -------------------------------------------------------------------------------- /platform/at91sam7/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/debug.c -------------------------------------------------------------------------------- /platform/at91sam7/emac_dev.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/emac_dev.c -------------------------------------------------------------------------------- /platform/at91sam7/mkboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/mkboard.py -------------------------------------------------------------------------------- /platform/at91sam7/mux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/mux.c -------------------------------------------------------------------------------- /platform/at91sam7/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/platform.c -------------------------------------------------------------------------------- /platform/at91sam7/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/rules.mk -------------------------------------------------------------------------------- /platform/at91sam7/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/at91sam7/timer.c -------------------------------------------------------------------------------- /platform/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/debug.c -------------------------------------------------------------------------------- /platform/fsm9010/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9010/acpuclock.c -------------------------------------------------------------------------------- /platform/fsm9010/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9010/gpio.c -------------------------------------------------------------------------------- /platform/fsm9010/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9010/platform.c -------------------------------------------------------------------------------- /platform/fsm9010/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9010/rules.mk -------------------------------------------------------------------------------- /platform/fsm9900/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9900/acpuclock.c -------------------------------------------------------------------------------- /platform/fsm9900/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9900/gpio.c -------------------------------------------------------------------------------- /platform/fsm9900/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9900/platform.c -------------------------------------------------------------------------------- /platform/fsm9900/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/fsm9900/rules.mk -------------------------------------------------------------------------------- /platform/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/init.c -------------------------------------------------------------------------------- /platform/integrator/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/integrator/debug.c -------------------------------------------------------------------------------- /platform/integrator/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/integrator/rules.mk -------------------------------------------------------------------------------- /platform/integrator/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/integrator/timer.c -------------------------------------------------------------------------------- /platform/mdm9607/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9607/acpuclock.c -------------------------------------------------------------------------------- /platform/mdm9607/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9607/gpio.c -------------------------------------------------------------------------------- /platform/mdm9607/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9607/platform.c -------------------------------------------------------------------------------- /platform/mdm9607/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9607/rules.mk -------------------------------------------------------------------------------- /platform/mdm9640/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9640/acpuclock.c -------------------------------------------------------------------------------- /platform/mdm9640/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9640/gpio.c -------------------------------------------------------------------------------- /platform/mdm9640/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9640/platform.c -------------------------------------------------------------------------------- /platform/mdm9640/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9640/rules.mk -------------------------------------------------------------------------------- /platform/mdm9x15/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x15/acpuclock.c -------------------------------------------------------------------------------- /platform/mdm9x15/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x15/gpio.c -------------------------------------------------------------------------------- /platform/mdm9x15/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x15/platform.c -------------------------------------------------------------------------------- /platform/mdm9x15/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x15/rules.mk -------------------------------------------------------------------------------- /platform/mdm9x25/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x25/acpuclock.c -------------------------------------------------------------------------------- /platform/mdm9x25/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x25/gpio.c -------------------------------------------------------------------------------- /platform/mdm9x25/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x25/platform.c -------------------------------------------------------------------------------- /platform/mdm9x25/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x25/rules.mk -------------------------------------------------------------------------------- /platform/mdm9x35/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x35/acpuclock.c -------------------------------------------------------------------------------- /platform/mdm9x35/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x35/gpio.c -------------------------------------------------------------------------------- /platform/mdm9x35/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x35/platform.c -------------------------------------------------------------------------------- /platform/mdm9x35/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/mdm9x35/rules.mk -------------------------------------------------------------------------------- /platform/msm7k/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7k/acpuclock.c -------------------------------------------------------------------------------- /platform/msm7k/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7k/gpio.c -------------------------------------------------------------------------------- /platform/msm7k/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7k/interrupts.c -------------------------------------------------------------------------------- /platform/msm7k/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7k/panel.c -------------------------------------------------------------------------------- /platform/msm7k/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7k/platform.c -------------------------------------------------------------------------------- /platform/msm7k/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7k/rules.mk -------------------------------------------------------------------------------- /platform/msm7x27a/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x27a/acpuclock.c -------------------------------------------------------------------------------- /platform/msm7x27a/arch_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x27a/arch_init.S -------------------------------------------------------------------------------- /platform/msm7x27a/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x27a/gpio.c -------------------------------------------------------------------------------- /platform/msm7x27a/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x27a/panel.c -------------------------------------------------------------------------------- /platform/msm7x27a/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x27a/platform.c -------------------------------------------------------------------------------- /platform/msm7x27a/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x27a/rules.mk -------------------------------------------------------------------------------- /platform/msm7x30/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/acpuclock.c -------------------------------------------------------------------------------- /platform/msm7x30/arch_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/arch_init.S -------------------------------------------------------------------------------- /platform/msm7x30/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/gpio.c -------------------------------------------------------------------------------- /platform/msm7x30/gpio_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/gpio_hw.h -------------------------------------------------------------------------------- /platform/msm7x30/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/interrupts.c -------------------------------------------------------------------------------- /platform/msm7x30/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/panel.c -------------------------------------------------------------------------------- /platform/msm7x30/panel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/panel.h -------------------------------------------------------------------------------- /platform/msm7x30/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/platform.c -------------------------------------------------------------------------------- /platform/msm7x30/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm7x30/rules.mk -------------------------------------------------------------------------------- /platform/msm8226/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8226/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8226/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8226/gpio.c -------------------------------------------------------------------------------- /platform/msm8226/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8226/platform.c -------------------------------------------------------------------------------- /platform/msm8226/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8226/rules.mk -------------------------------------------------------------------------------- /platform/msm8610/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8610/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8610/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8610/gpio.c -------------------------------------------------------------------------------- /platform/msm8610/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8610/platform.c -------------------------------------------------------------------------------- /platform/msm8610/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8610/rules.mk -------------------------------------------------------------------------------- /platform/msm8909/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8909/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8909/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8909/gpio.c -------------------------------------------------------------------------------- /platform/msm8909/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8909/platform.c -------------------------------------------------------------------------------- /platform/msm8909/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8909/rules.mk -------------------------------------------------------------------------------- /platform/msm8916/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8916/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8916/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8916/gpio.c -------------------------------------------------------------------------------- /platform/msm8916/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8916/platform.c -------------------------------------------------------------------------------- /platform/msm8916/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8916/rules.mk -------------------------------------------------------------------------------- /platform/msm8952/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8952/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8952/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8952/gpio.c -------------------------------------------------------------------------------- /platform/msm8952/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8952/platform.c -------------------------------------------------------------------------------- /platform/msm8952/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8952/rules.mk -------------------------------------------------------------------------------- /platform/msm8960/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8960/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8960/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8960/clock.c -------------------------------------------------------------------------------- /platform/msm8960/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8960/gpio.c -------------------------------------------------------------------------------- /platform/msm8960/hdmi_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8960/hdmi_core.c -------------------------------------------------------------------------------- /platform/msm8960/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8960/platform.c -------------------------------------------------------------------------------- /platform/msm8960/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8960/rules.mk -------------------------------------------------------------------------------- /platform/msm8974/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8974/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8974/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8974/gpio.c -------------------------------------------------------------------------------- /platform/msm8974/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8974/platform.c -------------------------------------------------------------------------------- /platform/msm8974/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8974/rules.mk -------------------------------------------------------------------------------- /platform/msm8994/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8994/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8994/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8994/gpio.c -------------------------------------------------------------------------------- /platform/msm8994/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8994/platform.c -------------------------------------------------------------------------------- /platform/msm8994/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8994/rules.mk -------------------------------------------------------------------------------- /platform/msm8996/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8996/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8996/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8996/gpio.c -------------------------------------------------------------------------------- /platform/msm8996/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8996/platform.c -------------------------------------------------------------------------------- /platform/msm8996/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8996/rules.mk -------------------------------------------------------------------------------- /platform/msm8x60/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/acpuclock.c -------------------------------------------------------------------------------- /platform/msm8x60/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/gpio.c -------------------------------------------------------------------------------- /platform/msm8x60/hdmi_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/hdmi_core.c -------------------------------------------------------------------------------- /platform/msm8x60/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/panel.c -------------------------------------------------------------------------------- /platform/msm8x60/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/platform.c -------------------------------------------------------------------------------- /platform/msm8x60/pmic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/pmic.c -------------------------------------------------------------------------------- /platform/msm8x60/pmic_pwm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/pmic_pwm.c -------------------------------------------------------------------------------- /platform/msm8x60/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/rules.mk -------------------------------------------------------------------------------- /platform/msm8x60/scm-io.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm8x60/scm-io.c -------------------------------------------------------------------------------- /platform/msm_shared/adm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/adm.c -------------------------------------------------------------------------------- /platform/msm_shared/adm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/adm.h -------------------------------------------------------------------------------- /platform/msm_shared/bam.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/bam.c -------------------------------------------------------------------------------- /platform/msm_shared/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/board.c -------------------------------------------------------------------------------- /platform/msm_shared/clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/clock.c -------------------------------------------------------------------------------- /platform/msm_shared/crc32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/crc32.c -------------------------------------------------------------------------------- /platform/msm_shared/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/debug.c -------------------------------------------------------------------------------- /platform/msm_shared/display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/display.c -------------------------------------------------------------------------------- /platform/msm_shared/dme.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/dme.c -------------------------------------------------------------------------------- /platform/msm_shared/dmov.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/dmov.h -------------------------------------------------------------------------------- /platform/msm_shared/edp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/edp.c -------------------------------------------------------------------------------- /platform/msm_shared/edp_aux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/edp_aux.c -------------------------------------------------------------------------------- /platform/msm_shared/edp_phy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/edp_phy.c -------------------------------------------------------------------------------- /platform/msm_shared/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/gpio.c -------------------------------------------------------------------------------- /platform/msm_shared/hsusb.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/hsusb.c -------------------------------------------------------------------------------- /platform/msm_shared/hsusb.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/hsusb.h -------------------------------------------------------------------------------- /platform/msm_shared/i2c_qup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/i2c_qup.c -------------------------------------------------------------------------------- /platform/msm_shared/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/jtag.c -------------------------------------------------------------------------------- /platform/msm_shared/lcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/lcdc.c -------------------------------------------------------------------------------- /platform/msm_shared/lvds.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/lvds.c -------------------------------------------------------------------------------- /platform/msm_shared/mddi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/mddi.c -------------------------------------------------------------------------------- /platform/msm_shared/mddi_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/mddi_hw.h -------------------------------------------------------------------------------- /platform/msm_shared/mdp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/mdp3.c -------------------------------------------------------------------------------- /platform/msm_shared/mdp4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/mdp4.c -------------------------------------------------------------------------------- /platform/msm_shared/mdp5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/mdp5.c -------------------------------------------------------------------------------- /platform/msm_shared/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/mmc.c -------------------------------------------------------------------------------- /platform/msm_shared/nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/nand.c -------------------------------------------------------------------------------- /platform/msm_shared/qgic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/qgic.c -------------------------------------------------------------------------------- /platform/msm_shared/qgic_v3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/qgic_v3.c -------------------------------------------------------------------------------- /platform/msm_shared/qpic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/qpic.c -------------------------------------------------------------------------------- /platform/msm_shared/qtimer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/qtimer.c -------------------------------------------------------------------------------- /platform/msm_shared/reboot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/reboot.c -------------------------------------------------------------------------------- /platform/msm_shared/reboot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/reboot.h -------------------------------------------------------------------------------- /platform/msm_shared/rpm-ipc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/rpm-ipc.c -------------------------------------------------------------------------------- /platform/msm_shared/rpm-smd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/rpm-smd.c -------------------------------------------------------------------------------- /platform/msm_shared/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/rules.mk -------------------------------------------------------------------------------- /platform/msm_shared/scm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/scm.c -------------------------------------------------------------------------------- /platform/msm_shared/sdhci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/sdhci.c -------------------------------------------------------------------------------- /platform/msm_shared/smd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/smd.c -------------------------------------------------------------------------------- /platform/msm_shared/smem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/smem.c -------------------------------------------------------------------------------- /platform/msm_shared/smem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/smem.h -------------------------------------------------------------------------------- /platform/msm_shared/spi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/spi.c -------------------------------------------------------------------------------- /platform/msm_shared/spmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/spmi.c -------------------------------------------------------------------------------- /platform/msm_shared/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/timer.c -------------------------------------------------------------------------------- /platform/msm_shared/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/uart.c -------------------------------------------------------------------------------- /platform/msm_shared/uart_dm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/uart_dm.c -------------------------------------------------------------------------------- /platform/msm_shared/ucs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/ucs.c -------------------------------------------------------------------------------- /platform/msm_shared/ufs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/ufs.c -------------------------------------------------------------------------------- /platform/msm_shared/ufs_hci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/ufs_hci.c -------------------------------------------------------------------------------- /platform/msm_shared/uic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/uic.c -------------------------------------------------------------------------------- /platform/msm_shared/utp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/utp.c -------------------------------------------------------------------------------- /platform/msm_shared/wdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msm_shared/wdog.c -------------------------------------------------------------------------------- /platform/msmtitanium/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/msmtitanium/gpio.c -------------------------------------------------------------------------------- /platform/omap3/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/debug.c -------------------------------------------------------------------------------- /platform/omap3/i2c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/i2c.c -------------------------------------------------------------------------------- /platform/omap3/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/platform.c -------------------------------------------------------------------------------- /platform/omap3/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/rules.mk -------------------------------------------------------------------------------- /platform/omap3/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/timer.c -------------------------------------------------------------------------------- /platform/omap3/uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/uart.c -------------------------------------------------------------------------------- /platform/omap3/usbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap3/usbc.c -------------------------------------------------------------------------------- /platform/omap5912/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap5912/debug.c -------------------------------------------------------------------------------- /platform/omap5912/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap5912/rules.mk -------------------------------------------------------------------------------- /platform/omap5912/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/omap5912/timer.c -------------------------------------------------------------------------------- /platform/pc/console.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/console.c -------------------------------------------------------------------------------- /platform/pc/debug.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/debug.c -------------------------------------------------------------------------------- /platform/pc/interrupts.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/interrupts.c -------------------------------------------------------------------------------- /platform/pc/keyboard.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/keyboard.c -------------------------------------------------------------------------------- /platform/pc/pci.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/pci.c -------------------------------------------------------------------------------- /platform/pc/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/platform.c -------------------------------------------------------------------------------- /platform/pc/platform_p.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/platform_p.h -------------------------------------------------------------------------------- /platform/pc/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/rules.mk -------------------------------------------------------------------------------- /platform/pc/timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/pc/timer.c -------------------------------------------------------------------------------- /platform/qsd8650a/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8650a/gpio.c -------------------------------------------------------------------------------- /platform/qsd8650a/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8650a/rules.mk -------------------------------------------------------------------------------- /platform/qsd8k/acpuclock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/acpuclock.c -------------------------------------------------------------------------------- /platform/qsd8k/arch_init.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/arch_init.S -------------------------------------------------------------------------------- /platform/qsd8k/gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/gpio.c -------------------------------------------------------------------------------- /platform/qsd8k/gpio_hw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/gpio_hw.h -------------------------------------------------------------------------------- /platform/qsd8k/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/panel.c -------------------------------------------------------------------------------- /platform/qsd8k/platform.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/platform.c -------------------------------------------------------------------------------- /platform/qsd8k/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/qsd8k/rules.mk -------------------------------------------------------------------------------- /platform/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/platform/rules.mk -------------------------------------------------------------------------------- /project/aboot-surf7k.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/aboot-surf7k.mk -------------------------------------------------------------------------------- /project/aboot-surf8k.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/aboot-surf8k.mk -------------------------------------------------------------------------------- /project/apq8064.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/apq8064.mk -------------------------------------------------------------------------------- /project/apq8084.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/apq8084.mk -------------------------------------------------------------------------------- /project/armemu-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/armemu-test.mk -------------------------------------------------------------------------------- /project/beagle-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/beagle-test.mk -------------------------------------------------------------------------------- /project/fsm9010.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/fsm9010.mk -------------------------------------------------------------------------------- /project/fsm9900.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/fsm9900.mk -------------------------------------------------------------------------------- /project/mdm9607.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/mdm9607.mk -------------------------------------------------------------------------------- /project/mdm9615.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/mdm9615.mk -------------------------------------------------------------------------------- /project/mdm9625.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/mdm9625.mk -------------------------------------------------------------------------------- /project/mdm9635.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/mdm9635.mk -------------------------------------------------------------------------------- /project/mdm9640.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/mdm9640.mk -------------------------------------------------------------------------------- /project/msm7627_6x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm7627_6x.mk -------------------------------------------------------------------------------- /project/msm7627_surf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm7627_surf.mk -------------------------------------------------------------------------------- /project/msm7627a.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm7627a.mk -------------------------------------------------------------------------------- /project/msm7630_fusion.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm7630_fusion.mk -------------------------------------------------------------------------------- /project/msm7630_surf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm7630_surf.mk -------------------------------------------------------------------------------- /project/msm8226.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8226.mk -------------------------------------------------------------------------------- /project/msm8610.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8610.mk -------------------------------------------------------------------------------- /project/msm8660_surf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8660_surf.mk -------------------------------------------------------------------------------- /project/msm8909.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8909.mk -------------------------------------------------------------------------------- /project/msm8916.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8916.mk -------------------------------------------------------------------------------- /project/msm8952.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8952.mk -------------------------------------------------------------------------------- /project/msm8960.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8960.mk -------------------------------------------------------------------------------- /project/msm8974.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8974.mk -------------------------------------------------------------------------------- /project/msm8994.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8994.mk -------------------------------------------------------------------------------- /project/msm8996.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msm8996.mk -------------------------------------------------------------------------------- /project/msmtitanium.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/msmtitanium.mk -------------------------------------------------------------------------------- /project/osk5912-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/osk5912-test.mk -------------------------------------------------------------------------------- /project/pc-x86-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/pc-x86-test.mk -------------------------------------------------------------------------------- /project/qemu-arm-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/qemu-arm-test.mk -------------------------------------------------------------------------------- /project/qsd8250_ffa.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/qsd8250_ffa.mk -------------------------------------------------------------------------------- /project/qsd8250_surf.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/qsd8250_surf.mk -------------------------------------------------------------------------------- /project/qsd8650a_st1x.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/qsd8650a_st1x.mk -------------------------------------------------------------------------------- /project/sam7ex256-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/sam7ex256-test.mk -------------------------------------------------------------------------------- /project/surf-test.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/project/surf-test.mk -------------------------------------------------------------------------------- /scripts/aboot_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/aboot_test.py -------------------------------------------------------------------------------- /scripts/attach.cmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/attach.cmm -------------------------------------------------------------------------------- /scripts/buildall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/buildall -------------------------------------------------------------------------------- /scripts/config_a11.cmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/config_a11.cmm -------------------------------------------------------------------------------- /scripts/do-armemu-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/do-armemu-test -------------------------------------------------------------------------------- /scripts/do-beagle-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/do-beagle-test -------------------------------------------------------------------------------- /scripts/do-osk5912-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/do-osk5912-test -------------------------------------------------------------------------------- /scripts/do-sam7ex256-test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/do-sam7ex256-test -------------------------------------------------------------------------------- /scripts/lk.cmm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/lk.cmm -------------------------------------------------------------------------------- /scripts/tagit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/scripts/tagit -------------------------------------------------------------------------------- /target/apq8084/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/apq8084/init.c -------------------------------------------------------------------------------- /target/apq8084/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/apq8084/meminfo.c -------------------------------------------------------------------------------- /target/apq8084/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/apq8084/oem_panel.c -------------------------------------------------------------------------------- /target/apq8084/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/apq8084/rules.mk -------------------------------------------------------------------------------- /target/armemu/armemu.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/armemu/armemu.conf -------------------------------------------------------------------------------- /target/armemu/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/armemu/rules.mk -------------------------------------------------------------------------------- /target/beagle/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/beagle/rules.mk -------------------------------------------------------------------------------- /target/fsm9010/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/fsm9010/init.c -------------------------------------------------------------------------------- /target/fsm9010/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/fsm9010/meminfo.c -------------------------------------------------------------------------------- /target/fsm9010/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/fsm9010/rules.mk -------------------------------------------------------------------------------- /target/fsm9900/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/fsm9900/init.c -------------------------------------------------------------------------------- /target/fsm9900/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/fsm9900/meminfo.c -------------------------------------------------------------------------------- /target/fsm9900/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/fsm9900/rules.mk -------------------------------------------------------------------------------- /target/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/init.c -------------------------------------------------------------------------------- /target/mdm9607/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9607/init.c -------------------------------------------------------------------------------- /target/mdm9607/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9607/keypad.c -------------------------------------------------------------------------------- /target/mdm9607/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9607/meminfo.c -------------------------------------------------------------------------------- /target/mdm9607/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9607/regulator.c -------------------------------------------------------------------------------- /target/mdm9607/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9607/rules.mk -------------------------------------------------------------------------------- /target/mdm9615/atags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9615/atags.c -------------------------------------------------------------------------------- /target/mdm9615/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9615/init.c -------------------------------------------------------------------------------- /target/mdm9615/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9615/keypad.c -------------------------------------------------------------------------------- /target/mdm9615/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9615/rules.mk -------------------------------------------------------------------------------- /target/mdm9625/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9625/init.c -------------------------------------------------------------------------------- /target/mdm9625/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9625/keypad.c -------------------------------------------------------------------------------- /target/mdm9625/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9625/meminfo.c -------------------------------------------------------------------------------- /target/mdm9625/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9625/rules.mk -------------------------------------------------------------------------------- /target/mdm9635/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9635/init.c -------------------------------------------------------------------------------- /target/mdm9635/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9635/keypad.c -------------------------------------------------------------------------------- /target/mdm9635/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9635/meminfo.c -------------------------------------------------------------------------------- /target/mdm9635/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9635/rules.mk -------------------------------------------------------------------------------- /target/mdm9640/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9640/init.c -------------------------------------------------------------------------------- /target/mdm9640/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9640/keypad.c -------------------------------------------------------------------------------- /target/mdm9640/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9640/meminfo.c -------------------------------------------------------------------------------- /target/mdm9640/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/mdm9640/rules.mk -------------------------------------------------------------------------------- /target/msm7627_surf/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm7627_surf/init.c -------------------------------------------------------------------------------- /target/msm7627a/atags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm7627a/atags.c -------------------------------------------------------------------------------- /target/msm7627a/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm7627a/init.c -------------------------------------------------------------------------------- /target/msm7627a/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm7627a/keypad.c -------------------------------------------------------------------------------- /target/msm7627a/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm7627a/rules.mk -------------------------------------------------------------------------------- /target/msm7630_surf/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm7630_surf/init.c -------------------------------------------------------------------------------- /target/msm8226/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8226/init.c -------------------------------------------------------------------------------- /target/msm8226/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8226/meminfo.c -------------------------------------------------------------------------------- /target/msm8226/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8226/oem_panel.c -------------------------------------------------------------------------------- /target/msm8226/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8226/rules.mk -------------------------------------------------------------------------------- /target/msm8610/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8610/init.c -------------------------------------------------------------------------------- /target/msm8610/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8610/meminfo.c -------------------------------------------------------------------------------- /target/msm8610/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8610/oem_panel.c -------------------------------------------------------------------------------- /target/msm8610/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8610/rules.mk -------------------------------------------------------------------------------- /target/msm8660_surf/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8660_surf/init.c -------------------------------------------------------------------------------- /target/msm8909/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8909/init.c -------------------------------------------------------------------------------- /target/msm8909/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8909/meminfo.c -------------------------------------------------------------------------------- /target/msm8909/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8909/oem_panel.c -------------------------------------------------------------------------------- /target/msm8909/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8909/regulator.c -------------------------------------------------------------------------------- /target/msm8909/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8909/rules.mk -------------------------------------------------------------------------------- /target/msm8916/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8916/init.c -------------------------------------------------------------------------------- /target/msm8916/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8916/meminfo.c -------------------------------------------------------------------------------- /target/msm8916/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8916/oem_panel.c -------------------------------------------------------------------------------- /target/msm8916/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8916/rules.mk -------------------------------------------------------------------------------- /target/msm8952/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8952/init.c -------------------------------------------------------------------------------- /target/msm8952/mdtp_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8952/mdtp_defs.c -------------------------------------------------------------------------------- /target/msm8952/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8952/meminfo.c -------------------------------------------------------------------------------- /target/msm8952/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8952/oem_panel.c -------------------------------------------------------------------------------- /target/msm8952/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8952/regulator.c -------------------------------------------------------------------------------- /target/msm8952/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8952/rules.mk -------------------------------------------------------------------------------- /target/msm8960/atags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8960/atags.c -------------------------------------------------------------------------------- /target/msm8960/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8960/init.c -------------------------------------------------------------------------------- /target/msm8960/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8960/keypad.c -------------------------------------------------------------------------------- /target/msm8960/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8960/rules.mk -------------------------------------------------------------------------------- /target/msm8974/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8974/init.c -------------------------------------------------------------------------------- /target/msm8974/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8974/meminfo.c -------------------------------------------------------------------------------- /target/msm8974/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8974/oem_panel.c -------------------------------------------------------------------------------- /target/msm8974/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8974/rules.mk -------------------------------------------------------------------------------- /target/msm8994/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8994/init.c -------------------------------------------------------------------------------- /target/msm8994/mdtp_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8994/mdtp_defs.c -------------------------------------------------------------------------------- /target/msm8994/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8994/meminfo.c -------------------------------------------------------------------------------- /target/msm8994/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8994/oem_panel.c -------------------------------------------------------------------------------- /target/msm8994/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8994/regulator.c -------------------------------------------------------------------------------- /target/msm8994/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8994/rules.mk -------------------------------------------------------------------------------- /target/msm8996/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8996/init.c -------------------------------------------------------------------------------- /target/msm8996/mdtp_defs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8996/mdtp_defs.c -------------------------------------------------------------------------------- /target/msm8996/meminfo.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8996/meminfo.c -------------------------------------------------------------------------------- /target/msm8996/oem_panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8996/oem_panel.c -------------------------------------------------------------------------------- /target/msm8996/regulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8996/regulator.c -------------------------------------------------------------------------------- /target/msm8996/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msm8996/rules.mk -------------------------------------------------------------------------------- /target/msmtitanium/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/msmtitanium/init.c -------------------------------------------------------------------------------- /target/osk5912/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/osk5912/init.c -------------------------------------------------------------------------------- /target/osk5912/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/osk5912/rules.mk -------------------------------------------------------------------------------- /target/pc-x86/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/pc-x86/rules.mk -------------------------------------------------------------------------------- /target/qemu-arm/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/qemu-arm/rules.mk -------------------------------------------------------------------------------- /target/qsd8250_ffa/atags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/qsd8250_ffa/atags.c -------------------------------------------------------------------------------- /target/qsd8250_ffa/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/qsd8250_ffa/init.c -------------------------------------------------------------------------------- /target/qsd8250_surf/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/qsd8250_surf/init.c -------------------------------------------------------------------------------- /target/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/rules.mk -------------------------------------------------------------------------------- /target/sam7ex256/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/sam7ex256/README -------------------------------------------------------------------------------- /target/sam7ex256/mkmux.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/sam7ex256/mkmux.sh -------------------------------------------------------------------------------- /target/sam7ex256/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/sam7ex256/rules.mk -------------------------------------------------------------------------------- /target/surf-msm7k/atags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-msm7k/atags.c -------------------------------------------------------------------------------- /target/surf-msm7k/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-msm7k/init.c -------------------------------------------------------------------------------- /target/surf-msm7k/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-msm7k/keypad.c -------------------------------------------------------------------------------- /target/surf-msm7k/panel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-msm7k/panel.c -------------------------------------------------------------------------------- /target/surf-msm7k/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-msm7k/rules.mk -------------------------------------------------------------------------------- /target/surf-qsd8k/atags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-qsd8k/atags.c -------------------------------------------------------------------------------- /target/surf-qsd8k/init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-qsd8k/init.c -------------------------------------------------------------------------------- /target/surf-qsd8k/keypad.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-qsd8k/keypad.c -------------------------------------------------------------------------------- /target/surf-qsd8k/rules.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/surf-qsd8k/rules.mk -------------------------------------------------------------------------------- /target/target_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Biktorgj/quectel_lk/HEAD/target/target_display.c --------------------------------------------------------------------------------