├── Makefile ├── boot0 ├── Boot0.s ├── Boot0_C_part.c ├── Boot0_head.c ├── boot0_i.h ├── boot0_i.inc ├── boot0_misc.h ├── config │ └── config.sct ├── drv │ ├── boot0_drv.h │ ├── boot0_drv_i.h │ ├── debug_uart │ │ ├── debug_UART.c │ │ ├── debug_UART.h │ │ ├── format_transformed.c │ │ ├── format_transformed.h │ │ ├── uart_hd.c │ │ └── uart_hd.h │ ├── init_dram │ │ ├── dram_i.h │ │ ├── dram_init.c │ │ ├── dram_para.h │ │ └── init_DRAM.h │ └── jtag │ │ ├── jtag.c │ │ └── jtag.h ├── lib │ ├── check_sum │ │ ├── check.c │ │ └── check.h │ ├── func_in_asm │ │ ├── func_in_asm.h │ │ └── func_in_asm.s │ ├── lib.h │ ├── lib_i.h │ ├── misc │ │ ├── misc.c │ │ └── misc.h │ └── service │ │ ├── pin_service.c │ │ ├── service.c │ │ └── service.h ├── load_Boot1_from_nand │ ├── load_Boot1_from_nand.c │ ├── load_Boot1_from_nand.h │ ├── load_Boot1_from_nand_i.h │ ├── nand │ │ ├── adv_NF_func.h │ │ ├── adv_NF_read.c │ │ ├── basic_nf_func.h │ │ └── basic_nf_read.c │ ├── nand_for_boot0 │ │ ├── bsp_nand.h │ │ ├── nand_for_boot0.c │ │ ├── nand_for_boot0.h │ │ └── osal │ │ │ └── nand_osal_boot0.c │ ├── nfc_for_boot0 │ │ ├── include │ │ │ ├── nand_drv_cfg.h │ │ │ ├── nand_format.h │ │ │ ├── nand_logic.h │ │ │ ├── nand_physic.h │ │ │ ├── nand_scan.h │ │ │ ├── nand_simple.h │ │ │ ├── nand_type.h │ │ │ └── nfc.h │ │ └── src │ │ │ ├── nand_scan_for_boot.c │ │ │ ├── nand_simple_for_boot0.c │ │ │ └── nfc_for_boot0.c │ └── osal │ │ └── nand_osal.h ├── load_boot1_from_sdmmc │ ├── bsp_mmc_for_boot │ │ ├── bsp_sdc_for_boot.h │ │ ├── mmc.c │ │ ├── mmc.h │ │ ├── mmc_bsp.c │ │ ├── mmc_def.h │ │ ├── mmc_op.c │ │ └── mmc_op.h │ ├── load_boot1_from_sdmmc.c │ └── load_boot1_from_sdmmc.h ├── make.cfg ├── make_nand ├── make_sdmmc ├── make_spinor ├── makefile ├── readme.txt └── sys_op │ ├── cache │ └── cache.s │ ├── mmu │ ├── mmu.c │ └── mmu_asm.s │ ├── sys_op.h │ └── sys_op_i.h ├── boot1 ├── apps │ ├── BootQC │ │ ├── 1625_QC │ │ │ ├── include │ │ │ │ └── aw1625_test.h │ │ │ ├── main.c │ │ │ └── test_private.h │ │ ├── Board │ │ │ ├── board.c │ │ │ └── board.h │ │ ├── BootMain.c │ │ ├── BootMain.h │ │ ├── BootMain_Debug.h │ │ ├── Common │ │ │ ├── common.h │ │ │ ├── common_res.h │ │ │ ├── libm │ │ │ │ ├── acos.c │ │ │ │ ├── acosf.c │ │ │ │ ├── asin.c │ │ │ │ ├── asinf.c │ │ │ │ ├── atan.c │ │ │ │ ├── atan2.c │ │ │ │ ├── atan2f.c │ │ │ │ ├── atanf.c │ │ │ │ ├── ceil.c │ │ │ │ ├── ceilf.c │ │ │ │ ├── copysign.c │ │ │ │ ├── copysignf.c │ │ │ │ ├── cos.c │ │ │ │ ├── cosf.c │ │ │ │ ├── cosh.c │ │ │ │ ├── coshf.c │ │ │ │ ├── e_rem_pio2.c │ │ │ │ ├── e_rem_pio2f.c │ │ │ │ ├── exp.c │ │ │ │ ├── expf.c │ │ │ │ ├── expm1.c │ │ │ │ ├── expm1f.c │ │ │ │ ├── fabs.c │ │ │ │ ├── fabsf.c │ │ │ │ ├── floor.c │ │ │ │ ├── floorf.c │ │ │ │ ├── fmod.c │ │ │ │ ├── fmodf.c │ │ │ │ ├── frexp.c │ │ │ │ ├── frexpf.c │ │ │ │ ├── hypot.c │ │ │ │ ├── hypotf.c │ │ │ │ ├── k_cos.c │ │ │ │ ├── k_cosf.c │ │ │ │ ├── k_rem_pio2.c │ │ │ │ ├── k_rem_pio2f.c │ │ │ │ ├── k_sin.c │ │ │ │ ├── k_sinf.c │ │ │ │ ├── k_tan.c │ │ │ │ ├── k_tanf.c │ │ │ │ ├── log.c │ │ │ │ ├── log10.c │ │ │ │ ├── log10f.c │ │ │ │ ├── logf.c │ │ │ │ ├── math.h │ │ │ │ ├── modf.c │ │ │ │ ├── modff.c │ │ │ │ ├── pow.c │ │ │ │ ├── powf.c │ │ │ │ ├── scalbn.c │ │ │ │ ├── scalbnf.c │ │ │ │ ├── sin.c │ │ │ │ ├── sinf.c │ │ │ │ ├── sinh.c │ │ │ │ ├── sinhf.c │ │ │ │ ├── sqrt.c │ │ │ │ ├── sqrtf.c │ │ │ │ ├── tan.c │ │ │ │ ├── tanf.c │ │ │ │ ├── tanh.c │ │ │ │ └── tanhf.c │ │ │ ├── service │ │ │ │ ├── service.c │ │ │ │ ├── service.c.bak │ │ │ │ └── service.h │ │ │ ├── sfte │ │ │ │ ├── FontEngine.c │ │ │ │ ├── FontEngine.h │ │ │ │ ├── SFT.h │ │ │ │ ├── sfte.c │ │ │ │ └── sfte.h │ │ │ └── ui │ │ │ │ ├── display_interface │ │ │ │ ├── display_interface.c │ │ │ │ └── display_interface.h │ │ │ │ ├── format │ │ │ │ ├── format.c │ │ │ │ └── format.h │ │ │ │ ├── lcd_printf.c │ │ │ │ ├── time_count │ │ │ │ └── time_count.c │ │ │ │ ├── ui.c │ │ │ │ └── ui.h │ │ ├── config.lds │ │ ├── include.h │ │ ├── magic.c │ │ ├── make.cfg │ │ ├── makefile │ │ ├── part_info │ │ │ ├── part_info.c │ │ │ └── part_info.h │ │ └── usb_device │ │ │ ├── storage.c │ │ │ ├── usb_descriptor.c │ │ │ ├── usb_descriptor.h │ │ │ ├── usb_params.h │ │ │ ├── usb_register.h │ │ │ ├── usb_storage.c │ │ │ ├── usb_storage.h │ │ │ ├── usb_storage_init.c │ │ │ ├── usb_storage_init.h │ │ │ └── usb_storage_inline.c │ ├── Boot_Android │ │ ├── Board │ │ │ ├── Board.c │ │ │ ├── Board.h │ │ │ ├── fel_detect │ │ │ │ ├── fel_detect.c │ │ │ │ └── fel_detect.h │ │ │ └── power_ctrl │ │ │ │ ├── axp_i.h │ │ │ │ ├── power_ops_int.c │ │ │ │ └── power_ops_int.h │ │ ├── BootMain.c │ │ ├── BootMain.h │ │ ├── BootMain_Debug.h │ │ ├── BootOS │ │ │ ├── BootOS.c │ │ │ ├── BootOS.h │ │ │ ├── BootOS_i.h │ │ │ ├── boot_img.h │ │ │ ├── bootm.c │ │ │ └── setup.h │ │ ├── Common │ │ │ ├── Picture │ │ │ │ ├── picture.c │ │ │ │ └── picture.h │ │ │ ├── codec_led │ │ │ │ └── codec_led.c │ │ │ ├── common.h │ │ │ ├── common_res.h │ │ │ ├── script_patch │ │ │ │ ├── script.c │ │ │ │ └── script.h │ │ │ ├── service │ │ │ │ ├── service.c │ │ │ │ └── service.h │ │ │ ├── sprite_led.c │ │ │ └── ui │ │ │ │ ├── display_interface │ │ │ │ ├── display_interface.c │ │ │ │ └── display_interface.h │ │ │ │ ├── ui.c │ │ │ │ └── ui.h │ │ ├── card_sprite │ │ │ ├── ImgDecode │ │ │ │ ├── dec_img.c │ │ │ │ └── dec_img.h │ │ │ ├── card_sprite.c │ │ │ ├── card_sprite.h │ │ │ ├── card_sprite_i.h │ │ │ ├── card_sprite_res.h │ │ │ ├── check_sum │ │ │ │ ├── check.c │ │ │ │ ├── check_sum.h │ │ │ │ └── gen_check_sum.c │ │ │ ├── encrypt │ │ │ │ ├── encrypt.c │ │ │ │ ├── encrypt.h │ │ │ │ └── twofish │ │ │ │ │ ├── twofish.c │ │ │ │ │ ├── twofish.h │ │ │ │ │ ├── twofish_cfg.h │ │ │ │ │ ├── twofish_new.c │ │ │ │ │ └── twofish_new.h │ │ │ ├── file_op │ │ │ │ ├── file_op.c │ │ │ │ └── file_op.h │ │ │ ├── fileformat │ │ │ │ ├── imagefile.h │ │ │ │ └── snfile.h │ │ │ ├── imgencodedecode │ │ │ │ ├── encode.c │ │ │ │ └── encode.h │ │ │ ├── sparse │ │ │ │ ├── sparse.c │ │ │ │ ├── sparse.h │ │ │ │ └── sparse_format.h │ │ │ ├── uboot_env │ │ │ │ ├── env.c │ │ │ │ └── env.h │ │ │ └── update_data │ │ │ │ ├── card_sprite_flash │ │ │ │ ├── card_sprite_flash.c │ │ │ │ └── card_sprite_flash.h │ │ │ │ ├── update_data.c │ │ │ │ └── update_data.h │ │ ├── config.lds │ │ ├── include.h │ │ ├── magic.c │ │ ├── make.cfg │ │ ├── makefile │ │ ├── part_info │ │ │ ├── part_info.c │ │ │ └── part_info.h │ │ └── usb_device │ │ │ ├── storage.c │ │ │ ├── usb_descriptor.c │ │ │ ├── usb_descriptor.h │ │ │ ├── usb_params.h │ │ │ ├── usb_register.h │ │ │ ├── usb_storage.c │ │ │ ├── usb_storage.h │ │ │ ├── usb_storage_init.c │ │ │ ├── usb_storage_init.h │ │ │ └── usb_storage_inline.c │ ├── Boot_Burn │ │ ├── BootMain.c │ │ ├── BootMain.h │ │ ├── BootMain_Debug.h │ │ ├── config.lds │ │ ├── include.h │ │ ├── magic.c │ │ ├── make.cfg │ │ ├── makefile │ │ ├── part_info │ │ │ ├── part_info.c │ │ │ └── part_info.h │ │ ├── update_data │ │ │ ├── update_data.c │ │ │ └── update_data.h │ │ └── usb_device │ │ │ ├── storage.c │ │ │ ├── usb_descriptor.c │ │ │ ├── usb_descriptor.h │ │ │ ├── usb_params.h │ │ │ ├── usb_register.h │ │ │ ├── usb_storage.c │ │ │ ├── usb_storage.h │ │ │ ├── usb_storage_init.c │ │ │ ├── usb_storage_init.h │ │ │ └── usb_storage_inline.c │ └── Card_Android │ │ ├── CardMain.c │ │ ├── CardMain.h │ │ ├── CardMain_Debug.h │ │ ├── Common │ │ ├── codec_led │ │ │ └── codec_led.c │ │ ├── common.h │ │ ├── common_res.h │ │ ├── script_patch │ │ │ ├── script.c │ │ │ └── script.h │ │ ├── sprite_led.c │ │ └── sprite_print.c │ │ ├── card_sprite │ │ ├── ImgDecode │ │ │ ├── dec_img.c │ │ │ ├── dec_img.h │ │ │ └── imagefile_new.h │ │ ├── card_sprite.c │ │ ├── card_sprite.h │ │ ├── card_sprite_i.h │ │ ├── card_sprite_res.h │ │ ├── check_sum │ │ │ ├── check.c │ │ │ ├── check_sum.h │ │ │ └── gen_check_sum.c │ │ ├── dynamic │ │ │ ├── dynamic.c │ │ │ └── dynamic.h │ │ ├── encrypt │ │ │ ├── encrypt.c │ │ │ ├── encrypt.h │ │ │ └── twofish │ │ │ │ ├── twofish.c │ │ │ │ ├── twofish.h │ │ │ │ ├── twofish_cfg.h │ │ │ │ ├── twofish_new.c │ │ │ │ └── twofish_new.h │ │ ├── file_op │ │ │ ├── file_op.c │ │ │ └── file_op.h │ │ ├── fileformat │ │ │ ├── imagefile.h │ │ │ └── snfile.h │ │ ├── format │ │ │ ├── FormatTool.c │ │ │ ├── FormatTool.h │ │ │ ├── FormatToolPrivate.h │ │ │ └── diskFormat.c │ │ ├── imgencodedecode │ │ │ ├── encode.c │ │ │ └── encode.h │ │ ├── sparse │ │ │ ├── sparse.c │ │ │ ├── sparse.h │ │ │ └── sparse_format.h │ │ ├── uboot_env │ │ │ ├── env.c │ │ │ └── env.h │ │ └── update_data │ │ │ ├── card_sprite_flash │ │ │ ├── card_sprite_flash.c │ │ │ └── card_sprite_flash.h │ │ │ ├── update_data.c │ │ │ └── update_data.h │ │ ├── config.lds │ │ ├── include.h │ │ ├── magic.c │ │ ├── make.cfg │ │ ├── makefile │ │ ├── part_info │ │ ├── part_info.c │ │ └── part_info.h │ │ └── usb_device │ │ ├── storage.c │ │ ├── usb_descriptor.c │ │ ├── usb_descriptor.h │ │ ├── usb_params.h │ │ ├── usb_register.h │ │ ├── usb_storage.c │ │ ├── usb_storage.h │ │ ├── usb_storage_init.c │ │ └── usb_storage_inline.c ├── core │ ├── arm_board │ │ ├── arm_section.c │ │ ├── arm_start.S │ │ ├── arm_swi.c │ │ └── arm_swi_o.S │ ├── config.lds │ ├── cpu │ │ └── arm_a8 │ │ │ ├── cache │ │ │ └── cache.S │ │ │ ├── cp15 │ │ │ └── cp15.c │ │ │ ├── cpu_private.h │ │ │ ├── int │ │ │ └── int.S │ │ │ └── mmu │ │ │ ├── mmu.c │ │ │ └── mmu_asm.S │ ├── drivers │ │ ├── clock │ │ │ ├── sw_clock.c │ │ │ └── sw_clock.h │ │ ├── dma │ │ │ ├── dma.c │ │ │ └── dma_i.h │ │ ├── gpio │ │ │ ├── pin_ops.c │ │ │ └── pin_service.c │ │ ├── iic │ │ │ ├── sw_iic.c │ │ │ └── sw_iic.h │ │ ├── intc │ │ │ └── int_service_entry.c │ │ ├── key │ │ │ ├── sw_key.c │ │ │ ├── sw_key.h │ │ │ └── sw_key_check.o │ │ ├── power │ │ │ └── axp_i.h │ │ ├── serial │ │ │ ├── format_transformed.c │ │ │ ├── format_transformed.h │ │ │ ├── serial.c │ │ │ ├── sw_uart.c │ │ │ └── sw_uart.h │ │ └── timer │ │ │ ├── sw_timer.c │ │ │ └── sw_timer.h │ ├── exception │ │ ├── exception.c │ │ └── exception.h │ ├── include │ │ ├── arm_base.h │ │ ├── arm_base │ │ │ ├── arm_cpu.h │ │ │ └── arm_section.h │ │ ├── eGon2_fs.h │ │ ├── eGon2_sys.h │ │ ├── include.h │ │ └── misc.h │ ├── jump_to │ │ ├── jump.c │ │ └── jump_s.S │ ├── kernel │ │ ├── elf_loader │ │ │ ├── driver_manager.c │ │ │ ├── elf_parser.c │ │ │ ├── elf_parser.h │ │ │ ├── elf_private.h │ │ │ └── mod_private.h │ │ ├── fs │ │ │ ├── eGon2_fs.c │ │ │ ├── eGon2_fs_i.h │ │ │ ├── fat │ │ │ │ ├── fat_dir.c │ │ │ │ ├── fat_in.c │ │ │ │ ├── fat_ioct.c │ │ │ │ ├── fat_misc.c │ │ │ │ ├── fat_mount.c │ │ │ │ ├── fat_open.c │ │ │ │ ├── fat_out.c │ │ │ │ ├── fat_priv.h │ │ │ │ ├── fat_seek.c │ │ │ │ └── fatfs.c │ │ │ ├── fs.h │ │ │ ├── fs_i.h │ │ │ ├── inode.h │ │ │ ├── part.h │ │ │ └── part │ │ │ │ ├── fspart.c │ │ │ │ └── fspart.h │ │ └── mems │ │ │ └── mem_alloc.c │ ├── make.cfg │ ├── make_nand │ ├── make_sdmmc │ ├── make_spinor │ ├── makefile │ ├── parameters │ │ ├── Boot1_head.c │ │ └── parameters.c │ ├── script │ │ ├── eGon2_dynamic.c │ │ ├── eGon2_script.c │ │ └── script_i.h │ ├── standby │ │ ├── clock_standby.c │ │ ├── dram_i.h │ │ ├── dram_standby.c │ │ ├── dram_standby_init.c │ │ ├── int_standby.c │ │ ├── power_ops.c │ │ ├── power_ops_standby.c │ │ ├── standby.c │ │ ├── standby.h │ │ ├── standby_s.S │ │ └── sw_key_check.c │ └── start │ │ ├── asm_start.S │ │ ├── basic_block_device.c │ │ ├── boot1_i.inc │ │ └── eGon2_start.c ├── driver │ ├── drv_de │ │ ├── config.lds │ │ ├── de_bsp │ │ │ ├── bsp_display.h │ │ │ ├── de │ │ │ │ ├── disp_clk.c │ │ │ │ ├── disp_clk.h │ │ │ │ ├── disp_combined.c │ │ │ │ ├── disp_combined.h │ │ │ │ ├── disp_de.c │ │ │ │ ├── disp_de.h │ │ │ │ ├── disp_display.c │ │ │ │ ├── disp_display.h │ │ │ │ ├── disp_display_i.h │ │ │ │ ├── disp_event.c │ │ │ │ ├── disp_event.h │ │ │ │ ├── disp_hdmi.c │ │ │ │ ├── disp_hdmi.h │ │ │ │ ├── disp_hwc.c │ │ │ │ ├── disp_hwc.h │ │ │ │ ├── disp_layer.c │ │ │ │ ├── disp_layer.h │ │ │ │ ├── disp_lcd.c │ │ │ │ ├── disp_lcd.h │ │ │ │ ├── disp_scaler.c │ │ │ │ ├── disp_scaler.h │ │ │ │ ├── disp_sprite.c │ │ │ │ ├── disp_sprite.h │ │ │ │ ├── disp_tv.c │ │ │ │ ├── disp_tv.h │ │ │ │ ├── disp_vga.c │ │ │ │ ├── disp_vga.h │ │ │ │ ├── disp_video.c │ │ │ │ ├── disp_video.h │ │ │ │ └── ebios │ │ │ │ │ ├── de_be.c │ │ │ │ │ ├── de_be.h │ │ │ │ │ ├── de_fe.c │ │ │ │ │ ├── de_fe.h │ │ │ │ │ ├── de_hwc.c │ │ │ │ │ ├── de_layer.c │ │ │ │ │ ├── de_lcdc.c │ │ │ │ │ ├── de_lcdc_i.h │ │ │ │ │ ├── de_tvec.c │ │ │ │ │ ├── de_tvec_i.h │ │ │ │ │ ├── ebios_de.h │ │ │ │ │ ├── ebios_lcdc_tve.h │ │ │ │ │ └── vga_std.c │ │ │ └── lcd │ │ │ │ ├── lcd0_panel_cfg.c │ │ │ │ ├── lcd0_panel_cfg_ipadmini.c.bak │ │ │ │ ├── lcd1_panel_cfg.c │ │ │ │ └── lcd_panel_cfg.h │ │ ├── drv_de.c │ │ ├── drv_de.h │ │ ├── magic.c │ │ ├── make.cfg │ │ ├── makefile │ │ └── osal │ │ │ ├── osal_clock.c │ │ │ ├── osal_de.c │ │ │ ├── osal_de.h │ │ │ └── osal_pin.c │ ├── drv_de_hdmi │ │ ├── config.lds │ │ ├── de_bsp │ │ │ ├── bsp_display.h │ │ │ ├── de │ │ │ │ ├── disp_clk.c │ │ │ │ ├── disp_clk.h │ │ │ │ ├── disp_combined.c │ │ │ │ ├── disp_combined.h │ │ │ │ ├── disp_de.c │ │ │ │ ├── disp_de.h │ │ │ │ ├── disp_display.c │ │ │ │ ├── disp_display.h │ │ │ │ ├── disp_display_i.h │ │ │ │ ├── disp_event.c │ │ │ │ ├── disp_event.h │ │ │ │ ├── disp_hdmi.c │ │ │ │ ├── disp_hdmi.h │ │ │ │ ├── disp_hwc.c │ │ │ │ ├── disp_hwc.h │ │ │ │ ├── disp_layer.c │ │ │ │ ├── disp_layer.h │ │ │ │ ├── disp_lcd.c │ │ │ │ ├── disp_lcd.h │ │ │ │ ├── disp_scaler.c │ │ │ │ ├── disp_scaler.h │ │ │ │ ├── disp_sprite.c │ │ │ │ ├── disp_sprite.h │ │ │ │ ├── disp_tv.c │ │ │ │ ├── disp_tv.h │ │ │ │ ├── disp_vga.c │ │ │ │ ├── disp_vga.h │ │ │ │ ├── disp_video.c │ │ │ │ ├── disp_video.h │ │ │ │ └── ebios │ │ │ │ │ ├── de_be.c │ │ │ │ │ ├── de_be.h │ │ │ │ │ ├── de_fe.c │ │ │ │ │ ├── de_fe.h │ │ │ │ │ ├── de_hwc.c │ │ │ │ │ ├── de_layer.c │ │ │ │ │ ├── de_lcdc.c │ │ │ │ │ ├── de_lcdc_i.h │ │ │ │ │ ├── de_tvec.c │ │ │ │ │ ├── de_tvec_i.h │ │ │ │ │ ├── ebios_de.h │ │ │ │ │ ├── ebios_lcdc_tve.h │ │ │ │ │ └── vga_std.c │ │ │ ├── hdmi │ │ │ │ ├── aw │ │ │ │ │ ├── hdmi_core.c │ │ │ │ │ ├── hdmi_core.h │ │ │ │ │ ├── hdmi_edid.c │ │ │ │ │ ├── hdmi_hal.c │ │ │ │ │ ├── hdmi_interface.c │ │ │ │ │ └── hdmi_interface.h │ │ │ │ └── hdmi_hal.h │ │ │ └── lcd │ │ │ │ ├── lcd0_panel_cfg.c │ │ │ │ ├── lcd0_panel_cfg_ipadmini.c.bak │ │ │ │ ├── lcd1_panel_cfg.c │ │ │ │ └── lcd_panel_cfg.h │ │ ├── drv_de.c │ │ ├── drv_de.drv │ │ ├── drv_de.h │ │ ├── magic.c │ │ ├── make.cfg │ │ ├── makefile │ │ └── osal │ │ │ ├── osal_clock.c │ │ │ ├── osal_de.c │ │ │ ├── osal_de.h │ │ │ └── osal_pin.c │ ├── drv_nand │ │ ├── bsp_nand.h │ │ ├── bsp_nfc_boot1_for_boot.lib │ │ ├── bsp_nfc_boot1_for_card.lib │ │ ├── nand_boot_operation │ │ │ ├── adv_NF_func.h │ │ │ ├── adv_NF_read.c │ │ │ ├── nand_boot0_write.c │ │ │ ├── nand_boot1_read.c │ │ │ ├── nand_boot1_write.c │ │ │ ├── nand_flash.h │ │ │ ├── nand_misc.c │ │ │ ├── nand_read_on_A1.c │ │ │ └── nand_write_on_A1.c │ │ ├── nand_for_boot1_boot │ │ │ ├── nand_for_boot1.c │ │ │ └── nand_for_boot1.h │ │ ├── nand_for_boot1_card │ │ │ ├── nand_for_boot1.c │ │ │ └── nand_for_boot1.h │ │ ├── osal-boot │ │ │ └── nand_osal_boot1.c │ │ └── osal-burn │ │ │ └── nand_osal_boot1.c │ ├── drv_sd │ │ ├── bsp_sdc_for_boot.h │ │ ├── mmc.c │ │ ├── mmc.h │ │ ├── mmc_bsp.c │ │ ├── mmc_def.h │ │ ├── mmc_op.c │ │ └── mmc_op.h │ ├── nand-lib │ │ ├── make.cfg │ │ ├── make_boot │ │ ├── make_card │ │ ├── nand_bsp_boot │ │ │ ├── osal │ │ │ │ └── nand_osal.h │ │ │ └── src │ │ │ │ ├── format │ │ │ │ └── nand_format.c │ │ │ │ ├── include │ │ │ │ ├── mbr.h │ │ │ │ ├── nand_drv_cfg.h │ │ │ │ ├── nand_format.h │ │ │ │ ├── nand_logic.h │ │ │ │ ├── nand_physic.h │ │ │ │ ├── nand_scan.h │ │ │ │ ├── nand_simple.h │ │ │ │ ├── nand_type.h │ │ │ │ └── nfc.h │ │ │ │ ├── logic │ │ │ │ ├── bad_manage.c │ │ │ │ ├── logic_cache.c │ │ │ │ ├── logic_ctl.c │ │ │ │ ├── mapping.c │ │ │ │ ├── mapping_base.c │ │ │ │ ├── mbr.c │ │ │ │ ├── merge.c │ │ │ │ ├── read_reclaim.c │ │ │ │ └── wear_levelling.c │ │ │ │ ├── nfc │ │ │ │ ├── nfc_r.c │ │ │ │ └── nfc_w.c │ │ │ │ ├── physic │ │ │ │ ├── nand_phy.c │ │ │ │ ├── nand_simple_r.c │ │ │ │ └── nand_simple_w.c │ │ │ │ └── scan │ │ │ │ ├── nand_id.c │ │ │ │ └── nand_scan.c │ │ └── nand_bsp_card │ │ │ ├── osal │ │ │ └── nand_osal.h │ │ │ └── src │ │ │ ├── format │ │ │ └── nand_format.c │ │ │ ├── include │ │ │ ├── mbr.h │ │ │ ├── nand_drv_cfg.h │ │ │ ├── nand_format.h │ │ │ ├── nand_logic.h │ │ │ ├── nand_physic.h │ │ │ ├── nand_scan.h │ │ │ ├── nand_simple.h │ │ │ ├── nand_type.h │ │ │ └── nfc.h │ │ │ ├── logic │ │ │ ├── bad_manage.c │ │ │ ├── logic_cache.c │ │ │ ├── logic_ctl.c │ │ │ ├── mapping.c │ │ │ ├── mapping_base.c │ │ │ ├── mbr.c │ │ │ ├── merge.c │ │ │ ├── read_reclaim.c │ │ │ └── wear_levelling.c │ │ │ ├── nfc │ │ │ ├── nfc_r.c │ │ │ └── nfc_w.c │ │ │ ├── physic │ │ │ ├── nand_phy.c │ │ │ ├── nand_simple_r.c │ │ │ └── nand_simple_w.c │ │ │ └── scan │ │ │ ├── nand_id.c │ │ │ └── nand_scan.c │ └── readme.txt ├── include │ ├── arch.h │ ├── arch │ │ ├── ccmu.h │ │ ├── ccmu.inc │ │ ├── dmac.h │ │ ├── ebios.inc │ │ ├── hd_scrpt.h │ │ ├── hd_scrpt.inc │ │ ├── intc.h │ │ ├── intc.inc │ │ ├── keyc.h │ │ ├── pio.h │ │ ├── pio.inc │ │ ├── sdmmc.h │ │ ├── sram.h │ │ ├── timer.h │ │ ├── twi.h │ │ └── uart.h │ ├── arm_a8.h │ ├── block_device │ │ ├── nand_for_boot.h │ │ └── sdmmc_for_boot.h │ ├── cfgs │ │ └── arm_a8.inc │ ├── driver │ │ ├── wboot_clock.h │ │ ├── wboot_display.h │ │ ├── wboot_dma.h │ │ ├── wboot_fs.h │ │ ├── wboot_keyc.h │ │ ├── wboot_mbr.h │ │ ├── wboot_mp.h │ │ ├── wboot_nand.h │ │ ├── wboot_parameters.h │ │ ├── wboot_part.h │ │ ├── wboot_pio.h │ │ ├── wboot_power.h │ │ ├── wboot_sd.h │ │ └── wboot_twi.h │ ├── eGon2_driver.h │ ├── eGon2_mod.h │ ├── eGon2_syscall.h │ ├── eGon2_syscall_define.h │ ├── egon2.h │ ├── egon2.inc │ ├── interinc │ │ ├── boot0_v2.h │ │ ├── boot1_v2.h │ │ ├── brom.h │ │ ├── egon_def.h │ │ ├── egon_def.inc │ │ ├── egon_i.h │ │ ├── egon_mem_distribute.h │ │ └── egon_mem_distribute.inc │ ├── libc │ │ └── eGon2_libc.h │ ├── script.h │ └── types.h ├── lib_src │ └── ui │ │ ├── display_interface │ │ ├── display_interface.c │ │ └── display_interface.h │ │ ├── make.cfg │ │ ├── makefile │ │ ├── ui_char │ │ ├── sfte │ │ │ ├── FontEngine.c │ │ │ ├── FontEngine.h │ │ │ ├── SFT.h │ │ │ ├── sfte.c │ │ │ └── sfte.h │ │ ├── ui_char.c │ │ ├── ui_char.h │ │ └── ui_char_i.h │ │ ├── ui_color.h │ │ ├── ui_draw │ │ ├── ui_draw.c │ │ └── ui_draw.h │ │ ├── ui_main.c │ │ ├── ui_main.h │ │ ├── ui_main_i.h │ │ └── ui_progressbar │ │ ├── ui_progressbar.c │ │ ├── ui_progressbar.h │ │ └── ui_progressbar_i.h ├── libs │ ├── eGon2_libc.lib │ └── eGon2_ui.lib └── misc │ ├── cache │ ├── cache.h │ ├── cache.inc │ ├── cache_const.h │ ├── cache_const.inc │ ├── cleanflushcachebyregion.c │ └── cleanflushcachebyway.S │ ├── div │ ├── .depend │ ├── _ashldi3.S │ ├── _ashrdi3.S │ ├── _divsi3.S │ ├── _lshrdi3.S │ ├── _modsi3.S │ ├── _udivsi3.S │ ├── _umodsi3.S │ ├── div0.c │ └── eabi_compat.c │ ├── eGon2_common.c │ ├── eGon2_common.h │ ├── format_transformed.c │ ├── format_transformed.h │ ├── int │ ├── _int.S │ └── c_int.c │ ├── make.cfg │ ├── makefile │ ├── mem.c │ ├── string.c │ └── syacall │ ├── syscall_driver.c │ ├── syscall_fs.c │ ├── syscall_gpio.c │ ├── syscall_hardware.c │ ├── syscall_i.h │ ├── syscall_input.c │ ├── syscall_memory.c │ ├── syscall_misc.c │ ├── syscall_power.c │ └── syscall_script.c ├── config ├── ARMCC_CROSSTOOL.CFG ├── CROSSTOOL.CFG ├── gcc-linaro │ ├── arm-linux-gnueabi │ │ ├── bin │ │ │ ├── ar │ │ │ ├── as │ │ │ ├── c++ │ │ │ ├── g++ │ │ │ ├── gcc │ │ │ ├── gfortran │ │ │ ├── ld │ │ │ ├── ld.bfd │ │ │ ├── ld.gold │ │ │ ├── nm │ │ │ ├── objcopy │ │ │ ├── objdump │ │ │ ├── ranlib │ │ │ └── strip │ │ ├── include │ │ │ └── c++ │ │ │ │ └── 4.6.3 │ │ │ │ ├── algorithm │ │ │ │ ├── arm-linux-gnueabi │ │ │ │ └── bits │ │ │ │ │ ├── atomic_word.h │ │ │ │ │ ├── basic_file.h │ │ │ │ │ ├── c++allocator.h │ │ │ │ │ ├── c++config.h │ │ │ │ │ ├── c++io.h │ │ │ │ │ ├── c++locale.h │ │ │ │ │ ├── cpu_defines.h │ │ │ │ │ ├── ctype_base.h │ │ │ │ │ ├── ctype_inline.h │ │ │ │ │ ├── ctype_noninline.h │ │ │ │ │ ├── cxxabi_tweaks.h │ │ │ │ │ ├── error_constants.h │ │ │ │ │ ├── extc++.h │ │ │ │ │ ├── gthr-default.h │ │ │ │ │ ├── gthr-posix.h │ │ │ │ │ ├── gthr-single.h │ │ │ │ │ ├── gthr-tpf.h │ │ │ │ │ ├── gthr.h │ │ │ │ │ ├── messages_members.h │ │ │ │ │ ├── os_defines.h │ │ │ │ │ ├── stdc++.h │ │ │ │ │ ├── stdtr1c++.h │ │ │ │ │ └── time_members.h │ │ │ │ ├── array │ │ │ │ ├── atomic │ │ │ │ ├── backward │ │ │ │ ├── auto_ptr.h │ │ │ │ ├── backward_warning.h │ │ │ │ ├── binders.h │ │ │ │ ├── hash_fun.h │ │ │ │ ├── hash_map │ │ │ │ ├── hash_set │ │ │ │ ├── hashtable.h │ │ │ │ └── strstream │ │ │ │ ├── bits │ │ │ │ ├── algorithmfwd.h │ │ │ │ ├── allocator.h │ │ │ │ ├── atomic_0.h │ │ │ │ ├── atomic_2.h │ │ │ │ ├── atomic_base.h │ │ │ │ ├── basic_ios.h │ │ │ │ ├── basic_ios.tcc │ │ │ │ ├── basic_string.h │ │ │ │ ├── basic_string.tcc │ │ │ │ ├── boost_concept_check.h │ │ │ │ ├── c++0x_warning.h │ │ │ │ ├── char_traits.h │ │ │ │ ├── codecvt.h │ │ │ │ ├── concept_check.h │ │ │ │ ├── cpp_type_traits.h │ │ │ │ ├── cxxabi_forced.h │ │ │ │ ├── deque.tcc │ │ │ │ ├── exception_defines.h │ │ │ │ ├── exception_ptr.h │ │ │ │ ├── forward_list.h │ │ │ │ ├── forward_list.tcc │ │ │ │ ├── fstream.tcc │ │ │ │ ├── functexcept.h │ │ │ │ ├── functional_hash.h │ │ │ │ ├── gslice.h │ │ │ │ ├── gslice_array.h │ │ │ │ ├── hash_bytes.h │ │ │ │ ├── hashtable.h │ │ │ │ ├── hashtable_policy.h │ │ │ │ ├── indirect_array.h │ │ │ │ ├── ios_base.h │ │ │ │ ├── istream.tcc │ │ │ │ ├── list.tcc │ │ │ │ ├── locale_classes.h │ │ │ │ ├── locale_classes.tcc │ │ │ │ ├── locale_facets.h │ │ │ │ ├── locale_facets.tcc │ │ │ │ ├── locale_facets_nonio.h │ │ │ │ ├── locale_facets_nonio.tcc │ │ │ │ ├── localefwd.h │ │ │ │ ├── mask_array.h │ │ │ │ ├── move.h │ │ │ │ ├── nested_exception.h │ │ │ │ ├── ostream.tcc │ │ │ │ ├── ostream_insert.h │ │ │ │ ├── postypes.h │ │ │ │ ├── random.h │ │ │ │ ├── random.tcc │ │ │ │ ├── range_access.h │ │ │ │ ├── regex.h │ │ │ │ ├── regex_compiler.h │ │ │ │ ├── regex_constants.h │ │ │ │ ├── regex_cursor.h │ │ │ │ ├── regex_error.h │ │ │ │ ├── regex_grep_matcher.h │ │ │ │ ├── regex_grep_matcher.tcc │ │ │ │ ├── regex_nfa.h │ │ │ │ ├── regex_nfa.tcc │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── shared_ptr_base.h │ │ │ │ ├── slice_array.h │ │ │ │ ├── sstream.tcc │ │ │ │ ├── stl_algo.h │ │ │ │ ├── stl_algobase.h │ │ │ │ ├── stl_bvector.h │ │ │ │ ├── stl_construct.h │ │ │ │ ├── stl_deque.h │ │ │ │ ├── stl_function.h │ │ │ │ ├── stl_heap.h │ │ │ │ ├── stl_iterator.h │ │ │ │ ├── stl_iterator_base_funcs.h │ │ │ │ ├── stl_iterator_base_types.h │ │ │ │ ├── stl_list.h │ │ │ │ ├── stl_map.h │ │ │ │ ├── stl_multimap.h │ │ │ │ ├── stl_multiset.h │ │ │ │ ├── stl_numeric.h │ │ │ │ ├── stl_pair.h │ │ │ │ ├── stl_queue.h │ │ │ │ ├── stl_raw_storage_iter.h │ │ │ │ ├── stl_relops.h │ │ │ │ ├── stl_set.h │ │ │ │ ├── stl_stack.h │ │ │ │ ├── stl_tempbuf.h │ │ │ │ ├── stl_tree.h │ │ │ │ ├── stl_uninitialized.h │ │ │ │ ├── stl_vector.h │ │ │ │ ├── stream_iterator.h │ │ │ │ ├── streambuf.tcc │ │ │ │ ├── streambuf_iterator.h │ │ │ │ ├── stringfwd.h │ │ │ │ ├── unique_ptr.h │ │ │ │ ├── unordered_map.h │ │ │ │ ├── unordered_set.h │ │ │ │ ├── valarray_after.h │ │ │ │ ├── valarray_array.h │ │ │ │ ├── valarray_array.tcc │ │ │ │ ├── valarray_before.h │ │ │ │ └── vector.tcc │ │ │ │ ├── bitset │ │ │ │ ├── cassert │ │ │ │ ├── ccomplex │ │ │ │ ├── cctype │ │ │ │ ├── cerrno │ │ │ │ ├── cfenv │ │ │ │ ├── cfloat │ │ │ │ ├── chrono │ │ │ │ ├── cinttypes │ │ │ │ ├── ciso646 │ │ │ │ ├── climits │ │ │ │ ├── clocale │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── complex.h │ │ │ │ ├── condition_variable │ │ │ │ ├── csetjmp │ │ │ │ ├── csignal │ │ │ │ ├── cstdarg │ │ │ │ ├── cstdbool │ │ │ │ ├── cstddef │ │ │ │ ├── cstdint │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── cstring │ │ │ │ ├── ctgmath │ │ │ │ ├── ctime │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── cxxabi.h │ │ │ │ ├── debug │ │ │ │ ├── bitset │ │ │ │ ├── debug.h │ │ │ │ ├── deque │ │ │ │ ├── formatter.h │ │ │ │ ├── forward_list │ │ │ │ ├── functions.h │ │ │ │ ├── list │ │ │ │ ├── macros.h │ │ │ │ ├── map │ │ │ │ ├── map.h │ │ │ │ ├── multimap.h │ │ │ │ ├── multiset.h │ │ │ │ ├── safe_base.h │ │ │ │ ├── safe_iterator.h │ │ │ │ ├── safe_iterator.tcc │ │ │ │ ├── safe_sequence.h │ │ │ │ ├── safe_sequence.tcc │ │ │ │ ├── set │ │ │ │ ├── set.h │ │ │ │ ├── string │ │ │ │ ├── unordered_map │ │ │ │ ├── unordered_set │ │ │ │ └── vector │ │ │ │ ├── decimal │ │ │ │ ├── decimal │ │ │ │ └── decimal.h │ │ │ │ ├── deque │ │ │ │ ├── exception │ │ │ │ ├── ext │ │ │ │ ├── algorithm │ │ │ │ ├── array_allocator.h │ │ │ │ ├── atomicity.h │ │ │ │ ├── bitmap_allocator.h │ │ │ │ ├── cast.h │ │ │ │ ├── codecvt_specializations.h │ │ │ │ ├── concurrence.h │ │ │ │ ├── debug_allocator.h │ │ │ │ ├── enc_filebuf.h │ │ │ │ ├── extptr_allocator.h │ │ │ │ ├── functional │ │ │ │ ├── hash_map │ │ │ │ ├── hash_set │ │ │ │ ├── iterator │ │ │ │ ├── malloc_allocator.h │ │ │ │ ├── memory │ │ │ │ ├── mt_allocator.h │ │ │ │ ├── new_allocator.h │ │ │ │ ├── numeric │ │ │ │ ├── numeric_traits.h │ │ │ │ ├── pb_ds │ │ │ │ │ ├── assoc_container.hpp │ │ │ │ │ ├── detail │ │ │ │ │ │ ├── basic_tree_policy │ │ │ │ │ │ │ ├── basic_tree_policy_base.hpp │ │ │ │ │ │ │ ├── null_node_metadata.hpp │ │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ │ ├── basic_types.hpp │ │ │ │ │ │ ├── bin_search_tree_ │ │ │ │ │ │ │ ├── bin_search_tree_.hpp │ │ │ │ │ │ │ ├── cond_dtor_entry_dealtor.hpp │ │ │ │ │ │ │ ├── cond_key_dtor_entry_dealtor.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ │ │ ├── point_iterators.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ ├── r_erase_fn_imps.hpp │ │ │ │ │ │ │ ├── rotate_fn_imps.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ │ ├── binary_heap_ │ │ │ │ │ │ │ ├── binary_heap_.hpp │ │ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ │ │ ├── const_point_iterator.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── entry_cmp.hpp │ │ │ │ │ │ │ ├── entry_pred.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_policy.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── binomial_heap_ │ │ │ │ │ │ │ ├── binomial_heap_.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ └── debug_fn_imps.hpp │ │ │ │ │ │ ├── binomial_heap_base_ │ │ │ │ │ │ │ ├── binomial_heap_base_.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ └── split_join_fn_imps.hpp │ │ │ │ │ │ ├── cc_hash_table_map_ │ │ │ │ │ │ │ ├── cc_ht_map_.hpp │ │ │ │ │ │ │ ├── cmp_fn_imps.hpp │ │ │ │ │ │ │ ├── cond_key_dtor_entry_dealtor.hpp │ │ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── constructor_destructor_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── constructor_destructor_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── entry_list_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── find_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── size_fn_imps.hpp │ │ │ │ │ │ │ ├── standard_policies.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── cond_dealtor.hpp │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ ├── container_base_dispatch.hpp │ │ │ │ │ │ ├── debug_map_base.hpp │ │ │ │ │ │ ├── eq_fn │ │ │ │ │ │ │ ├── eq_by_less.hpp │ │ │ │ │ │ │ └── hash_eq_fn.hpp │ │ │ │ │ │ ├── gp_hash_table_map_ │ │ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── constructor_destructor_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── constructor_destructor_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── find_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── find_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── gp_ht_map_.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── iterator_fn_imps.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_no_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── resize_store_hash_fn_imps.hpp │ │ │ │ │ │ │ ├── standard_policies.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── hash_fn │ │ │ │ │ │ │ ├── direct_mask_range_hashing_imp.hpp │ │ │ │ │ │ │ ├── direct_mod_range_hashing_imp.hpp │ │ │ │ │ │ │ ├── linear_probe_fn_imp.hpp │ │ │ │ │ │ │ ├── mask_based_range_hashing.hpp │ │ │ │ │ │ │ ├── mod_based_range_hashing.hpp │ │ │ │ │ │ │ ├── probe_fn_base.hpp │ │ │ │ │ │ │ ├── quadratic_probe_fn_imp.hpp │ │ │ │ │ │ │ ├── ranged_hash_fn.hpp │ │ │ │ │ │ │ ├── ranged_probe_fn.hpp │ │ │ │ │ │ │ ├── sample_probe_fn.hpp │ │ │ │ │ │ │ ├── sample_range_hashing.hpp │ │ │ │ │ │ │ ├── sample_ranged_hash_fn.hpp │ │ │ │ │ │ │ └── sample_ranged_probe_fn.hpp │ │ │ │ │ │ ├── left_child_next_sibling_heap_ │ │ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ │ │ ├── const_point_iterator.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── left_child_next_sibling_heap_.hpp │ │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ │ ├── null_metadata.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── list_update_map_ │ │ │ │ │ │ │ ├── constructor_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── entry_metadata_base.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── lu_map_.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── list_update_policy │ │ │ │ │ │ │ ├── counter_lu_metadata.hpp │ │ │ │ │ │ │ ├── counter_lu_policy_imp.hpp │ │ │ │ │ │ │ ├── mtf_lu_policy_imp.hpp │ │ │ │ │ │ │ └── sample_update_policy.hpp │ │ │ │ │ │ ├── ov_tree_map_ │ │ │ │ │ │ │ ├── cond_dtor.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ │ │ ├── ov_tree_map_.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ │ ├── pairing_heap_ │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── pairing_heap_.hpp │ │ │ │ │ │ │ └── split_join_fn_imps.hpp │ │ │ │ │ │ ├── pat_trie_ │ │ │ │ │ │ │ ├── child_iterator.hpp │ │ │ │ │ │ │ ├── cond_dtor_entry_dealtor.hpp │ │ │ │ │ │ │ ├── const_child_iterator.hpp │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── head.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_join_fn_imps.hpp │ │ │ │ │ │ │ ├── internal_node.hpp │ │ │ │ │ │ │ ├── iterators_fn_imps.hpp │ │ │ │ │ │ │ ├── leaf.hpp │ │ │ │ │ │ │ ├── node_base.hpp │ │ │ │ │ │ │ ├── node_iterators.hpp │ │ │ │ │ │ │ ├── node_metadata_base.hpp │ │ │ │ │ │ │ ├── pat_trie_.hpp │ │ │ │ │ │ │ ├── point_iterators.hpp │ │ │ │ │ │ │ ├── policy_access_fn_imps.hpp │ │ │ │ │ │ │ ├── r_erase_fn_imps.hpp │ │ │ │ │ │ │ ├── rotate_fn_imps.hpp │ │ │ │ │ │ │ ├── split_fn_imps.hpp │ │ │ │ │ │ │ ├── split_join_branch_bag.hpp │ │ │ │ │ │ │ ├── synth_e_access_traits.hpp │ │ │ │ │ │ │ ├── trace_fn_imps.hpp │ │ │ │ │ │ │ ├── traits.hpp │ │ │ │ │ │ │ └── update_fn_imps.hpp │ │ │ │ │ │ ├── priority_queue_base_dispatch.hpp │ │ │ │ │ │ ├── rb_tree_map_ │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ │ ├── rb_tree_.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ │ ├── rc_binomial_heap_ │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── rc.hpp │ │ │ │ │ │ │ ├── rc_binomial_heap_.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── resize_policy │ │ │ │ │ │ │ ├── cc_hash_max_collision_check_resize_trigger_imp.hpp │ │ │ │ │ │ │ ├── hash_exponential_size_policy_imp.hpp │ │ │ │ │ │ │ ├── hash_load_check_resize_trigger_imp.hpp │ │ │ │ │ │ │ ├── hash_load_check_resize_trigger_size_base.hpp │ │ │ │ │ │ │ ├── hash_prime_size_policy_imp.hpp │ │ │ │ │ │ │ ├── hash_standard_resize_policy_imp.hpp │ │ │ │ │ │ │ ├── sample_resize_policy.hpp │ │ │ │ │ │ │ ├── sample_resize_trigger.hpp │ │ │ │ │ │ │ └── sample_size_policy.hpp │ │ │ │ │ │ ├── splay_tree_ │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── info_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── node.hpp │ │ │ │ │ │ │ ├── splay_fn_imps.hpp │ │ │ │ │ │ │ ├── splay_tree_.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ └── traits.hpp │ │ │ │ │ │ ├── standard_policies.hpp │ │ │ │ │ │ ├── thin_heap_ │ │ │ │ │ │ │ ├── constructors_destructor_fn_imps.hpp │ │ │ │ │ │ │ ├── debug_fn_imps.hpp │ │ │ │ │ │ │ ├── erase_fn_imps.hpp │ │ │ │ │ │ │ ├── find_fn_imps.hpp │ │ │ │ │ │ │ ├── insert_fn_imps.hpp │ │ │ │ │ │ │ ├── split_join_fn_imps.hpp │ │ │ │ │ │ │ ├── thin_heap_.hpp │ │ │ │ │ │ │ └── trace_fn_imps.hpp │ │ │ │ │ │ ├── tree_policy │ │ │ │ │ │ │ ├── node_metadata_selector.hpp │ │ │ │ │ │ │ ├── null_node_update_imp.hpp │ │ │ │ │ │ │ ├── order_statistics_imp.hpp │ │ │ │ │ │ │ └── sample_tree_node_update.hpp │ │ │ │ │ │ ├── tree_trace_base.hpp │ │ │ │ │ │ ├── trie_policy │ │ │ │ │ │ │ ├── node_metadata_selector.hpp │ │ │ │ │ │ │ ├── null_node_update_imp.hpp │ │ │ │ │ │ │ ├── order_statistics_imp.hpp │ │ │ │ │ │ │ ├── prefix_search_node_update_imp.hpp │ │ │ │ │ │ │ ├── sample_trie_e_access_traits.hpp │ │ │ │ │ │ │ ├── sample_trie_node_update.hpp │ │ │ │ │ │ │ ├── string_trie_e_access_traits_imp.hpp │ │ │ │ │ │ │ └── trie_policy_base.hpp │ │ │ │ │ │ ├── type_utils.hpp │ │ │ │ │ │ ├── types_traits.hpp │ │ │ │ │ │ └── unordered_iterator │ │ │ │ │ │ │ ├── const_iterator.hpp │ │ │ │ │ │ │ ├── const_point_iterator.hpp │ │ │ │ │ │ │ ├── iterator.hpp │ │ │ │ │ │ │ └── point_iterator.hpp │ │ │ │ │ ├── exception.hpp │ │ │ │ │ ├── hash_policy.hpp │ │ │ │ │ ├── list_update_policy.hpp │ │ │ │ │ ├── priority_queue.hpp │ │ │ │ │ ├── tag_and_trait.hpp │ │ │ │ │ ├── tree_policy.hpp │ │ │ │ │ └── trie_policy.hpp │ │ │ │ ├── pod_char_traits.h │ │ │ │ ├── pointer.h │ │ │ │ ├── pool_allocator.h │ │ │ │ ├── rb_tree │ │ │ │ ├── rc_string_base.h │ │ │ │ ├── rope │ │ │ │ ├── ropeimpl.h │ │ │ │ ├── slist │ │ │ │ ├── sso_string_base.h │ │ │ │ ├── stdio_filebuf.h │ │ │ │ ├── stdio_sync_filebuf.h │ │ │ │ ├── string_conversions.h │ │ │ │ ├── throw_allocator.h │ │ │ │ ├── type_traits.h │ │ │ │ ├── typelist.h │ │ │ │ ├── vstring.h │ │ │ │ ├── vstring.tcc │ │ │ │ ├── vstring_fwd.h │ │ │ │ └── vstring_util.h │ │ │ │ ├── fenv.h │ │ │ │ ├── forward_list │ │ │ │ ├── fstream │ │ │ │ ├── functional │ │ │ │ ├── future │ │ │ │ ├── initializer_list │ │ │ │ ├── iomanip │ │ │ │ ├── ios │ │ │ │ ├── iosfwd │ │ │ │ ├── iostream │ │ │ │ ├── istream │ │ │ │ ├── iterator │ │ │ │ ├── limits │ │ │ │ ├── list │ │ │ │ ├── locale │ │ │ │ ├── map │ │ │ │ ├── memory │ │ │ │ ├── mutex │ │ │ │ ├── new │ │ │ │ ├── numeric │ │ │ │ ├── ostream │ │ │ │ ├── profile │ │ │ │ ├── base.h │ │ │ │ ├── bitset │ │ │ │ ├── deque │ │ │ │ ├── forward_list │ │ │ │ ├── impl │ │ │ │ │ ├── profiler.h │ │ │ │ │ ├── profiler_algos.h │ │ │ │ │ ├── profiler_container_size.h │ │ │ │ │ ├── profiler_hash_func.h │ │ │ │ │ ├── profiler_hashtable_size.h │ │ │ │ │ ├── profiler_list_to_slist.h │ │ │ │ │ ├── profiler_list_to_vector.h │ │ │ │ │ ├── profiler_map_to_unordered_map.h │ │ │ │ │ ├── profiler_node.h │ │ │ │ │ ├── profiler_state.h │ │ │ │ │ ├── profiler_trace.h │ │ │ │ │ ├── profiler_vector_size.h │ │ │ │ │ └── profiler_vector_to_list.h │ │ │ │ ├── iterator_tracker.h │ │ │ │ ├── list │ │ │ │ ├── map │ │ │ │ ├── map.h │ │ │ │ ├── multimap.h │ │ │ │ ├── multiset.h │ │ │ │ ├── set │ │ │ │ ├── set.h │ │ │ │ ├── unordered_map │ │ │ │ ├── unordered_set │ │ │ │ └── vector │ │ │ │ ├── queue │ │ │ │ ├── random │ │ │ │ ├── ratio │ │ │ │ ├── regex │ │ │ │ ├── set │ │ │ │ ├── sstream │ │ │ │ ├── stack │ │ │ │ ├── stdexcept │ │ │ │ ├── streambuf │ │ │ │ ├── string │ │ │ │ ├── system_error │ │ │ │ ├── tgmath.h │ │ │ │ ├── thread │ │ │ │ ├── tr1 │ │ │ │ ├── array │ │ │ │ ├── bessel_function.tcc │ │ │ │ ├── beta_function.tcc │ │ │ │ ├── ccomplex │ │ │ │ ├── cctype │ │ │ │ ├── cfenv │ │ │ │ ├── cfloat │ │ │ │ ├── cinttypes │ │ │ │ ├── climits │ │ │ │ ├── cmath │ │ │ │ ├── complex │ │ │ │ ├── complex.h │ │ │ │ ├── cstdarg │ │ │ │ ├── cstdbool │ │ │ │ ├── cstdint │ │ │ │ ├── cstdio │ │ │ │ ├── cstdlib │ │ │ │ ├── ctgmath │ │ │ │ ├── ctime │ │ │ │ ├── ctype.h │ │ │ │ ├── cwchar │ │ │ │ ├── cwctype │ │ │ │ ├── ell_integral.tcc │ │ │ │ ├── exp_integral.tcc │ │ │ │ ├── fenv.h │ │ │ │ ├── float.h │ │ │ │ ├── functional │ │ │ │ ├── functional_hash.h │ │ │ │ ├── gamma.tcc │ │ │ │ ├── hashtable.h │ │ │ │ ├── hashtable_policy.h │ │ │ │ ├── hypergeometric.tcc │ │ │ │ ├── inttypes.h │ │ │ │ ├── legendre_function.tcc │ │ │ │ ├── limits.h │ │ │ │ ├── math.h │ │ │ │ ├── memory │ │ │ │ ├── modified_bessel_func.tcc │ │ │ │ ├── poly_hermite.tcc │ │ │ │ ├── poly_laguerre.tcc │ │ │ │ ├── random │ │ │ │ ├── random.h │ │ │ │ ├── random.tcc │ │ │ │ ├── regex │ │ │ │ ├── riemann_zeta.tcc │ │ │ │ ├── shared_ptr.h │ │ │ │ ├── special_function_util.h │ │ │ │ ├── stdarg.h │ │ │ │ ├── stdbool.h │ │ │ │ ├── stdint.h │ │ │ │ ├── stdio.h │ │ │ │ ├── stdlib.h │ │ │ │ ├── tgmath.h │ │ │ │ ├── tuple │ │ │ │ ├── type_traits │ │ │ │ ├── unordered_map │ │ │ │ ├── unordered_map.h │ │ │ │ ├── unordered_set │ │ │ │ ├── unordered_set.h │ │ │ │ ├── utility │ │ │ │ ├── wchar.h │ │ │ │ └── wctype.h │ │ │ │ ├── tuple │ │ │ │ ├── type_traits │ │ │ │ ├── typeindex │ │ │ │ ├── typeinfo │ │ │ │ ├── unordered_map │ │ │ │ ├── unordered_set │ │ │ │ ├── utility │ │ │ │ ├── valarray │ │ │ │ └── vector │ │ └── libc │ │ │ ├── lib │ │ │ ├── arm-linux-gnueabi │ │ │ │ ├── ld-2.13.so │ │ │ │ ├── ld-linux.so.3 │ │ │ │ ├── libBrokenLocale-2.13.so │ │ │ │ ├── libBrokenLocale.so.1 │ │ │ │ ├── libSegFault.so │ │ │ │ ├── libanl-2.13.so │ │ │ │ ├── libanl.so.1 │ │ │ │ ├── libc-2.13.so │ │ │ │ ├── libc.so.6 │ │ │ │ ├── libcidn-2.13.so │ │ │ │ ├── libcidn.so.1 │ │ │ │ ├── libcrypt-2.13.so │ │ │ │ ├── libcrypt.so.1 │ │ │ │ ├── libdl-2.13.so │ │ │ │ ├── libdl.so.2 │ │ │ │ ├── libm-2.13.so │ │ │ │ ├── libm.so.6 │ │ │ │ ├── libmemusage.so │ │ │ │ ├── libnsl-2.13.so │ │ │ │ ├── libnsl.so.1 │ │ │ │ ├── libnss_compat-2.13.so │ │ │ │ ├── libnss_compat.so.2 │ │ │ │ ├── libnss_dns-2.13.so │ │ │ │ ├── libnss_dns.so.2 │ │ │ │ ├── libnss_files-2.13.so │ │ │ │ ├── libnss_files.so.2 │ │ │ │ ├── libnss_hesiod-2.13.so │ │ │ │ ├── libnss_hesiod.so.2 │ │ │ │ ├── libnss_nis-2.13.so │ │ │ │ ├── libnss_nis.so.2 │ │ │ │ ├── libnss_nisplus-2.13.so │ │ │ │ ├── libnss_nisplus.so.2 │ │ │ │ ├── libpcprofile.so │ │ │ │ ├── libpthread-2.13.so │ │ │ │ ├── libpthread.so.0 │ │ │ │ ├── libresolv-2.13.so │ │ │ │ ├── libresolv.so.2 │ │ │ │ ├── librt-2.13.so │ │ │ │ ├── librt.so.1 │ │ │ │ ├── libthread_db-1.0.so │ │ │ │ ├── libthread_db.so.1 │ │ │ │ ├── libutil-2.13.so │ │ │ │ └── libutil.so.1 │ │ │ ├── ld-linux.so.3 │ │ │ ├── ldscripts │ │ │ │ ├── armelf_linux_eabi.x │ │ │ │ ├── armelf_linux_eabi.xbn │ │ │ │ ├── armelf_linux_eabi.xc │ │ │ │ ├── armelf_linux_eabi.xd │ │ │ │ ├── armelf_linux_eabi.xdc │ │ │ │ ├── armelf_linux_eabi.xdw │ │ │ │ ├── armelf_linux_eabi.xn │ │ │ │ ├── armelf_linux_eabi.xr │ │ │ │ ├── armelf_linux_eabi.xs │ │ │ │ ├── armelf_linux_eabi.xsc │ │ │ │ ├── armelf_linux_eabi.xsw │ │ │ │ ├── armelf_linux_eabi.xu │ │ │ │ ├── armelf_linux_eabi.xw │ │ │ │ ├── armelfb_linux_eabi.x │ │ │ │ ├── armelfb_linux_eabi.xbn │ │ │ │ ├── armelfb_linux_eabi.xc │ │ │ │ ├── armelfb_linux_eabi.xd │ │ │ │ ├── armelfb_linux_eabi.xdc │ │ │ │ ├── armelfb_linux_eabi.xdw │ │ │ │ ├── armelfb_linux_eabi.xn │ │ │ │ ├── armelfb_linux_eabi.xr │ │ │ │ ├── armelfb_linux_eabi.xs │ │ │ │ ├── armelfb_linux_eabi.xsc │ │ │ │ ├── armelfb_linux_eabi.xsw │ │ │ │ ├── armelfb_linux_eabi.xu │ │ │ │ └── armelfb_linux_eabi.xw │ │ │ ├── libgcc_s.so │ │ │ ├── libgcc_s.so.1 │ │ │ ├── libgfortran.a │ │ │ ├── libgfortran.so │ │ │ ├── libgfortran.so.3 │ │ │ ├── libgfortran.so.3.0.0 │ │ │ ├── libgfortran.spec │ │ │ ├── libstdc++.a │ │ │ ├── libstdc++.so │ │ │ ├── libstdc++.so.6 │ │ │ ├── libstdc++.so.6.0.16 │ │ │ ├── libstdc++.so.6.0.16-gdb.py │ │ │ └── libsupc++.a │ │ │ └── usr │ │ │ ├── include │ │ │ ├── _G_config.h │ │ │ ├── a.out.h │ │ │ ├── aio.h │ │ │ ├── aliases.h │ │ │ ├── alloca.h │ │ │ ├── ar.h │ │ │ ├── argp.h │ │ │ ├── argz.h │ │ │ ├── arm-linux-gnueabi │ │ │ │ ├── asm │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── auxvec.h │ │ │ │ │ ├── bitsperlong.h │ │ │ │ │ ├── byteorder.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── hwcap.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── ipcbuf.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── msgbuf.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── posix_types.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sembuf.h │ │ │ │ │ ├── setup.h │ │ │ │ │ ├── shmbuf.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── siginfo.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── sockios.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── swab.h │ │ │ │ │ ├── termbits.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── types.h │ │ │ │ │ └── unistd.h │ │ │ │ ├── bits │ │ │ │ │ ├── a.out.h │ │ │ │ │ ├── byteswap.h │ │ │ │ │ ├── cmathcalls.h │ │ │ │ │ ├── confname.h │ │ │ │ │ ├── dirent.h │ │ │ │ │ ├── dlfcn.h │ │ │ │ │ ├── elfclass.h │ │ │ │ │ ├── endian.h │ │ │ │ │ ├── environments.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── fcntl2.h │ │ │ │ │ ├── fenv.h │ │ │ │ │ ├── fenvinline.h │ │ │ │ │ ├── huge_val.h │ │ │ │ │ ├── huge_valf.h │ │ │ │ │ ├── huge_vall.h │ │ │ │ │ ├── in.h │ │ │ │ │ ├── inf.h │ │ │ │ │ ├── initspin.h │ │ │ │ │ ├── ioctl-types.h │ │ │ │ │ ├── ioctls.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── ipctypes.h │ │ │ │ │ ├── libc-lock.h │ │ │ │ │ ├── libio-ldbl.h │ │ │ │ │ ├── link.h │ │ │ │ │ ├── local_lim.h │ │ │ │ │ ├── locale.h │ │ │ │ │ ├── mathcalls.h │ │ │ │ │ ├── mathdef.h │ │ │ │ │ ├── mathinline.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── monetary-ldbl.h │ │ │ │ │ ├── mqueue.h │ │ │ │ │ ├── mqueue2.h │ │ │ │ │ ├── msq.h │ │ │ │ │ ├── nan.h │ │ │ │ │ ├── netdb.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── posix1_lim.h │ │ │ │ │ ├── posix2_lim.h │ │ │ │ │ ├── posix_opt.h │ │ │ │ │ ├── predefs.h │ │ │ │ │ ├── printf-ldbl.h │ │ │ │ │ ├── pthreadtypes.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── sched.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── sem.h │ │ │ │ │ ├── semaphore.h │ │ │ │ │ ├── setjmp.h │ │ │ │ │ ├── setjmp2.h │ │ │ │ │ ├── shm.h │ │ │ │ │ ├── sigaction.h │ │ │ │ │ ├── sigcontext.h │ │ │ │ │ ├── siginfo.h │ │ │ │ │ ├── signum.h │ │ │ │ │ ├── sigset.h │ │ │ │ │ ├── sigstack.h │ │ │ │ │ ├── sigthread.h │ │ │ │ │ ├── sockaddr.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── socket2.h │ │ │ │ │ ├── stab.def │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── statvfs.h │ │ │ │ │ ├── stdio-ldbl.h │ │ │ │ │ ├── stdio-lock.h │ │ │ │ │ ├── stdio.h │ │ │ │ │ ├── stdio2.h │ │ │ │ │ ├── stdio_lim.h │ │ │ │ │ ├── stdlib-ldbl.h │ │ │ │ │ ├── stdlib.h │ │ │ │ │ ├── string.h │ │ │ │ │ ├── string2.h │ │ │ │ │ ├── string3.h │ │ │ │ │ ├── stropts.h │ │ │ │ │ ├── sys_errlist.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── syslog-ldbl.h │ │ │ │ │ ├── syslog-path.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── typesizes.h │ │ │ │ │ ├── uio.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── ustat.h │ │ │ │ │ ├── utmp.h │ │ │ │ │ ├── utmpx.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ ├── waitflags.h │ │ │ │ │ ├── waitstatus.h │ │ │ │ │ ├── wchar-ldbl.h │ │ │ │ │ ├── wchar.h │ │ │ │ │ ├── wchar2.h │ │ │ │ │ ├── wordsize.h │ │ │ │ │ ├── xopen_lim.h │ │ │ │ │ └── xtitypes.h │ │ │ │ ├── fpu_control.h │ │ │ │ ├── gnu │ │ │ │ │ ├── lib-names.h │ │ │ │ │ ├── libc-version.h │ │ │ │ │ ├── option-groups.h │ │ │ │ │ └── stubs.h │ │ │ │ └── sys │ │ │ │ │ ├── acct.h │ │ │ │ │ ├── bitypes.h │ │ │ │ │ ├── cdefs.h │ │ │ │ │ ├── dir.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── epoll.h │ │ │ │ │ ├── errno.h │ │ │ │ │ ├── eventfd.h │ │ │ │ │ ├── fanotify.h │ │ │ │ │ ├── fcntl.h │ │ │ │ │ ├── file.h │ │ │ │ │ ├── fsuid.h │ │ │ │ │ ├── gmon.h │ │ │ │ │ ├── gmon_out.h │ │ │ │ │ ├── inotify.h │ │ │ │ │ ├── io.h │ │ │ │ │ ├── ioctl.h │ │ │ │ │ ├── ipc.h │ │ │ │ │ ├── kd.h │ │ │ │ │ ├── kdaemon.h │ │ │ │ │ ├── klog.h │ │ │ │ │ ├── mman.h │ │ │ │ │ ├── mount.h │ │ │ │ │ ├── msg.h │ │ │ │ │ ├── mtio.h │ │ │ │ │ ├── param.h │ │ │ │ │ ├── pci.h │ │ │ │ │ ├── personality.h │ │ │ │ │ ├── poll.h │ │ │ │ │ ├── prctl.h │ │ │ │ │ ├── procfs.h │ │ │ │ │ ├── profil.h │ │ │ │ │ ├── ptrace.h │ │ │ │ │ ├── queue.h │ │ │ │ │ ├── quota.h │ │ │ │ │ ├── raw.h │ │ │ │ │ ├── reboot.h │ │ │ │ │ ├── resource.h │ │ │ │ │ ├── select.h │ │ │ │ │ ├── sem.h │ │ │ │ │ ├── sendfile.h │ │ │ │ │ ├── shm.h │ │ │ │ │ ├── signal.h │ │ │ │ │ ├── signalfd.h │ │ │ │ │ ├── socket.h │ │ │ │ │ ├── socketvar.h │ │ │ │ │ ├── soundcard.h │ │ │ │ │ ├── stat.h │ │ │ │ │ ├── statfs.h │ │ │ │ │ ├── statvfs.h │ │ │ │ │ ├── stropts.h │ │ │ │ │ ├── swap.h │ │ │ │ │ ├── syscall.h │ │ │ │ │ ├── sysctl.h │ │ │ │ │ ├── sysinfo.h │ │ │ │ │ ├── syslog.h │ │ │ │ │ ├── sysmacros.h │ │ │ │ │ ├── termios.h │ │ │ │ │ ├── time.h │ │ │ │ │ ├── timeb.h │ │ │ │ │ ├── timerfd.h │ │ │ │ │ ├── times.h │ │ │ │ │ ├── timex.h │ │ │ │ │ ├── ttychars.h │ │ │ │ │ ├── ttydefaults.h │ │ │ │ │ ├── types.h │ │ │ │ │ ├── ucontext.h │ │ │ │ │ ├── uio.h │ │ │ │ │ ├── ultrasound.h │ │ │ │ │ ├── un.h │ │ │ │ │ ├── unistd.h │ │ │ │ │ ├── user.h │ │ │ │ │ ├── ustat.h │ │ │ │ │ ├── utsname.h │ │ │ │ │ ├── vfs.h │ │ │ │ │ ├── vlimit.h │ │ │ │ │ ├── vt.h │ │ │ │ │ ├── vtimes.h │ │ │ │ │ ├── wait.h │ │ │ │ │ └── xattr.h │ │ │ ├── arpa │ │ │ │ ├── ftp.h │ │ │ │ ├── inet.h │ │ │ │ ├── nameser.h │ │ │ │ ├── nameser_compat.h │ │ │ │ ├── telnet.h │ │ │ │ └── tftp.h │ │ │ ├── asm-generic │ │ │ │ ├── auxvec.h │ │ │ │ ├── bitsperlong.h │ │ │ │ ├── errno-base.h │ │ │ │ ├── errno.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── int-l64.h │ │ │ │ ├── int-ll64.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ioctls.h │ │ │ │ ├── ipcbuf.h │ │ │ │ ├── mman-common.h │ │ │ │ ├── mman.h │ │ │ │ ├── msgbuf.h │ │ │ │ ├── param.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── resource.h │ │ │ │ ├── sembuf.h │ │ │ │ ├── setup.h │ │ │ │ ├── shmbuf.h │ │ │ │ ├── shmparam.h │ │ │ │ ├── siginfo.h │ │ │ │ ├── signal-defs.h │ │ │ │ ├── signal.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockios.h │ │ │ │ ├── stat.h │ │ │ │ ├── statfs.h │ │ │ │ ├── swab.h │ │ │ │ ├── termbits.h │ │ │ │ ├── termios.h │ │ │ │ ├── types.h │ │ │ │ ├── ucontext.h │ │ │ │ └── unistd.h │ │ │ ├── assert.h │ │ │ ├── byteswap.h │ │ │ ├── complex.h │ │ │ ├── cpio.h │ │ │ ├── crypt.h │ │ │ ├── ctype.h │ │ │ ├── dirent.h │ │ │ ├── dlfcn.h │ │ │ ├── drm │ │ │ │ ├── drm.h │ │ │ │ ├── drm_mode.h │ │ │ │ ├── drm_sarea.h │ │ │ │ ├── i810_drm.h │ │ │ │ ├── i915_drm.h │ │ │ │ ├── mga_drm.h │ │ │ │ ├── nouveau_drm.h │ │ │ │ ├── r128_drm.h │ │ │ │ ├── radeon_drm.h │ │ │ │ ├── savage_drm.h │ │ │ │ ├── sis_drm.h │ │ │ │ ├── via_drm.h │ │ │ │ └── vmwgfx_drm.h │ │ │ ├── elf.h │ │ │ ├── endian.h │ │ │ ├── envz.h │ │ │ ├── err.h │ │ │ ├── errno.h │ │ │ ├── error.h │ │ │ ├── execinfo.h │ │ │ ├── fcntl.h │ │ │ ├── features.h │ │ │ ├── fenv.h │ │ │ ├── fmtmsg.h │ │ │ ├── fnmatch.h │ │ │ ├── fstab.h │ │ │ ├── fts.h │ │ │ ├── ftw.h │ │ │ ├── gconv.h │ │ │ ├── getopt.h │ │ │ ├── glob.h │ │ │ ├── gnu-versions.h │ │ │ ├── grp.h │ │ │ ├── gshadow.h │ │ │ ├── iconv.h │ │ │ ├── ieee754.h │ │ │ ├── ifaddrs.h │ │ │ ├── inttypes.h │ │ │ ├── langinfo.h │ │ │ ├── lastlog.h │ │ │ ├── libgen.h │ │ │ ├── libintl.h │ │ │ ├── libio.h │ │ │ ├── limits.h │ │ │ ├── link.h │ │ │ ├── linux │ │ │ │ ├── a.out.h │ │ │ │ ├── acct.h │ │ │ │ ├── adb.h │ │ │ │ ├── adfs_fs.h │ │ │ │ ├── affs_hardblocks.h │ │ │ │ ├── agpgart.h │ │ │ │ ├── aio_abi.h │ │ │ │ ├── apm_bios.h │ │ │ │ ├── arcfb.h │ │ │ │ ├── atalk.h │ │ │ │ ├── atm.h │ │ │ │ ├── atm_eni.h │ │ │ │ ├── atm_he.h │ │ │ │ ├── atm_idt77105.h │ │ │ │ ├── atm_nicstar.h │ │ │ │ ├── atm_tcp.h │ │ │ │ ├── atm_zatm.h │ │ │ │ ├── atmapi.h │ │ │ │ ├── atmarp.h │ │ │ │ ├── atmbr2684.h │ │ │ │ ├── atmclip.h │ │ │ │ ├── atmdev.h │ │ │ │ ├── atmioc.h │ │ │ │ ├── atmlec.h │ │ │ │ ├── atmmpc.h │ │ │ │ ├── atmppp.h │ │ │ │ ├── atmsap.h │ │ │ │ ├── atmsvc.h │ │ │ │ ├── audit.h │ │ │ │ ├── aufs_type.h │ │ │ │ ├── auto_fs.h │ │ │ │ ├── auto_fs4.h │ │ │ │ ├── auxvec.h │ │ │ │ ├── ax25.h │ │ │ │ ├── b1lli.h │ │ │ │ ├── baycom.h │ │ │ │ ├── bfs_fs.h │ │ │ │ ├── binfmts.h │ │ │ │ ├── blk_types.h │ │ │ │ ├── blkpg.h │ │ │ │ ├── blktrace_api.h │ │ │ │ ├── bpqether.h │ │ │ │ ├── bsg.h │ │ │ │ ├── byteorder │ │ │ │ │ ├── big_endian.h │ │ │ │ │ └── little_endian.h │ │ │ │ ├── caif │ │ │ │ │ ├── caif_socket.h │ │ │ │ │ └── if_caif.h │ │ │ │ ├── can.h │ │ │ │ ├── can │ │ │ │ │ ├── bcm.h │ │ │ │ │ ├── error.h │ │ │ │ │ ├── netlink.h │ │ │ │ │ └── raw.h │ │ │ │ ├── capability.h │ │ │ │ ├── capi.h │ │ │ │ ├── cciss_defs.h │ │ │ │ ├── cciss_ioctl.h │ │ │ │ ├── cdk.h │ │ │ │ ├── cdrom.h │ │ │ │ ├── cgroupstats.h │ │ │ │ ├── chio.h │ │ │ │ ├── cm4000_cs.h │ │ │ │ ├── cn_proc.h │ │ │ │ ├── coda.h │ │ │ │ ├── coda_psdev.h │ │ │ │ ├── coff.h │ │ │ │ ├── comstats.h │ │ │ │ ├── connector.h │ │ │ │ ├── const.h │ │ │ │ ├── cramfs_fs.h │ │ │ │ ├── cuda.h │ │ │ │ ├── cyclades.h │ │ │ │ ├── cycx_cfm.h │ │ │ │ ├── dcbnl.h │ │ │ │ ├── dccp.h │ │ │ │ ├── dlm.h │ │ │ │ ├── dlm_device.h │ │ │ │ ├── dlm_netlink.h │ │ │ │ ├── dlm_plock.h │ │ │ │ ├── dlmconstants.h │ │ │ │ ├── dm-ioctl.h │ │ │ │ ├── dm-log-userspace.h │ │ │ │ ├── dn.h │ │ │ │ ├── dqblk_xfs.h │ │ │ │ ├── dvb │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── ca.h │ │ │ │ │ ├── dmx.h │ │ │ │ │ ├── frontend.h │ │ │ │ │ ├── net.h │ │ │ │ │ ├── osd.h │ │ │ │ │ ├── version.h │ │ │ │ │ └── video.h │ │ │ │ ├── edd.h │ │ │ │ ├── efs_fs_sb.h │ │ │ │ ├── elf-em.h │ │ │ │ ├── elf-fdpic.h │ │ │ │ ├── elf.h │ │ │ │ ├── elfcore.h │ │ │ │ ├── errno.h │ │ │ │ ├── errqueue.h │ │ │ │ ├── ethtool.h │ │ │ │ ├── eventpoll.h │ │ │ │ ├── ext2_fs.h │ │ │ │ ├── fadvise.h │ │ │ │ ├── falloc.h │ │ │ │ ├── fanotify.h │ │ │ │ ├── fb.h │ │ │ │ ├── fcntl.h │ │ │ │ ├── fd.h │ │ │ │ ├── fdreg.h │ │ │ │ ├── fib_rules.h │ │ │ │ ├── fiemap.h │ │ │ │ ├── filter.h │ │ │ │ ├── firewire-cdev.h │ │ │ │ ├── firewire-constants.h │ │ │ │ ├── flat.h │ │ │ │ ├── fs.h │ │ │ │ ├── fuse.h │ │ │ │ ├── futex.h │ │ │ │ ├── gameport.h │ │ │ │ ├── gen_stats.h │ │ │ │ ├── generic_serial.h │ │ │ │ ├── genetlink.h │ │ │ │ ├── gfs2_ondisk.h │ │ │ │ ├── gigaset_dev.h │ │ │ │ ├── hdlc.h │ │ │ │ ├── hdlc │ │ │ │ │ └── ioctl.h │ │ │ │ ├── hdlcdrv.h │ │ │ │ ├── hdreg.h │ │ │ │ ├── hid.h │ │ │ │ ├── hiddev.h │ │ │ │ ├── hidraw.h │ │ │ │ ├── hpet.h │ │ │ │ ├── hysdn_if.h │ │ │ │ ├── i2c-dev.h │ │ │ │ ├── i2c.h │ │ │ │ ├── i2o-dev.h │ │ │ │ ├── i8k.h │ │ │ │ ├── icmp.h │ │ │ │ ├── icmpv6.h │ │ │ │ ├── if.h │ │ │ │ ├── if_addr.h │ │ │ │ ├── if_addrlabel.h │ │ │ │ ├── if_alg.h │ │ │ │ ├── if_arcnet.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_bonding.h │ │ │ │ ├── if_bridge.h │ │ │ │ ├── if_cablemodem.h │ │ │ │ ├── if_ec.h │ │ │ │ ├── if_eql.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_fc.h │ │ │ │ ├── if_fddi.h │ │ │ │ ├── if_frad.h │ │ │ │ ├── if_hippi.h │ │ │ │ ├── if_infiniband.h │ │ │ │ ├── if_link.h │ │ │ │ ├── if_ltalk.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_phonet.h │ │ │ │ ├── if_plip.h │ │ │ │ ├── if_ppp.h │ │ │ │ ├── if_pppol2tp.h │ │ │ │ ├── if_pppox.h │ │ │ │ ├── if_slip.h │ │ │ │ ├── if_strip.h │ │ │ │ ├── if_tr.h │ │ │ │ ├── if_tun.h │ │ │ │ ├── if_tunnel.h │ │ │ │ ├── if_vlan.h │ │ │ │ ├── if_x25.h │ │ │ │ ├── igmp.h │ │ │ │ ├── in.h │ │ │ │ ├── in6.h │ │ │ │ ├── in_route.h │ │ │ │ ├── inet_diag.h │ │ │ │ ├── inotify.h │ │ │ │ ├── input.h │ │ │ │ ├── ioctl.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6_tunnel.h │ │ │ │ ├── ip_vs.h │ │ │ │ ├── ipc.h │ │ │ │ ├── ipmi.h │ │ │ │ ├── ipmi_msgdefs.h │ │ │ │ ├── ipsec.h │ │ │ │ ├── ipv6.h │ │ │ │ ├── ipv6_route.h │ │ │ │ ├── ipx.h │ │ │ │ ├── irda.h │ │ │ │ ├── irqnr.h │ │ │ │ ├── isdn.h │ │ │ │ ├── isdn │ │ │ │ │ └── capicmd.h │ │ │ │ ├── isdn_divertif.h │ │ │ │ ├── isdn_ppp.h │ │ │ │ ├── isdnif.h │ │ │ │ ├── iso_fs.h │ │ │ │ ├── ivtv.h │ │ │ │ ├── ivtvfb.h │ │ │ │ ├── ixjuser.h │ │ │ │ ├── jffs2.h │ │ │ │ ├── joystick.h │ │ │ │ ├── kd.h │ │ │ │ ├── kdev_t.h │ │ │ │ ├── kernel.h │ │ │ │ ├── kernelcapi.h │ │ │ │ ├── keyboard.h │ │ │ │ ├── keyctl.h │ │ │ │ ├── l2tp.h │ │ │ │ ├── limits.h │ │ │ │ ├── llc.h │ │ │ │ ├── loop.h │ │ │ │ ├── lp.h │ │ │ │ ├── magic.h │ │ │ │ ├── major.h │ │ │ │ ├── map_to_7segment.h │ │ │ │ ├── matroxfb.h │ │ │ │ ├── media.h │ │ │ │ ├── mempolicy.h │ │ │ │ ├── meye.h │ │ │ │ ├── mii.h │ │ │ │ ├── minix_fs.h │ │ │ │ ├── mman.h │ │ │ │ ├── mmc │ │ │ │ │ └── ioctl.h │ │ │ │ ├── mmtimer.h │ │ │ │ ├── mqueue.h │ │ │ │ ├── mroute.h │ │ │ │ ├── mroute6.h │ │ │ │ ├── msdos_fs.h │ │ │ │ ├── msg.h │ │ │ │ ├── mtio.h │ │ │ │ ├── n_r3964.h │ │ │ │ ├── nbd.h │ │ │ │ ├── ncp.h │ │ │ │ ├── ncp_fs.h │ │ │ │ ├── ncp_mount.h │ │ │ │ ├── ncp_no.h │ │ │ │ ├── neighbour.h │ │ │ │ ├── net.h │ │ │ │ ├── net_dropmon.h │ │ │ │ ├── net_tstamp.h │ │ │ │ ├── netdevice.h │ │ │ │ ├── netfilter.h │ │ │ │ ├── netfilter │ │ │ │ │ ├── ipset │ │ │ │ │ │ ├── ip_set.h │ │ │ │ │ │ ├── ip_set_bitmap.h │ │ │ │ │ │ ├── ip_set_hash.h │ │ │ │ │ │ └── ip_set_list.h │ │ │ │ │ ├── nf_conntrack_common.h │ │ │ │ │ ├── nf_conntrack_ftp.h │ │ │ │ │ ├── nf_conntrack_sctp.h │ │ │ │ │ ├── nf_conntrack_tcp.h │ │ │ │ │ ├── nf_conntrack_tuple_common.h │ │ │ │ │ ├── nfnetlink.h │ │ │ │ │ ├── nfnetlink_compat.h │ │ │ │ │ ├── nfnetlink_conntrack.h │ │ │ │ │ ├── nfnetlink_log.h │ │ │ │ │ ├── nfnetlink_queue.h │ │ │ │ │ ├── x_tables.h │ │ │ │ │ ├── xt_AUDIT.h │ │ │ │ │ ├── xt_CHECKSUM.h │ │ │ │ │ ├── xt_CLASSIFY.h │ │ │ │ │ ├── xt_CONNSECMARK.h │ │ │ │ │ ├── xt_CT.h │ │ │ │ │ ├── xt_DSCP.h │ │ │ │ │ ├── xt_IDLETIMER.h │ │ │ │ │ ├── xt_LED.h │ │ │ │ │ ├── xt_NFLOG.h │ │ │ │ │ ├── xt_NFQUEUE.h │ │ │ │ │ ├── xt_SECMARK.h │ │ │ │ │ ├── xt_TCPMSS.h │ │ │ │ │ ├── xt_TCPOPTSTRIP.h │ │ │ │ │ ├── xt_TEE.h │ │ │ │ │ ├── xt_TPROXY.h │ │ │ │ │ ├── xt_addrtype.h │ │ │ │ │ ├── xt_cluster.h │ │ │ │ │ ├── xt_comment.h │ │ │ │ │ ├── xt_connbytes.h │ │ │ │ │ ├── xt_connlimit.h │ │ │ │ │ ├── xt_connmark.h │ │ │ │ │ ├── xt_conntrack.h │ │ │ │ │ ├── xt_cpu.h │ │ │ │ │ ├── xt_dccp.h │ │ │ │ │ ├── xt_devgroup.h │ │ │ │ │ ├── xt_esp.h │ │ │ │ │ ├── xt_hashlimit.h │ │ │ │ │ ├── xt_helper.h │ │ │ │ │ ├── xt_iprange.h │ │ │ │ │ ├── xt_ipvs.h │ │ │ │ │ ├── xt_length.h │ │ │ │ │ ├── xt_limit.h │ │ │ │ │ ├── xt_mac.h │ │ │ │ │ ├── xt_mark.h │ │ │ │ │ ├── xt_multiport.h │ │ │ │ │ ├── xt_osf.h │ │ │ │ │ ├── xt_owner.h │ │ │ │ │ ├── xt_physdev.h │ │ │ │ │ ├── xt_pkttype.h │ │ │ │ │ ├── xt_policy.h │ │ │ │ │ ├── xt_quota.h │ │ │ │ │ ├── xt_rateest.h │ │ │ │ │ ├── xt_realm.h │ │ │ │ │ ├── xt_recent.h │ │ │ │ │ ├── xt_sctp.h │ │ │ │ │ ├── xt_set.h │ │ │ │ │ ├── xt_socket.h │ │ │ │ │ ├── xt_state.h │ │ │ │ │ ├── xt_statistic.h │ │ │ │ │ ├── xt_string.h │ │ │ │ │ ├── xt_tcpudp.h │ │ │ │ │ ├── xt_time.h │ │ │ │ │ └── xt_u32.h │ │ │ │ ├── netfilter_arp.h │ │ │ │ ├── netfilter_arp │ │ │ │ │ ├── arp_tables.h │ │ │ │ │ └── arpt_mangle.h │ │ │ │ ├── netfilter_bridge.h │ │ │ │ ├── netfilter_bridge │ │ │ │ │ ├── ebt_802_3.h │ │ │ │ │ ├── ebt_among.h │ │ │ │ │ ├── ebt_arp.h │ │ │ │ │ ├── ebt_arpreply.h │ │ │ │ │ ├── ebt_ip.h │ │ │ │ │ ├── ebt_ip6.h │ │ │ │ │ ├── ebt_limit.h │ │ │ │ │ ├── ebt_log.h │ │ │ │ │ ├── ebt_mark_m.h │ │ │ │ │ ├── ebt_mark_t.h │ │ │ │ │ ├── ebt_nat.h │ │ │ │ │ ├── ebt_nflog.h │ │ │ │ │ ├── ebt_pkttype.h │ │ │ │ │ ├── ebt_redirect.h │ │ │ │ │ ├── ebt_stp.h │ │ │ │ │ ├── ebt_ulog.h │ │ │ │ │ ├── ebt_vlan.h │ │ │ │ │ └── ebtables.h │ │ │ │ ├── netfilter_decnet.h │ │ │ │ ├── netfilter_ipv4.h │ │ │ │ ├── netfilter_ipv4 │ │ │ │ │ ├── ip_queue.h │ │ │ │ │ ├── ip_tables.h │ │ │ │ │ ├── ipt_CLUSTERIP.h │ │ │ │ │ ├── ipt_ECN.h │ │ │ │ │ ├── ipt_LOG.h │ │ │ │ │ ├── ipt_REJECT.h │ │ │ │ │ ├── ipt_SAME.h │ │ │ │ │ ├── ipt_ULOG.h │ │ │ │ │ ├── ipt_addrtype.h │ │ │ │ │ ├── ipt_ah.h │ │ │ │ │ ├── ipt_realm.h │ │ │ │ │ └── ipt_ttl.h │ │ │ │ ├── netfilter_ipv6.h │ │ │ │ ├── netfilter_ipv6 │ │ │ │ │ ├── ip6_tables.h │ │ │ │ │ ├── ip6t_LOG.h │ │ │ │ │ ├── ip6t_REJECT.h │ │ │ │ │ ├── ip6t_ah.h │ │ │ │ │ ├── ip6t_frag.h │ │ │ │ │ ├── ip6t_hl.h │ │ │ │ │ ├── ip6t_ipv6header.h │ │ │ │ │ ├── ip6t_mh.h │ │ │ │ │ ├── ip6t_opts.h │ │ │ │ │ └── ip6t_rt.h │ │ │ │ ├── netlink.h │ │ │ │ ├── netrom.h │ │ │ │ ├── nfs.h │ │ │ │ ├── nfs2.h │ │ │ │ ├── nfs3.h │ │ │ │ ├── nfs4.h │ │ │ │ ├── nfs4_mount.h │ │ │ │ ├── nfs_fs.h │ │ │ │ ├── nfs_idmap.h │ │ │ │ ├── nfs_mount.h │ │ │ │ ├── nfsacl.h │ │ │ │ ├── nfsd │ │ │ │ │ ├── const.h │ │ │ │ │ ├── debug.h │ │ │ │ │ ├── export.h │ │ │ │ │ ├── nfsfh.h │ │ │ │ │ ├── stats.h │ │ │ │ │ └── syscall.h │ │ │ │ ├── nl80211.h │ │ │ │ ├── nubus.h │ │ │ │ ├── nvram.h │ │ │ │ ├── omap3isp.h │ │ │ │ ├── omapfb.h │ │ │ │ ├── oom.h │ │ │ │ ├── param.h │ │ │ │ ├── parport.h │ │ │ │ ├── patchkey.h │ │ │ │ ├── pci.h │ │ │ │ ├── pci_regs.h │ │ │ │ ├── perf_event.h │ │ │ │ ├── personality.h │ │ │ │ ├── pfkeyv2.h │ │ │ │ ├── pg.h │ │ │ │ ├── phantom.h │ │ │ │ ├── phonet.h │ │ │ │ ├── pkt_cls.h │ │ │ │ ├── pkt_sched.h │ │ │ │ ├── pktcdvd.h │ │ │ │ ├── pmu.h │ │ │ │ ├── poll.h │ │ │ │ ├── posix_types.h │ │ │ │ ├── ppdev.h │ │ │ │ ├── ppp-comp.h │ │ │ │ ├── ppp_defs.h │ │ │ │ ├── pps.h │ │ │ │ ├── prctl.h │ │ │ │ ├── ptp_clock.h │ │ │ │ ├── ptrace.h │ │ │ │ ├── qnx4_fs.h │ │ │ │ ├── qnxtypes.h │ │ │ │ ├── quota.h │ │ │ │ ├── radeonfb.h │ │ │ │ ├── raid │ │ │ │ │ ├── md_p.h │ │ │ │ │ └── md_u.h │ │ │ │ ├── random.h │ │ │ │ ├── raw.h │ │ │ │ ├── rds.h │ │ │ │ ├── reboot.h │ │ │ │ ├── reiserfs_fs.h │ │ │ │ ├── reiserfs_xattr.h │ │ │ │ ├── resource.h │ │ │ │ ├── rfkill.h │ │ │ │ ├── romfs_fs.h │ │ │ │ ├── rose.h │ │ │ │ ├── route.h │ │ │ │ ├── rtc.h │ │ │ │ ├── rtnetlink.h │ │ │ │ ├── scc.h │ │ │ │ ├── sched.h │ │ │ │ ├── screen_info.h │ │ │ │ ├── sdla.h │ │ │ │ ├── securebits.h │ │ │ │ ├── selinux_netlink.h │ │ │ │ ├── sem.h │ │ │ │ ├── serial.h │ │ │ │ ├── serial_core.h │ │ │ │ ├── serial_reg.h │ │ │ │ ├── serio.h │ │ │ │ ├── shm.h │ │ │ │ ├── signal.h │ │ │ │ ├── signalfd.h │ │ │ │ ├── snmp.h │ │ │ │ ├── socket.h │ │ │ │ ├── sockios.h │ │ │ │ ├── som.h │ │ │ │ ├── sonet.h │ │ │ │ ├── sonypi.h │ │ │ │ ├── sound.h │ │ │ │ ├── soundcard.h │ │ │ │ ├── spi │ │ │ │ │ └── spidev.h │ │ │ │ ├── stat.h │ │ │ │ ├── stddef.h │ │ │ │ ├── string.h │ │ │ │ ├── sunrpc │ │ │ │ │ └── debug.h │ │ │ │ ├── suspend_ioctls.h │ │ │ │ ├── swab.h │ │ │ │ ├── synclink.h │ │ │ │ ├── sysctl.h │ │ │ │ ├── taskstats.h │ │ │ │ ├── tc_act │ │ │ │ │ ├── tc_csum.h │ │ │ │ │ ├── tc_gact.h │ │ │ │ │ ├── tc_ipt.h │ │ │ │ │ ├── tc_mirred.h │ │ │ │ │ ├── tc_nat.h │ │ │ │ │ ├── tc_pedit.h │ │ │ │ │ └── tc_skbedit.h │ │ │ │ ├── tc_ematch │ │ │ │ │ ├── tc_em_cmp.h │ │ │ │ │ ├── tc_em_meta.h │ │ │ │ │ ├── tc_em_nbyte.h │ │ │ │ │ └── tc_em_text.h │ │ │ │ ├── tcp.h │ │ │ │ ├── telephony.h │ │ │ │ ├── termios.h │ │ │ │ ├── time.h │ │ │ │ ├── times.h │ │ │ │ ├── timex.h │ │ │ │ ├── tiocl.h │ │ │ │ ├── tipc.h │ │ │ │ ├── tipc_config.h │ │ │ │ ├── toshiba.h │ │ │ │ ├── tty.h │ │ │ │ ├── types.h │ │ │ │ ├── udf_fs_i.h │ │ │ │ ├── udp.h │ │ │ │ ├── uinput.h │ │ │ │ ├── uio.h │ │ │ │ ├── ultrasound.h │ │ │ │ ├── un.h │ │ │ │ ├── unistd.h │ │ │ │ ├── usb │ │ │ │ │ ├── audio.h │ │ │ │ │ ├── cdc.h │ │ │ │ │ ├── ch11.h │ │ │ │ │ ├── ch9.h │ │ │ │ │ ├── functionfs.h │ │ │ │ │ ├── g_printer.h │ │ │ │ │ ├── gadgetfs.h │ │ │ │ │ ├── midi.h │ │ │ │ │ └── tmc.h │ │ │ │ ├── usbdevice_fs.h │ │ │ │ ├── utime.h │ │ │ │ ├── utsname.h │ │ │ │ ├── uvcvideo.h │ │ │ │ ├── v4l2-mediabus.h │ │ │ │ ├── v4l2-subdev.h │ │ │ │ ├── version.h │ │ │ │ ├── veth.h │ │ │ │ ├── vhost.h │ │ │ │ ├── videodev2.h │ │ │ │ ├── virtio_9p.h │ │ │ │ ├── virtio_balloon.h │ │ │ │ ├── virtio_blk.h │ │ │ │ ├── virtio_config.h │ │ │ │ ├── virtio_console.h │ │ │ │ ├── virtio_ids.h │ │ │ │ ├── virtio_net.h │ │ │ │ ├── virtio_pci.h │ │ │ │ ├── virtio_ring.h │ │ │ │ ├── virtio_rng.h │ │ │ │ ├── vt.h │ │ │ │ ├── wait.h │ │ │ │ ├── wanrouter.h │ │ │ │ ├── watchdog.h │ │ │ │ ├── wimax.h │ │ │ │ ├── wimax │ │ │ │ │ └── i2400m.h │ │ │ │ ├── wireless.h │ │ │ │ ├── x25.h │ │ │ │ ├── xattr.h │ │ │ │ └── xfrm.h │ │ │ ├── locale.h │ │ │ ├── malloc.h │ │ │ ├── math.h │ │ │ ├── mcheck.h │ │ │ ├── memory.h │ │ │ ├── mntent.h │ │ │ ├── monetary.h │ │ │ ├── mqueue.h │ │ │ ├── mtd │ │ │ │ ├── inftl-user.h │ │ │ │ ├── mtd-abi.h │ │ │ │ ├── mtd-user.h │ │ │ │ ├── nftl-user.h │ │ │ │ └── ubi-user.h │ │ │ ├── net │ │ │ │ ├── ethernet.h │ │ │ │ ├── if.h │ │ │ │ ├── if_arp.h │ │ │ │ ├── if_packet.h │ │ │ │ ├── if_ppp.h │ │ │ │ ├── if_shaper.h │ │ │ │ ├── if_slip.h │ │ │ │ ├── ppp-comp.h │ │ │ │ ├── ppp_defs.h │ │ │ │ └── route.h │ │ │ ├── netash │ │ │ │ └── ash.h │ │ │ ├── netatalk │ │ │ │ └── at.h │ │ │ ├── netax25 │ │ │ │ └── ax25.h │ │ │ ├── netdb.h │ │ │ ├── neteconet │ │ │ │ └── ec.h │ │ │ ├── netinet │ │ │ │ ├── ether.h │ │ │ │ ├── icmp6.h │ │ │ │ ├── if_ether.h │ │ │ │ ├── if_fddi.h │ │ │ │ ├── if_tr.h │ │ │ │ ├── igmp.h │ │ │ │ ├── in.h │ │ │ │ ├── in_systm.h │ │ │ │ ├── ip.h │ │ │ │ ├── ip6.h │ │ │ │ ├── ip_icmp.h │ │ │ │ ├── tcp.h │ │ │ │ └── udp.h │ │ │ ├── netipx │ │ │ │ └── ipx.h │ │ │ ├── netiucv │ │ │ │ └── iucv.h │ │ │ ├── netpacket │ │ │ │ └── packet.h │ │ │ ├── netrom │ │ │ │ └── netrom.h │ │ │ ├── netrose │ │ │ │ └── rose.h │ │ │ ├── nfs │ │ │ │ └── nfs.h │ │ │ ├── nl_types.h │ │ │ ├── nss.h │ │ │ ├── obstack.h │ │ │ ├── paths.h │ │ │ ├── poll.h │ │ │ ├── printf.h │ │ │ ├── protocols │ │ │ │ ├── routed.h │ │ │ │ ├── rwhod.h │ │ │ │ ├── talkd.h │ │ │ │ └── timed.h │ │ │ ├── pthread.h │ │ │ ├── pty.h │ │ │ ├── pwd.h │ │ │ ├── rdma │ │ │ │ ├── ib_user_cm.h │ │ │ │ ├── ib_user_mad.h │ │ │ │ ├── ib_user_sa.h │ │ │ │ ├── ib_user_verbs.h │ │ │ │ ├── rdma_netlink.h │ │ │ │ └── rdma_user_cm.h │ │ │ ├── re_comp.h │ │ │ ├── regex.h │ │ │ ├── regexp.h │ │ │ ├── resolv.h │ │ │ ├── rpc │ │ │ │ ├── auth.h │ │ │ │ ├── auth_des.h │ │ │ │ ├── auth_unix.h │ │ │ │ ├── clnt.h │ │ │ │ ├── des_crypt.h │ │ │ │ ├── key_prot.h │ │ │ │ ├── netdb.h │ │ │ │ ├── pmap_clnt.h │ │ │ │ ├── pmap_prot.h │ │ │ │ ├── pmap_rmt.h │ │ │ │ ├── rpc.h │ │ │ │ ├── rpc_des.h │ │ │ │ ├── rpc_msg.h │ │ │ │ ├── svc.h │ │ │ │ ├── svc_auth.h │ │ │ │ ├── types.h │ │ │ │ └── xdr.h │ │ │ ├── rpcsvc │ │ │ │ ├── bootparam.h │ │ │ │ ├── bootparam_prot.h │ │ │ │ ├── bootparam_prot.x │ │ │ │ ├── key_prot.h │ │ │ │ ├── key_prot.x │ │ │ │ ├── klm_prot.h │ │ │ │ ├── klm_prot.x │ │ │ │ ├── mount.h │ │ │ │ ├── mount.x │ │ │ │ ├── nfs_prot.h │ │ │ │ ├── nfs_prot.x │ │ │ │ ├── nis.h │ │ │ │ ├── nis.x │ │ │ │ ├── nis_callback.h │ │ │ │ ├── nis_callback.x │ │ │ │ ├── nis_object.x │ │ │ │ ├── nis_tags.h │ │ │ │ ├── nislib.h │ │ │ │ ├── nlm_prot.h │ │ │ │ ├── nlm_prot.x │ │ │ │ ├── rex.h │ │ │ │ ├── rex.x │ │ │ │ ├── rquota.h │ │ │ │ ├── rquota.x │ │ │ │ ├── rstat.h │ │ │ │ ├── rstat.x │ │ │ │ ├── rusers.h │ │ │ │ ├── rusers.x │ │ │ │ ├── sm_inter.h │ │ │ │ ├── sm_inter.x │ │ │ │ ├── spray.h │ │ │ │ ├── spray.x │ │ │ │ ├── yp.h │ │ │ │ ├── yp.x │ │ │ │ ├── yp_prot.h │ │ │ │ ├── ypclnt.h │ │ │ │ ├── yppasswd.h │ │ │ │ ├── yppasswd.x │ │ │ │ └── ypupd.h │ │ │ ├── sched.h │ │ │ ├── scsi │ │ │ │ ├── scsi.h │ │ │ │ ├── scsi_ioctl.h │ │ │ │ └── sg.h │ │ │ ├── search.h │ │ │ ├── semaphore.h │ │ │ ├── setjmp.h │ │ │ ├── sgtty.h │ │ │ ├── shadow.h │ │ │ ├── signal.h │ │ │ ├── sound │ │ │ │ ├── asequencer.h │ │ │ │ ├── asound.h │ │ │ │ ├── asound_fm.h │ │ │ │ ├── emu10k1.h │ │ │ │ ├── hdsp.h │ │ │ │ ├── hdspm.h │ │ │ │ ├── sb16_csp.h │ │ │ │ └── sfnt_info.h │ │ │ ├── spawn.h │ │ │ ├── stab.h │ │ │ ├── stdint.h │ │ │ ├── stdio.h │ │ │ ├── stdio_ext.h │ │ │ ├── stdlib.h │ │ │ ├── string.h │ │ │ ├── strings.h │ │ │ ├── stropts.h │ │ │ ├── syscall.h │ │ │ ├── sysexits.h │ │ │ ├── syslog.h │ │ │ ├── tar.h │ │ │ ├── termio.h │ │ │ ├── termios.h │ │ │ ├── tgmath.h │ │ │ ├── thread_db.h │ │ │ ├── time.h │ │ │ ├── ttyent.h │ │ │ ├── ucontext.h │ │ │ ├── ulimit.h │ │ │ ├── unistd.h │ │ │ ├── ustat.h │ │ │ ├── utime.h │ │ │ ├── utmp.h │ │ │ ├── utmpx.h │ │ │ ├── values.h │ │ │ ├── video │ │ │ │ ├── edid.h │ │ │ │ ├── sisfb.h │ │ │ │ └── uvesafb.h │ │ │ ├── wait.h │ │ │ ├── wchar.h │ │ │ ├── wctype.h │ │ │ ├── wordexp.h │ │ │ ├── xen │ │ │ │ ├── evtchn.h │ │ │ │ └── privcmd.h │ │ │ └── xlocale.h │ │ │ ├── lib │ │ │ └── arm-linux-gnueabi │ │ │ │ ├── gconv │ │ │ │ ├── ANSI_X3.110.so │ │ │ │ ├── ARMSCII-8.so │ │ │ │ ├── ASMO_449.so │ │ │ │ ├── BIG5.so │ │ │ │ ├── BIG5HKSCS.so │ │ │ │ ├── BRF.so │ │ │ │ ├── CP10007.so │ │ │ │ ├── CP1125.so │ │ │ │ ├── CP1250.so │ │ │ │ ├── CP1251.so │ │ │ │ ├── CP1252.so │ │ │ │ ├── CP1253.so │ │ │ │ ├── CP1254.so │ │ │ │ ├── CP1255.so │ │ │ │ ├── CP1256.so │ │ │ │ ├── CP1257.so │ │ │ │ ├── CP1258.so │ │ │ │ ├── CP737.so │ │ │ │ ├── CP775.so │ │ │ │ ├── CP932.so │ │ │ │ ├── CSN_369103.so │ │ │ │ ├── CWI.so │ │ │ │ ├── DEC-MCS.so │ │ │ │ ├── EBCDIC-AT-DE-A.so │ │ │ │ ├── EBCDIC-AT-DE.so │ │ │ │ ├── EBCDIC-CA-FR.so │ │ │ │ ├── EBCDIC-DK-NO-A.so │ │ │ │ ├── EBCDIC-DK-NO.so │ │ │ │ ├── EBCDIC-ES-A.so │ │ │ │ ├── EBCDIC-ES-S.so │ │ │ │ ├── EBCDIC-ES.so │ │ │ │ ├── EBCDIC-FI-SE-A.so │ │ │ │ ├── EBCDIC-FI-SE.so │ │ │ │ ├── EBCDIC-FR.so │ │ │ │ ├── EBCDIC-IS-FRISS.so │ │ │ │ ├── EBCDIC-IT.so │ │ │ │ ├── EBCDIC-PT.so │ │ │ │ ├── EBCDIC-UK.so │ │ │ │ ├── EBCDIC-US.so │ │ │ │ ├── ECMA-CYRILLIC.so │ │ │ │ ├── EUC-CN.so │ │ │ │ ├── EUC-JISX0213.so │ │ │ │ ├── EUC-JP-MS.so │ │ │ │ ├── EUC-JP.so │ │ │ │ ├── EUC-KR.so │ │ │ │ ├── EUC-TW.so │ │ │ │ ├── GB18030.so │ │ │ │ ├── GBBIG5.so │ │ │ │ ├── GBGBK.so │ │ │ │ ├── GBK.so │ │ │ │ ├── GEORGIAN-ACADEMY.so │ │ │ │ ├── GEORGIAN-PS.so │ │ │ │ ├── GOST_19768-74.so │ │ │ │ ├── GREEK-CCITT.so │ │ │ │ ├── GREEK7-OLD.so │ │ │ │ ├── GREEK7.so │ │ │ │ ├── HP-GREEK8.so │ │ │ │ ├── HP-ROMAN8.so │ │ │ │ ├── HP-ROMAN9.so │ │ │ │ ├── HP-THAI8.so │ │ │ │ ├── HP-TURKISH8.so │ │ │ │ ├── IBM037.so │ │ │ │ ├── IBM038.so │ │ │ │ ├── IBM1004.so │ │ │ │ ├── IBM1008.so │ │ │ │ ├── IBM1008_420.so │ │ │ │ ├── IBM1025.so │ │ │ │ ├── IBM1026.so │ │ │ │ ├── IBM1046.so │ │ │ │ ├── IBM1047.so │ │ │ │ ├── IBM1097.so │ │ │ │ ├── IBM1112.so │ │ │ │ ├── IBM1122.so │ │ │ │ ├── IBM1123.so │ │ │ │ ├── IBM1124.so │ │ │ │ ├── IBM1129.so │ │ │ │ ├── IBM1130.so │ │ │ │ ├── IBM1132.so │ │ │ │ ├── IBM1133.so │ │ │ │ ├── IBM1137.so │ │ │ │ ├── IBM1140.so │ │ │ │ ├── IBM1141.so │ │ │ │ ├── IBM1142.so │ │ │ │ ├── IBM1143.so │ │ │ │ ├── IBM1144.so │ │ │ │ ├── IBM1145.so │ │ │ │ ├── IBM1146.so │ │ │ │ ├── IBM1147.so │ │ │ │ ├── IBM1148.so │ │ │ │ ├── IBM1149.so │ │ │ │ ├── IBM1153.so │ │ │ │ ├── IBM1154.so │ │ │ │ ├── IBM1155.so │ │ │ │ ├── IBM1156.so │ │ │ │ ├── IBM1157.so │ │ │ │ ├── IBM1158.so │ │ │ │ ├── IBM1160.so │ │ │ │ ├── IBM1161.so │ │ │ │ ├── IBM1162.so │ │ │ │ ├── IBM1163.so │ │ │ │ ├── IBM1164.so │ │ │ │ ├── IBM1166.so │ │ │ │ ├── IBM1167.so │ │ │ │ ├── IBM12712.so │ │ │ │ ├── IBM1364.so │ │ │ │ ├── IBM1371.so │ │ │ │ ├── IBM1388.so │ │ │ │ ├── IBM1390.so │ │ │ │ ├── IBM1399.so │ │ │ │ ├── IBM16804.so │ │ │ │ ├── IBM256.so │ │ │ │ ├── IBM273.so │ │ │ │ ├── IBM274.so │ │ │ │ ├── IBM275.so │ │ │ │ ├── IBM277.so │ │ │ │ ├── IBM278.so │ │ │ │ ├── IBM280.so │ │ │ │ ├── IBM281.so │ │ │ │ ├── IBM284.so │ │ │ │ ├── IBM285.so │ │ │ │ ├── IBM290.so │ │ │ │ ├── IBM297.so │ │ │ │ ├── IBM420.so │ │ │ │ ├── IBM423.so │ │ │ │ ├── IBM424.so │ │ │ │ ├── IBM437.so │ │ │ │ ├── IBM4517.so │ │ │ │ ├── IBM4899.so │ │ │ │ ├── IBM4909.so │ │ │ │ ├── IBM4971.so │ │ │ │ ├── IBM500.so │ │ │ │ ├── IBM5347.so │ │ │ │ ├── IBM803.so │ │ │ │ ├── IBM850.so │ │ │ │ ├── IBM851.so │ │ │ │ ├── IBM852.so │ │ │ │ ├── IBM855.so │ │ │ │ ├── IBM856.so │ │ │ │ ├── IBM857.so │ │ │ │ ├── IBM860.so │ │ │ │ ├── IBM861.so │ │ │ │ ├── IBM862.so │ │ │ │ ├── IBM863.so │ │ │ │ ├── IBM864.so │ │ │ │ ├── IBM865.so │ │ │ │ ├── IBM866.so │ │ │ │ ├── IBM866NAV.so │ │ │ │ ├── IBM868.so │ │ │ │ ├── IBM869.so │ │ │ │ ├── IBM870.so │ │ │ │ ├── IBM871.so │ │ │ │ ├── IBM874.so │ │ │ │ ├── IBM875.so │ │ │ │ ├── IBM880.so │ │ │ │ ├── IBM891.so │ │ │ │ ├── IBM901.so │ │ │ │ ├── IBM902.so │ │ │ │ ├── IBM903.so │ │ │ │ ├── IBM9030.so │ │ │ │ ├── IBM904.so │ │ │ │ ├── IBM905.so │ │ │ │ ├── IBM9066.so │ │ │ │ ├── IBM918.so │ │ │ │ ├── IBM921.so │ │ │ │ ├── IBM922.so │ │ │ │ ├── IBM930.so │ │ │ │ ├── IBM932.so │ │ │ │ ├── IBM933.so │ │ │ │ ├── IBM935.so │ │ │ │ ├── IBM937.so │ │ │ │ ├── IBM939.so │ │ │ │ ├── IBM943.so │ │ │ │ ├── IBM9448.so │ │ │ │ ├── IEC_P27-1.so │ │ │ │ ├── INIS-8.so │ │ │ │ ├── INIS-CYRILLIC.so │ │ │ │ ├── INIS.so │ │ │ │ ├── ISIRI-3342.so │ │ │ │ ├── ISO-2022-CN-EXT.so │ │ │ │ ├── ISO-2022-CN.so │ │ │ │ ├── ISO-2022-JP-3.so │ │ │ │ ├── ISO-2022-JP.so │ │ │ │ ├── ISO-2022-KR.so │ │ │ │ ├── ISO-IR-197.so │ │ │ │ ├── ISO-IR-209.so │ │ │ │ ├── ISO646.so │ │ │ │ ├── ISO8859-1.so │ │ │ │ ├── ISO8859-10.so │ │ │ │ ├── ISO8859-11.so │ │ │ │ ├── ISO8859-13.so │ │ │ │ ├── ISO8859-14.so │ │ │ │ ├── ISO8859-15.so │ │ │ │ ├── ISO8859-16.so │ │ │ │ ├── ISO8859-2.so │ │ │ │ ├── ISO8859-3.so │ │ │ │ ├── ISO8859-4.so │ │ │ │ ├── ISO8859-5.so │ │ │ │ ├── ISO8859-6.so │ │ │ │ ├── ISO8859-7.so │ │ │ │ ├── ISO8859-8.so │ │ │ │ ├── ISO8859-9.so │ │ │ │ ├── ISO8859-9E.so │ │ │ │ ├── ISO_10367-BOX.so │ │ │ │ ├── ISO_11548-1.so │ │ │ │ ├── ISO_2033.so │ │ │ │ ├── ISO_5427-EXT.so │ │ │ │ ├── ISO_5427.so │ │ │ │ ├── ISO_5428.so │ │ │ │ ├── ISO_6937-2.so │ │ │ │ ├── ISO_6937.so │ │ │ │ ├── JOHAB.so │ │ │ │ ├── KOI-8.so │ │ │ │ ├── KOI8-R.so │ │ │ │ ├── KOI8-RU.so │ │ │ │ ├── KOI8-T.so │ │ │ │ ├── KOI8-U.so │ │ │ │ ├── LATIN-GREEK-1.so │ │ │ │ ├── LATIN-GREEK.so │ │ │ │ ├── MAC-CENTRALEUROPE.so │ │ │ │ ├── MAC-IS.so │ │ │ │ ├── MAC-SAMI.so │ │ │ │ ├── MAC-UK.so │ │ │ │ ├── MACINTOSH.so │ │ │ │ ├── MIK.so │ │ │ │ ├── NATS-DANO.so │ │ │ │ ├── NATS-SEFI.so │ │ │ │ ├── PT154.so │ │ │ │ ├── RK1048.so │ │ │ │ ├── SAMI-WS2.so │ │ │ │ ├── SHIFT_JISX0213.so │ │ │ │ ├── SJIS.so │ │ │ │ ├── T.61.so │ │ │ │ ├── TCVN5712-1.so │ │ │ │ ├── TIS-620.so │ │ │ │ ├── TSCII.so │ │ │ │ ├── UHC.so │ │ │ │ ├── UNICODE.so │ │ │ │ ├── UTF-16.so │ │ │ │ ├── UTF-32.so │ │ │ │ ├── UTF-7.so │ │ │ │ ├── VISCII.so │ │ │ │ ├── gconv-modules │ │ │ │ ├── gconv-modules.cache │ │ │ │ ├── libCNS.so │ │ │ │ ├── libGB.so │ │ │ │ ├── libISOIR165.so │ │ │ │ ├── libJIS.so │ │ │ │ ├── libJISX0213.so │ │ │ │ └── libKSC.so │ │ │ │ ├── libBrokenLocale.a │ │ │ │ ├── libBrokenLocale.so │ │ │ │ ├── libanl.a │ │ │ │ ├── libanl.so │ │ │ │ ├── libbsd-compat.a │ │ │ │ ├── libc.a │ │ │ │ ├── libc.so │ │ │ │ ├── libc_nonshared.a │ │ │ │ ├── libcidn.so │ │ │ │ ├── libcrypt.a │ │ │ │ ├── libcrypt.so │ │ │ │ ├── libdl.a │ │ │ │ ├── libdl.so │ │ │ │ ├── libg.a │ │ │ │ ├── libieee.a │ │ │ │ ├── libm.a │ │ │ │ ├── libm.so │ │ │ │ ├── libmcheck.a │ │ │ │ ├── libnsl.a │ │ │ │ ├── libnsl.so │ │ │ │ ├── libnss_compat.so │ │ │ │ ├── libnss_dns.so │ │ │ │ ├── libnss_files.so │ │ │ │ ├── libnss_hesiod.so │ │ │ │ ├── libnss_nis.so │ │ │ │ ├── libnss_nisplus.so │ │ │ │ ├── libpthread.a │ │ │ │ ├── libpthread.so │ │ │ │ ├── libpthread_nonshared.a │ │ │ │ ├── libresolv.a │ │ │ │ ├── libresolv.so │ │ │ │ ├── librpcsvc.a │ │ │ │ ├── librt.a │ │ │ │ ├── librt.so │ │ │ │ ├── libthread_db.so │ │ │ │ ├── libutil.a │ │ │ │ └── libutil.so │ │ │ └── share │ │ │ ├── doc │ │ │ ├── libc6-dev │ │ │ │ ├── CONFORMANCE.gz │ │ │ │ ├── FAQ.gz │ │ │ │ ├── NAMESPACE │ │ │ │ ├── NOTES.gz │ │ │ │ ├── README.libm.gz │ │ │ │ ├── changelog.Debian.gz │ │ │ │ └── copyright │ │ │ ├── libc6 │ │ │ │ ├── BUGS │ │ │ │ ├── FAQ.gz │ │ │ │ ├── NEWS.Debian.gz │ │ │ │ ├── NEWS.gz │ │ │ │ ├── README.Debian.gz │ │ │ │ ├── README.hesiod.gz │ │ │ │ ├── changelog.Debian.gz │ │ │ │ ├── copyright │ │ │ │ └── test-results-arm-linux-gnueabi-libc │ │ │ └── linux-libc-dev │ │ │ │ ├── changelog.Debian.gz │ │ │ │ └── copyright │ │ │ └── lintian │ │ │ └── overrides │ │ │ ├── libc6 │ │ │ └── libc6-dev │ ├── bin │ │ ├── arm-linux-gnueabi-addr2line │ │ ├── arm-linux-gnueabi-ar │ │ ├── arm-linux-gnueabi-as │ │ ├── arm-linux-gnueabi-c++ │ │ ├── arm-linux-gnueabi-c++filt │ │ ├── arm-linux-gnueabi-cpp │ │ ├── arm-linux-gnueabi-ct-ng.config │ │ ├── arm-linux-gnueabi-elfedit │ │ ├── arm-linux-gnueabi-g++ │ │ ├── arm-linux-gnueabi-gcc │ │ ├── arm-linux-gnueabi-gcc-4.6.3 │ │ ├── arm-linux-gnueabi-gcov │ │ ├── arm-linux-gnueabi-gdb │ │ ├── arm-linux-gnueabi-gdbtui │ │ ├── arm-linux-gnueabi-gfortran │ │ ├── arm-linux-gnueabi-gprof │ │ ├── arm-linux-gnueabi-ld │ │ ├── arm-linux-gnueabi-ld.bfd │ │ ├── arm-linux-gnueabi-ld.gold │ │ ├── arm-linux-gnueabi-ldd │ │ ├── arm-linux-gnueabi-nm │ │ ├── arm-linux-gnueabi-objcopy │ │ ├── arm-linux-gnueabi-objdump │ │ ├── arm-linux-gnueabi-pkg-config │ │ ├── arm-linux-gnueabi-pkg-config-real │ │ ├── arm-linux-gnueabi-ranlib │ │ ├── arm-linux-gnueabi-readelf │ │ ├── arm-linux-gnueabi-size │ │ ├── arm-linux-gnueabi-strings │ │ └── arm-linux-gnueabi-strip │ ├── lib │ │ └── gcc │ │ │ └── arm-linux-gnueabi │ │ │ └── 4.6.3 │ │ │ ├── include-fixed │ │ │ ├── README │ │ │ ├── limits.h │ │ │ ├── linux │ │ │ │ └── a.out.h │ │ │ └── syslimits.h │ │ │ ├── include │ │ │ ├── arm_neon.h │ │ │ ├── float.h │ │ │ ├── iso646.h │ │ │ ├── mmintrin.h │ │ │ ├── stdarg.h │ │ │ ├── stdbool.h │ │ │ ├── stddef.h │ │ │ ├── stdfix.h │ │ │ ├── stdint-gcc.h │ │ │ ├── stdint.h │ │ │ ├── unwind.h │ │ │ └── varargs.h │ │ │ ├── install-tools │ │ │ ├── fixinc_list │ │ │ ├── gsyslimits.h │ │ │ ├── include │ │ │ │ ├── README │ │ │ │ └── limits.h │ │ │ ├── macro_list │ │ │ └── mkheaders.conf │ │ │ ├── libgcc.a │ │ │ ├── libgcc_eh.a │ │ │ ├── libgcov.a │ │ │ ├── libgfortranbegin.a │ │ │ └── plugin │ │ │ ├── include │ │ │ ├── ada │ │ │ │ └── gcc-interface │ │ │ │ │ └── ada-tree.def │ │ │ ├── alias.h │ │ │ ├── all-tree.def │ │ │ ├── ansidecl.h │ │ │ ├── auto-host.h │ │ │ ├── b-header-vars │ │ │ ├── basic-block.h │ │ │ ├── bitmap.h │ │ │ ├── builtins.def │ │ │ ├── bversion.h │ │ │ ├── c-common.h │ │ │ ├── c-family │ │ │ │ └── c-common.def │ │ │ ├── c-objc.h │ │ │ ├── c-pragma.h │ │ │ ├── c-pretty-print.h │ │ │ ├── cfghooks.h │ │ │ ├── cfgloop.h │ │ │ ├── cgraph.h │ │ │ ├── cif-code.def │ │ │ ├── config.h │ │ │ ├── config │ │ │ │ ├── arm │ │ │ │ │ ├── aout.h │ │ │ │ │ ├── arm-protos.h │ │ │ │ │ ├── arm.h │ │ │ │ │ ├── bpabi.h │ │ │ │ │ ├── elf.h │ │ │ │ │ ├── linux-eabi.h │ │ │ │ │ ├── linux-elf.h │ │ │ │ │ └── linux-gas.h │ │ │ │ ├── dbxelf.h │ │ │ │ ├── elfos.h │ │ │ │ ├── glibc-stdint.h │ │ │ │ ├── gnu-user.h │ │ │ │ ├── linux-android.h │ │ │ │ └── linux.h │ │ │ ├── configargs.h │ │ │ ├── coretypes.h │ │ │ ├── cp │ │ │ │ ├── cp-tree.def │ │ │ │ ├── cp-tree.h │ │ │ │ ├── cxx-pretty-print.h │ │ │ │ └── name-lookup.h │ │ │ ├── cppdefault.h │ │ │ ├── cpplib.h │ │ │ ├── debug.h │ │ │ ├── defaults.h │ │ │ ├── diagnostic-core.h │ │ │ ├── diagnostic.def │ │ │ ├── diagnostic.h │ │ │ ├── double-int.h │ │ │ ├── emit-rtl.h │ │ │ ├── except.h │ │ │ ├── filenames.h │ │ │ ├── fixed-value.h │ │ │ ├── flag-types.h │ │ │ ├── flags.h │ │ │ ├── function.h │ │ │ ├── gcc-plugin.h │ │ │ ├── genrtl.h │ │ │ ├── ggc.h │ │ │ ├── gimple.def │ │ │ ├── gimple.h │ │ │ ├── gsstruct.def │ │ │ ├── gtype-desc.h │ │ │ ├── hard-reg-set.h │ │ │ ├── hashtab.h │ │ │ ├── highlev-plugin-common.h │ │ │ ├── hwint.h │ │ │ ├── incpath.h │ │ │ ├── input.h │ │ │ ├── insn-constants.h │ │ │ ├── insn-flags.h │ │ │ ├── insn-modes.h │ │ │ ├── insn-notes.def │ │ │ ├── internal-fn.def │ │ │ ├── internal-fn.h │ │ │ ├── intl.h │ │ │ ├── ipa-prop.h │ │ │ ├── ipa-ref-inline.h │ │ │ ├── ipa-ref.h │ │ │ ├── ipa-reference.h │ │ │ ├── ipa-utils.h │ │ │ ├── java │ │ │ │ └── java-tree.def │ │ │ ├── langhooks.h │ │ │ ├── libiberty.h │ │ │ ├── line-map.h │ │ │ ├── machmode.h │ │ │ ├── md5.h │ │ │ ├── mode-classes.def │ │ │ ├── objc │ │ │ │ └── objc-tree.def │ │ │ ├── obstack.h │ │ │ ├── omp-builtins.def │ │ │ ├── options.h │ │ │ ├── opts.h │ │ │ ├── output.h │ │ │ ├── params.def │ │ │ ├── params.h │ │ │ ├── plugin-api.h │ │ │ ├── plugin-version.h │ │ │ ├── plugin.def │ │ │ ├── plugin.h │ │ │ ├── pointer-set.h │ │ │ ├── predict.def │ │ │ ├── predict.h │ │ │ ├── prefix.h │ │ │ ├── pretty-print.h │ │ │ ├── real.h │ │ │ ├── reg-notes.def │ │ │ ├── rtl.def │ │ │ ├── rtl.h │ │ │ ├── safe-ctype.h │ │ │ ├── sbitmap.h │ │ │ ├── splay-tree.h │ │ │ ├── statistics.h │ │ │ ├── symtab.h │ │ │ ├── sync-builtins.def │ │ │ ├── system.h │ │ │ ├── target.def │ │ │ ├── target.h │ │ │ ├── timevar.def │ │ │ ├── timevar.h │ │ │ ├── tm-preds.h │ │ │ ├── tm.h │ │ │ ├── tm_p.h │ │ │ ├── toplev.h │ │ │ ├── tree-check.h │ │ │ ├── tree-dump.h │ │ │ ├── tree-flow-inline.h │ │ │ ├── tree-flow.h │ │ │ ├── tree-inline.h │ │ │ ├── tree-iterator.h │ │ │ ├── tree-pass.h │ │ │ ├── tree-ssa-alias.h │ │ │ ├── tree-ssa-operands.h │ │ │ ├── tree-ssa-sccvn.h │ │ │ ├── tree.def │ │ │ ├── tree.h │ │ │ ├── treestruct.def │ │ │ ├── vec.h │ │ │ ├── vecir.h │ │ │ ├── vecprim.h │ │ │ └── version.h │ │ │ └── libgcc │ │ │ └── config │ │ │ └── arm │ │ │ └── bpabi-lib.h │ └── libexec │ │ └── gcc │ │ └── arm-linux-gnueabi │ │ └── 4.6.3 │ │ ├── cc1 │ │ ├── cc1plus │ │ ├── collect2 │ │ ├── f951 │ │ ├── install-tools │ │ ├── fixinc.sh │ │ ├── fixincl │ │ ├── mkheaders │ │ └── mkinstalldirs │ │ ├── liblto_plugin.so │ │ ├── liblto_plugin.so.0 │ │ ├── liblto_plugin.so.0.0.0 │ │ ├── lto-wrapper │ │ └── lto1 └── storage_media_cfg │ ├── nand │ └── storage_media_cfg.h │ ├── sdcard │ └── storage_media_cfg.h │ └── spinor │ └── storage_media_cfg.h ├── pack ├── .gitignore ├── chips │ └── sun7i │ │ ├── configs │ │ └── linux │ │ │ ├── default │ │ │ ├── env.cfg │ │ │ ├── image.cfg │ │ │ └── sys_partition.fex │ │ │ └── qc │ │ │ └── sys_config.fex │ │ ├── eFex │ │ ├── card │ │ │ ├── cardscript.fex │ │ │ ├── cardtool-uboot.fex │ │ │ └── cardtool.fex │ │ ├── split_xxxx.fex │ │ └── usb │ │ │ ├── aultls32.fex │ │ │ ├── aultools.fex │ │ │ ├── card_HW_scan.axf │ │ │ ├── card_update_boot0.axf │ │ │ ├── card_update_boot1.axf │ │ │ ├── fed_card.axf │ │ │ ├── fed_nand.axf │ │ │ ├── fes.fex │ │ │ ├── fes_1-1.fex │ │ │ ├── fes_1-2.fex │ │ │ ├── fes_2.fex │ │ │ ├── fet_restore.axf │ │ │ ├── hw_scan.axf │ │ │ ├── magic_cr_end.fex │ │ │ ├── magic_cr_start.fex │ │ │ ├── magic_de_end.fex │ │ │ ├── magic_de_start.fex │ │ │ ├── toolsb.fex │ │ │ ├── update_boot0.axf │ │ │ └── update_boot1.axf │ │ ├── eGon │ │ ├── boot0_nand.bin │ │ ├── boot0_sdcard.bin │ │ ├── boot1_nand.bin │ │ └── boot1_sdcard.bin │ │ └── wboot │ │ ├── bootfs.ini │ │ └── bootfs │ │ ├── boot.axf │ │ ├── boot.ini │ │ ├── drv_de.drv │ │ ├── drv_hdmi.drv │ │ ├── font24.sft │ │ ├── font32.sft │ │ ├── linux │ │ ├── linux.bmp │ │ ├── linux.ini │ │ └── u-boot.bin │ │ ├── os_show │ │ ├── bat0.bmp │ │ ├── bat1.bmp │ │ ├── bat10.bmp │ │ ├── bat2.bmp │ │ ├── bat3.bmp │ │ ├── bat4.bmp │ │ ├── bat5.bmp │ │ ├── bat6.bmp │ │ ├── bat7.bmp │ │ ├── bat8.bmp │ │ ├── bat9.bmp │ │ ├── battery.bmp │ │ ├── bempty.bmp │ │ ├── bootlogo.bmp │ │ ├── empty.bmp │ │ ├── full.bmp │ │ ├── head.bmp │ │ ├── linux1.bmp │ │ ├── linux2.bmp │ │ ├── low_pwr.bmp │ │ ├── melis1.bmp │ │ ├── melis2.bmp │ │ ├── startup.bmp │ │ ├── tail.bmp │ │ ├── wince1.bmp │ │ └── wince2.bmp │ │ └── sprite.axf ├── pack └── pctools │ ├── linux │ ├── android │ │ └── mkbootimg │ ├── awk_debug_card0 │ ├── card_debug_pin │ ├── eDragonEx │ │ ├── AwPluginVector.dll │ │ ├── FileAddSum │ │ ├── FileAddSum.exe │ │ ├── ImageBuilder.dll │ │ ├── IniParasPlg.dll │ │ ├── IniParasPlgex.dll │ │ ├── dragon │ │ └── plgvector.dll │ ├── fsbuild200 │ │ ├── AwPluginVector.dll │ │ ├── FSProcess.dll │ │ ├── IniParasPlg.dll │ │ ├── RAMPart.dll │ │ ├── ScriptParser.dll │ │ ├── config.dll │ │ ├── fsbuild │ │ ├── fsbuild.exe │ │ ├── fstool.dll │ │ ├── readme.txt │ │ └── split_c43a2a92-a8ed-4f92-abdb-ca0d5d29666d.bin │ ├── libs │ │ ├── libstdc++.so.6 │ │ └── libstdc++.so.6.0.8 │ ├── mod_update │ │ ├── script │ │ ├── script_parse │ │ ├── u_boot_env_gen │ │ ├── update_boot0 │ │ ├── update_boot1 │ │ └── update_mbr │ └── shflags │ │ └── shflags │ └── windows │ ├── FSBuild200 │ ├── FSProcess.dll │ ├── RAMPart.dll │ ├── ScriptParser.dll │ ├── config.dll │ ├── fsbuild.exe │ └── fstool.dll │ ├── eDragonEx200 │ ├── AwPluginVector.dll │ ├── DataCheck.dll │ ├── Demo │ │ ├── readme.txt │ │ └── workspace │ │ │ └── sunii │ │ │ └── livetouch │ │ │ ├── image.bat │ │ │ ├── image.cfg │ │ │ └── setup │ │ │ ├── makezdisk.bat │ │ │ └── zdisk.cfg │ ├── FileAddSum.exe │ ├── ImageBuilder.dll │ ├── IniParasPlg.dll │ ├── compile.exe │ ├── dragon.exe │ ├── info_pack.exe │ └── lua5.1.dll │ ├── gen_check_code.exe │ └── mod_update │ ├── script.exe │ ├── script_old.exe │ ├── u_boot_env_gen.exe │ ├── update_23.exe │ └── update_mbr.exe └── workspace ├── egon ├── boot0_nand.bin ├── boot0_sdcard.bin ├── boot1_nand.bin └── boot1_sdcard.bin ├── pctools ├── gen_check_code └── gen_check_code.exe └── wboot └── bootfs ├── boot.axf ├── drv_de.drv ├── drv_hdmi.drv ├── prvt.axf └── sprite.axf /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/Makefile -------------------------------------------------------------------------------- /boot0/Boot0.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/Boot0.s -------------------------------------------------------------------------------- /boot0/Boot0_C_part.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/Boot0_C_part.c -------------------------------------------------------------------------------- /boot0/Boot0_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/Boot0_head.c -------------------------------------------------------------------------------- /boot0/boot0_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/boot0_i.h -------------------------------------------------------------------------------- /boot0/boot0_i.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/boot0_i.inc -------------------------------------------------------------------------------- /boot0/boot0_misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/boot0_misc.h -------------------------------------------------------------------------------- /boot0/config/config.sct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/config/config.sct -------------------------------------------------------------------------------- /boot0/drv/boot0_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/boot0_drv.h -------------------------------------------------------------------------------- /boot0/drv/boot0_drv_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/boot0_drv_i.h -------------------------------------------------------------------------------- /boot0/drv/debug_uart/debug_UART.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/debug_uart/debug_UART.c -------------------------------------------------------------------------------- /boot0/drv/debug_uart/debug_UART.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/debug_uart/debug_UART.h -------------------------------------------------------------------------------- /boot0/drv/debug_uart/format_transformed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/debug_uart/format_transformed.c -------------------------------------------------------------------------------- /boot0/drv/debug_uart/format_transformed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/debug_uart/format_transformed.h -------------------------------------------------------------------------------- /boot0/drv/debug_uart/uart_hd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/debug_uart/uart_hd.c -------------------------------------------------------------------------------- /boot0/drv/debug_uart/uart_hd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/debug_uart/uart_hd.h -------------------------------------------------------------------------------- /boot0/drv/init_dram/dram_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/init_dram/dram_i.h -------------------------------------------------------------------------------- /boot0/drv/init_dram/dram_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/init_dram/dram_init.c -------------------------------------------------------------------------------- /boot0/drv/init_dram/dram_para.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/init_dram/dram_para.h -------------------------------------------------------------------------------- /boot0/drv/init_dram/init_DRAM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/init_dram/init_DRAM.h -------------------------------------------------------------------------------- /boot0/drv/jtag/jtag.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/jtag/jtag.c -------------------------------------------------------------------------------- /boot0/drv/jtag/jtag.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/drv/jtag/jtag.h -------------------------------------------------------------------------------- /boot0/lib/check_sum/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/check_sum/check.c -------------------------------------------------------------------------------- /boot0/lib/check_sum/check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/check_sum/check.h -------------------------------------------------------------------------------- /boot0/lib/func_in_asm/func_in_asm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/func_in_asm/func_in_asm.h -------------------------------------------------------------------------------- /boot0/lib/func_in_asm/func_in_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/func_in_asm/func_in_asm.s -------------------------------------------------------------------------------- /boot0/lib/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/lib.h -------------------------------------------------------------------------------- /boot0/lib/lib_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/lib_i.h -------------------------------------------------------------------------------- /boot0/lib/misc/misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/misc/misc.c -------------------------------------------------------------------------------- /boot0/lib/misc/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/misc/misc.h -------------------------------------------------------------------------------- /boot0/lib/service/pin_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/service/pin_service.c -------------------------------------------------------------------------------- /boot0/lib/service/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/service/service.c -------------------------------------------------------------------------------- /boot0/lib/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/lib/service/service.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/load_Boot1_from_nand.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/load_Boot1_from_nand.c -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/load_Boot1_from_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/load_Boot1_from_nand.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/load_Boot1_from_nand_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/load_Boot1_from_nand_i.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/nand/adv_NF_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/nand/adv_NF_func.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/nand/adv_NF_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/nand/adv_NF_read.c -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/nand/basic_nf_func.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/nand/basic_nf_func.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/nand/basic_nf_read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/nand/basic_nf_read.c -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/nand_for_boot0/bsp_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/nand_for_boot0/bsp_nand.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/nfc_for_boot0/include/nfc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/nfc_for_boot0/include/nfc.h -------------------------------------------------------------------------------- /boot0/load_Boot1_from_nand/osal/nand_osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_Boot1_from_nand/osal/nand_osal.h -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc.c -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc.h -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_bsp.c -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_def.h -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_op.c -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/bsp_mmc_for_boot/mmc_op.h -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/load_boot1_from_sdmmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/load_boot1_from_sdmmc.c -------------------------------------------------------------------------------- /boot0/load_boot1_from_sdmmc/load_boot1_from_sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/load_boot1_from_sdmmc/load_boot1_from_sdmmc.h -------------------------------------------------------------------------------- /boot0/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/make.cfg -------------------------------------------------------------------------------- /boot0/make_nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/make_nand -------------------------------------------------------------------------------- /boot0/make_sdmmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/make_sdmmc -------------------------------------------------------------------------------- /boot0/make_spinor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/make_spinor -------------------------------------------------------------------------------- /boot0/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/makefile -------------------------------------------------------------------------------- /boot0/readme.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /boot0/sys_op/cache/cache.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/sys_op/cache/cache.s -------------------------------------------------------------------------------- /boot0/sys_op/mmu/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/sys_op/mmu/mmu.c -------------------------------------------------------------------------------- /boot0/sys_op/mmu/mmu_asm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/sys_op/mmu/mmu_asm.s -------------------------------------------------------------------------------- /boot0/sys_op/sys_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/sys_op/sys_op.h -------------------------------------------------------------------------------- /boot0/sys_op/sys_op_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot0/sys_op/sys_op_i.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/1625_QC/include/aw1625_test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/1625_QC/include/aw1625_test.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/1625_QC/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/1625_QC/main.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/1625_QC/test_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/1625_QC/test_private.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Board/board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Board/board.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Board/board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Board/board.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/BootMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/BootMain.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/BootMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/BootMain.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/BootMain_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/BootMain_Debug.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/common.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/common_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/common_res.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/acos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/acos.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/acosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/acosf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/asin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/asin.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/asinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/asinf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/atan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/atan.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/atan2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/atan2.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/atan2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/atan2f.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/atanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/atanf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/ceil.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/ceil.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/ceilf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/ceilf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/copysign.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/copysign.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/copysignf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/copysignf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/cos.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/cosf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/cosh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/cosh.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/coshf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/coshf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/e_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/e_rem_pio2.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/e_rem_pio2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/e_rem_pio2f.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/exp.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/expf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/expf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/expm1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/expm1.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/expm1f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/expm1f.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/fabs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/fabs.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/fabsf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/fabsf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/floor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/floor.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/floorf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/floorf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/fmod.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/fmod.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/fmodf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/fmodf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/frexp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/frexp.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/frexpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/frexpf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/hypot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/hypot.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/hypotf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/hypotf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_cos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_cos.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_cosf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_cosf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_rem_pio2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_rem_pio2.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_rem_pio2f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_rem_pio2f.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_sin.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_sinf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_tan.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/k_tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/k_tanf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/log.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/log10.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/log10.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/log10f.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/log10f.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/logf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/logf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/math.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/math.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/modf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/modf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/modff.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/modff.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/pow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/pow.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/powf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/powf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/scalbn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/scalbn.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/scalbnf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/scalbnf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/sin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/sin.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/sinf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/sinf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/sinh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/sinh.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/sinhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/sinhf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/sqrt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/sqrt.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/sqrtf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/sqrtf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/tan.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/tan.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/tanf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/tanf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/tanh.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/tanh.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/libm/tanhf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/libm/tanhf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/service/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/service/service.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/service/service.c.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/service/service.c.bak -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/service/service.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/sfte/FontEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/sfte/FontEngine.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/sfte/FontEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/sfte/FontEngine.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/sfte/SFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/sfte/SFT.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/sfte/sfte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/sfte/sfte.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/sfte/sfte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/sfte/sfte.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/ui/format/format.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/ui/format/format.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/ui/format/format.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/ui/format/format.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/ui/lcd_printf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/ui/lcd_printf.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/ui/time_count/time_count.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/ui/time_count/time_count.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/ui/ui.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/Common/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/Common/ui/ui.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/config.lds -------------------------------------------------------------------------------- /boot1/apps/BootQC/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/include.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/magic.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/make.cfg -------------------------------------------------------------------------------- /boot1/apps/BootQC/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/makefile -------------------------------------------------------------------------------- /boot1/apps/BootQC/part_info/part_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/part_info/part_info.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/part_info/part_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/part_info/part_info.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/storage.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_descriptor.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_descriptor.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_params.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_register.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_storage.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_storage.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_storage_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_storage_init.c -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_storage_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_storage_init.h -------------------------------------------------------------------------------- /boot1/apps/BootQC/usb_device/usb_storage_inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/BootQC/usb_device/usb_storage_inline.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Board/Board.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Board/Board.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Board/Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Board/Board.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Board/fel_detect/fel_detect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Board/fel_detect/fel_detect.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Board/fel_detect/fel_detect.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Board/fel_detect/fel_detect.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Board/power_ctrl/axp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Board/power_ctrl/axp_i.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootMain.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootMain.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootMain_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootMain_Debug.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootOS/BootOS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootOS/BootOS.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootOS/BootOS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootOS/BootOS.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootOS/BootOS_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootOS/BootOS_i.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootOS/boot_img.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootOS/boot_img.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootOS/bootm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootOS/bootm.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/BootOS/setup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/BootOS/setup.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/Picture/picture.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/Picture/picture.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/Picture/picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/Picture/picture.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/codec_led/codec_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/codec_led/codec_led.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/common.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/common_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/common_res.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/script_patch/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/script_patch/script.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/script_patch/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/script_patch/script.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/service/service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/service/service.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/service/service.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/service/service.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/sprite_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/sprite_led.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/ui/ui.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/ui/ui.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/Common/ui/ui.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/Common/ui/ui.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/card_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/card_sprite.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/card_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/card_sprite.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/card_sprite_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/card_sprite_i.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/card_sprite_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/card_sprite_res.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/check_sum/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/check_sum/check.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/encrypt/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/encrypt/encrypt.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/encrypt/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/encrypt/encrypt.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/file_op/file_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/file_op/file_op.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/file_op/file_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/file_op/file_op.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/sparse/sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/sparse/sparse.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/sparse/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/sparse/sparse.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/uboot_env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/uboot_env/env.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/card_sprite/uboot_env/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/card_sprite/uboot_env/env.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/config.lds -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/include.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/magic.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/make.cfg -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/makefile -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/part_info/part_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/part_info/part_info.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/part_info/part_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/part_info/part_info.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/storage.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_descriptor.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_descriptor.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_params.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_register.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_storage.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_storage.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_storage_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_storage_init.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Android/usb_device/usb_storage_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Android/usb_device/usb_storage_init.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/BootMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/BootMain.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/BootMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/BootMain.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/BootMain_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/BootMain_Debug.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/config.lds -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/include.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/magic.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/make.cfg -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/makefile -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/part_info/part_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/part_info/part_info.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/part_info/part_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/part_info/part_info.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/update_data/update_data.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/update_data/update_data.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/update_data/update_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/update_data/update_data.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/storage.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_descriptor.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_descriptor.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_params.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_register.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_storage.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_storage.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_storage_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_storage_init.c -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_storage_init.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_storage_init.h -------------------------------------------------------------------------------- /boot1/apps/Boot_Burn/usb_device/usb_storage_inline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Boot_Burn/usb_device/usb_storage_inline.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/CardMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/CardMain.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/CardMain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/CardMain.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/CardMain_Debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/CardMain_Debug.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/codec_led/codec_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/codec_led/codec_led.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/common.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/common_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/common_res.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/script_patch/script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/script_patch/script.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/script_patch/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/script_patch/script.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/sprite_led.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/sprite_led.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/Common/sprite_print.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/Common/sprite_print.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/card_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/card_sprite.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/card_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/card_sprite.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/card_sprite_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/card_sprite_i.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/card_sprite_res.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/card_sprite_res.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/check_sum/check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/check_sum/check.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/dynamic/dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/dynamic/dynamic.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/dynamic/dynamic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/dynamic/dynamic.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/encrypt/encrypt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/encrypt/encrypt.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/encrypt/encrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/encrypt/encrypt.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/file_op/file_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/file_op/file_op.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/sparse/sparse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/sparse/sparse.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/sparse/sparse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/sparse/sparse.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/uboot_env/env.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/uboot_env/env.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/card_sprite/uboot_env/env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/card_sprite/uboot_env/env.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/config.lds -------------------------------------------------------------------------------- /boot1/apps/Card_Android/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/include.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/magic.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/make.cfg -------------------------------------------------------------------------------- /boot1/apps/Card_Android/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/makefile -------------------------------------------------------------------------------- /boot1/apps/Card_Android/part_info/part_info.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/part_info/part_info.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/part_info/part_info.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/part_info/part_info.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/storage.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/usb_descriptor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/usb_descriptor.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/usb_descriptor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/usb_descriptor.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/usb_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/usb_params.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/usb_register.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/usb_register.h -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/usb_storage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/usb_storage.c -------------------------------------------------------------------------------- /boot1/apps/Card_Android/usb_device/usb_storage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/apps/Card_Android/usb_device/usb_storage.h -------------------------------------------------------------------------------- /boot1/core/arm_board/arm_section.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/arm_board/arm_section.c -------------------------------------------------------------------------------- /boot1/core/arm_board/arm_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/arm_board/arm_start.S -------------------------------------------------------------------------------- /boot1/core/arm_board/arm_swi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/arm_board/arm_swi.c -------------------------------------------------------------------------------- /boot1/core/arm_board/arm_swi_o.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/arm_board/arm_swi_o.S -------------------------------------------------------------------------------- /boot1/core/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/config.lds -------------------------------------------------------------------------------- /boot1/core/cpu/arm_a8/cache/cache.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/cpu/arm_a8/cache/cache.S -------------------------------------------------------------------------------- /boot1/core/cpu/arm_a8/cp15/cp15.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/cpu/arm_a8/cp15/cp15.c -------------------------------------------------------------------------------- /boot1/core/cpu/arm_a8/cpu_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/cpu/arm_a8/cpu_private.h -------------------------------------------------------------------------------- /boot1/core/cpu/arm_a8/int/int.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/cpu/arm_a8/int/int.S -------------------------------------------------------------------------------- /boot1/core/cpu/arm_a8/mmu/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/cpu/arm_a8/mmu/mmu.c -------------------------------------------------------------------------------- /boot1/core/cpu/arm_a8/mmu/mmu_asm.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/cpu/arm_a8/mmu/mmu_asm.S -------------------------------------------------------------------------------- /boot1/core/drivers/clock/sw_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/clock/sw_clock.c -------------------------------------------------------------------------------- /boot1/core/drivers/clock/sw_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/clock/sw_clock.h -------------------------------------------------------------------------------- /boot1/core/drivers/dma/dma.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/dma/dma.c -------------------------------------------------------------------------------- /boot1/core/drivers/dma/dma_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/dma/dma_i.h -------------------------------------------------------------------------------- /boot1/core/drivers/gpio/pin_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/gpio/pin_ops.c -------------------------------------------------------------------------------- /boot1/core/drivers/gpio/pin_service.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/gpio/pin_service.c -------------------------------------------------------------------------------- /boot1/core/drivers/iic/sw_iic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/iic/sw_iic.c -------------------------------------------------------------------------------- /boot1/core/drivers/iic/sw_iic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/iic/sw_iic.h -------------------------------------------------------------------------------- /boot1/core/drivers/intc/int_service_entry.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/intc/int_service_entry.c -------------------------------------------------------------------------------- /boot1/core/drivers/key/sw_key.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/key/sw_key.c -------------------------------------------------------------------------------- /boot1/core/drivers/key/sw_key.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/key/sw_key.h -------------------------------------------------------------------------------- /boot1/core/drivers/key/sw_key_check.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/key/sw_key_check.o -------------------------------------------------------------------------------- /boot1/core/drivers/power/axp_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/power/axp_i.h -------------------------------------------------------------------------------- /boot1/core/drivers/serial/format_transformed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/serial/format_transformed.c -------------------------------------------------------------------------------- /boot1/core/drivers/serial/format_transformed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/serial/format_transformed.h -------------------------------------------------------------------------------- /boot1/core/drivers/serial/serial.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/serial/serial.c -------------------------------------------------------------------------------- /boot1/core/drivers/serial/sw_uart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/serial/sw_uart.c -------------------------------------------------------------------------------- /boot1/core/drivers/serial/sw_uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/serial/sw_uart.h -------------------------------------------------------------------------------- /boot1/core/drivers/timer/sw_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/timer/sw_timer.c -------------------------------------------------------------------------------- /boot1/core/drivers/timer/sw_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/drivers/timer/sw_timer.h -------------------------------------------------------------------------------- /boot1/core/exception/exception.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/exception/exception.c -------------------------------------------------------------------------------- /boot1/core/exception/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/exception/exception.h -------------------------------------------------------------------------------- /boot1/core/include/arm_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/arm_base.h -------------------------------------------------------------------------------- /boot1/core/include/arm_base/arm_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/arm_base/arm_cpu.h -------------------------------------------------------------------------------- /boot1/core/include/arm_base/arm_section.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/arm_base/arm_section.h -------------------------------------------------------------------------------- /boot1/core/include/eGon2_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/eGon2_fs.h -------------------------------------------------------------------------------- /boot1/core/include/eGon2_sys.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/eGon2_sys.h -------------------------------------------------------------------------------- /boot1/core/include/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/include.h -------------------------------------------------------------------------------- /boot1/core/include/misc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/include/misc.h -------------------------------------------------------------------------------- /boot1/core/jump_to/jump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/jump_to/jump.c -------------------------------------------------------------------------------- /boot1/core/jump_to/jump_s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/jump_to/jump_s.S -------------------------------------------------------------------------------- /boot1/core/kernel/elf_loader/driver_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/elf_loader/driver_manager.c -------------------------------------------------------------------------------- /boot1/core/kernel/elf_loader/elf_parser.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/elf_loader/elf_parser.c -------------------------------------------------------------------------------- /boot1/core/kernel/elf_loader/elf_parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/elf_loader/elf_parser.h -------------------------------------------------------------------------------- /boot1/core/kernel/elf_loader/elf_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/elf_loader/elf_private.h -------------------------------------------------------------------------------- /boot1/core/kernel/elf_loader/mod_private.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/elf_loader/mod_private.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/eGon2_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/eGon2_fs.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/eGon2_fs_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/eGon2_fs_i.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_dir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_dir.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_in.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_in.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_ioct.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_ioct.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_misc.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_mount.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_mount.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_open.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_open.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_out.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_out.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_priv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_priv.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fat_seek.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fat_seek.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fat/fatfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fat/fatfs.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fs.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/fs_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/fs_i.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/inode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/inode.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/part.h -------------------------------------------------------------------------------- /boot1/core/kernel/fs/part/fspart.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/part/fspart.c -------------------------------------------------------------------------------- /boot1/core/kernel/fs/part/fspart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/fs/part/fspart.h -------------------------------------------------------------------------------- /boot1/core/kernel/mems/mem_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/kernel/mems/mem_alloc.c -------------------------------------------------------------------------------- /boot1/core/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/make.cfg -------------------------------------------------------------------------------- /boot1/core/make_nand: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/make_nand -------------------------------------------------------------------------------- /boot1/core/make_sdmmc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/make_sdmmc -------------------------------------------------------------------------------- /boot1/core/make_spinor: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/make_spinor -------------------------------------------------------------------------------- /boot1/core/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/makefile -------------------------------------------------------------------------------- /boot1/core/parameters/Boot1_head.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/parameters/Boot1_head.c -------------------------------------------------------------------------------- /boot1/core/parameters/parameters.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/parameters/parameters.c -------------------------------------------------------------------------------- /boot1/core/script/eGon2_dynamic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/script/eGon2_dynamic.c -------------------------------------------------------------------------------- /boot1/core/script/eGon2_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/script/eGon2_script.c -------------------------------------------------------------------------------- /boot1/core/script/script_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/script/script_i.h -------------------------------------------------------------------------------- /boot1/core/standby/clock_standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/clock_standby.c -------------------------------------------------------------------------------- /boot1/core/standby/dram_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/dram_i.h -------------------------------------------------------------------------------- /boot1/core/standby/dram_standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/dram_standby.c -------------------------------------------------------------------------------- /boot1/core/standby/dram_standby_init.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/dram_standby_init.c -------------------------------------------------------------------------------- /boot1/core/standby/int_standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/int_standby.c -------------------------------------------------------------------------------- /boot1/core/standby/power_ops.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/power_ops.c -------------------------------------------------------------------------------- /boot1/core/standby/power_ops_standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/power_ops_standby.c -------------------------------------------------------------------------------- /boot1/core/standby/standby.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/standby.c -------------------------------------------------------------------------------- /boot1/core/standby/standby.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/standby.h -------------------------------------------------------------------------------- /boot1/core/standby/standby_s.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/standby_s.S -------------------------------------------------------------------------------- /boot1/core/standby/sw_key_check.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/standby/sw_key_check.c -------------------------------------------------------------------------------- /boot1/core/start/asm_start.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/start/asm_start.S -------------------------------------------------------------------------------- /boot1/core/start/basic_block_device.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/start/basic_block_device.c -------------------------------------------------------------------------------- /boot1/core/start/boot1_i.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/start/boot1_i.inc -------------------------------------------------------------------------------- /boot1/core/start/eGon2_start.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/core/start/eGon2_start.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/config.lds -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/bsp_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/bsp_display.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_clk.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_clk.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_combined.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_combined.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_combined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_combined.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_de.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_display.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_display.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_display_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_display_i.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_event.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_event.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_hdmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_hdmi.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_hdmi.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_hwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_hwc.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_hwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_hwc.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_layer.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_layer.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_lcd.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_lcd.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_scaler.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_scaler.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_sprite.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_sprite.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_tv.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_tv.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_vga.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_vga.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_video.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/disp_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/disp_video.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_be.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_be.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_fe.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_fe.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_hwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_hwc.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_layer.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_lcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_lcdc.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_lcdc_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_lcdc_i.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_tvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_tvec.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/de_tvec_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/de_tvec_i.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/ebios_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/ebios_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/ebios_lcdc_tve.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/ebios_lcdc_tve.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/de/ebios/vga_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/de/ebios/vga_std.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/lcd/lcd0_panel_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/lcd/lcd0_panel_cfg.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/lcd/lcd1_panel_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/lcd/lcd1_panel_cfg.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/de_bsp/lcd/lcd_panel_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/de_bsp/lcd/lcd_panel_cfg.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/drv_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/drv_de.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/drv_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/drv_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/magic.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/make.cfg -------------------------------------------------------------------------------- /boot1/driver/drv_de/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/makefile -------------------------------------------------------------------------------- /boot1/driver/drv_de/osal/osal_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/osal/osal_clock.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/osal/osal_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/osal/osal_de.c -------------------------------------------------------------------------------- /boot1/driver/drv_de/osal/osal_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/osal/osal_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de/osal/osal_pin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de/osal/osal_pin.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/config.lds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/config.lds -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/bsp_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/bsp_display.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_clk.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_clk.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_clk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_clk.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_combined.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_combined.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_combined.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_combined.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_de.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_display.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_display.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_display.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_display_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_display_i.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_event.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_event.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_event.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_event.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_hdmi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_hdmi.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_hdmi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_hdmi.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_hwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_hwc.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_hwc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_hwc.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_layer.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_layer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_layer.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_lcd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_lcd.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_lcd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_lcd.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_scaler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_scaler.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_scaler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_scaler.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_sprite.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_sprite.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_sprite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_sprite.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_tv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_tv.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_tv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_tv.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_vga.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_vga.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_vga.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_vga.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_video.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_video.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/disp_video.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/disp_video.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_be.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_be.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_be.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_be.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_fe.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_fe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_fe.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_hwc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_hwc.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_layer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_layer.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_lcdc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_lcdc.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_lcdc_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_lcdc_i.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_tvec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_tvec.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_tvec_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/de_tvec_i.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/ebios_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/ebios_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/de/ebios/vga_std.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/de/ebios/vga_std.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_core.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_core.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_edid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_edid.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_hal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/hdmi/aw/hdmi_hal.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/hdmi/hdmi_hal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/hdmi/hdmi_hal.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/lcd/lcd0_panel_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/lcd/lcd0_panel_cfg.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/lcd/lcd1_panel_cfg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/lcd/lcd1_panel_cfg.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/de_bsp/lcd/lcd_panel_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/de_bsp/lcd/lcd_panel_cfg.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/drv_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/drv_de.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/drv_de.drv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/drv_de.drv -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/drv_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/drv_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/magic.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/magic.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/make.cfg -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/makefile -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/osal/osal_clock.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/osal/osal_clock.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/osal/osal_de.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/osal/osal_de.c -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/osal/osal_de.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/osal/osal_de.h -------------------------------------------------------------------------------- /boot1/driver/drv_de_hdmi/osal/osal_pin.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_de_hdmi/osal/osal_pin.c -------------------------------------------------------------------------------- /boot1/driver/drv_nand/bsp_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_nand/bsp_nand.h -------------------------------------------------------------------------------- /boot1/driver/drv_nand/bsp_nfc_boot1_for_boot.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_nand/bsp_nfc_boot1_for_boot.lib -------------------------------------------------------------------------------- /boot1/driver/drv_nand/bsp_nfc_boot1_for_card.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_nand/bsp_nfc_boot1_for_card.lib -------------------------------------------------------------------------------- /boot1/driver/drv_nand/osal-boot/nand_osal_boot1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_nand/osal-boot/nand_osal_boot1.c -------------------------------------------------------------------------------- /boot1/driver/drv_nand/osal-burn/nand_osal_boot1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_nand/osal-burn/nand_osal_boot1.c -------------------------------------------------------------------------------- /boot1/driver/drv_sd/bsp_sdc_for_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/bsp_sdc_for_boot.h -------------------------------------------------------------------------------- /boot1/driver/drv_sd/mmc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/mmc.c -------------------------------------------------------------------------------- /boot1/driver/drv_sd/mmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/mmc.h -------------------------------------------------------------------------------- /boot1/driver/drv_sd/mmc_bsp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/mmc_bsp.c -------------------------------------------------------------------------------- /boot1/driver/drv_sd/mmc_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/mmc_def.h -------------------------------------------------------------------------------- /boot1/driver/drv_sd/mmc_op.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/mmc_op.c -------------------------------------------------------------------------------- /boot1/driver/drv_sd/mmc_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/drv_sd/mmc_op.h -------------------------------------------------------------------------------- /boot1/driver/nand-lib/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/make.cfg -------------------------------------------------------------------------------- /boot1/driver/nand-lib/make_boot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/make_boot -------------------------------------------------------------------------------- /boot1/driver/nand-lib/make_card: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/make_card -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_boot/osal/nand_osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_boot/osal/nand_osal.h -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_boot/src/logic/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_boot/src/logic/mbr.c -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_boot/src/nfc/nfc_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_boot/src/nfc/nfc_r.c -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_boot/src/nfc/nfc_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_boot/src/nfc/nfc_w.c -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_card/osal/nand_osal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_card/osal/nand_osal.h -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_card/src/logic/mbr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_card/src/logic/mbr.c -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_card/src/nfc/nfc_r.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_card/src/nfc/nfc_r.c -------------------------------------------------------------------------------- /boot1/driver/nand-lib/nand_bsp_card/src/nfc/nfc_w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/nand-lib/nand_bsp_card/src/nfc/nfc_w.c -------------------------------------------------------------------------------- /boot1/driver/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/driver/readme.txt -------------------------------------------------------------------------------- /boot1/include/arch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch.h -------------------------------------------------------------------------------- /boot1/include/arch/ccmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/ccmu.h -------------------------------------------------------------------------------- /boot1/include/arch/ccmu.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/ccmu.inc -------------------------------------------------------------------------------- /boot1/include/arch/dmac.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/dmac.h -------------------------------------------------------------------------------- /boot1/include/arch/ebios.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/ebios.inc -------------------------------------------------------------------------------- /boot1/include/arch/hd_scrpt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/hd_scrpt.h -------------------------------------------------------------------------------- /boot1/include/arch/hd_scrpt.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/hd_scrpt.inc -------------------------------------------------------------------------------- /boot1/include/arch/intc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/intc.h -------------------------------------------------------------------------------- /boot1/include/arch/intc.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/intc.inc -------------------------------------------------------------------------------- /boot1/include/arch/keyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/keyc.h -------------------------------------------------------------------------------- /boot1/include/arch/pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/pio.h -------------------------------------------------------------------------------- /boot1/include/arch/pio.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/pio.inc -------------------------------------------------------------------------------- /boot1/include/arch/sdmmc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/sdmmc.h -------------------------------------------------------------------------------- /boot1/include/arch/sram.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/sram.h -------------------------------------------------------------------------------- /boot1/include/arch/timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/timer.h -------------------------------------------------------------------------------- /boot1/include/arch/twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/twi.h -------------------------------------------------------------------------------- /boot1/include/arch/uart.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arch/uart.h -------------------------------------------------------------------------------- /boot1/include/arm_a8.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/arm_a8.h -------------------------------------------------------------------------------- /boot1/include/block_device/nand_for_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/block_device/nand_for_boot.h -------------------------------------------------------------------------------- /boot1/include/block_device/sdmmc_for_boot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/block_device/sdmmc_for_boot.h -------------------------------------------------------------------------------- /boot1/include/cfgs/arm_a8.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/cfgs/arm_a8.inc -------------------------------------------------------------------------------- /boot1/include/driver/wboot_clock.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_clock.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_display.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_display.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_dma.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_dma.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_fs.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_keyc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_keyc.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_mbr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_mbr.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_mp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_mp.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_nand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_nand.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_parameters.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_parameters.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_part.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_part.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_pio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_pio.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_power.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_power.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_sd.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_sd.h -------------------------------------------------------------------------------- /boot1/include/driver/wboot_twi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/driver/wboot_twi.h -------------------------------------------------------------------------------- /boot1/include/eGon2_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/eGon2_driver.h -------------------------------------------------------------------------------- /boot1/include/eGon2_mod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/eGon2_mod.h -------------------------------------------------------------------------------- /boot1/include/eGon2_syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/eGon2_syscall.h -------------------------------------------------------------------------------- /boot1/include/eGon2_syscall_define.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/eGon2_syscall_define.h -------------------------------------------------------------------------------- /boot1/include/egon2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/egon2.h -------------------------------------------------------------------------------- /boot1/include/egon2.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/egon2.inc -------------------------------------------------------------------------------- /boot1/include/interinc/boot0_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/boot0_v2.h -------------------------------------------------------------------------------- /boot1/include/interinc/boot1_v2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/boot1_v2.h -------------------------------------------------------------------------------- /boot1/include/interinc/brom.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/brom.h -------------------------------------------------------------------------------- /boot1/include/interinc/egon_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/egon_def.h -------------------------------------------------------------------------------- /boot1/include/interinc/egon_def.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/egon_def.inc -------------------------------------------------------------------------------- /boot1/include/interinc/egon_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/egon_i.h -------------------------------------------------------------------------------- /boot1/include/interinc/egon_mem_distribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/egon_mem_distribute.h -------------------------------------------------------------------------------- /boot1/include/interinc/egon_mem_distribute.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/interinc/egon_mem_distribute.inc -------------------------------------------------------------------------------- /boot1/include/libc/eGon2_libc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/libc/eGon2_libc.h -------------------------------------------------------------------------------- /boot1/include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/script.h -------------------------------------------------------------------------------- /boot1/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/include/types.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/make.cfg -------------------------------------------------------------------------------- /boot1/lib_src/ui/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/makefile -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/sfte/FontEngine.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/sfte/FontEngine.c -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/sfte/FontEngine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/sfte/FontEngine.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/sfte/SFT.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/sfte/SFT.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/sfte/sfte.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/sfte/sfte.c -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/sfte/sfte.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/sfte/sfte.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/ui_char.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/ui_char.c -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/ui_char.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/ui_char.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_char/ui_char_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_char/ui_char_i.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_color.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_draw/ui_draw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_draw/ui_draw.c -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_draw/ui_draw.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_draw/ui_draw.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_main.c -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_main.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_main_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_main_i.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_progressbar/ui_progressbar.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_progressbar/ui_progressbar.c -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_progressbar/ui_progressbar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_progressbar/ui_progressbar.h -------------------------------------------------------------------------------- /boot1/lib_src/ui/ui_progressbar/ui_progressbar_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/lib_src/ui/ui_progressbar/ui_progressbar_i.h -------------------------------------------------------------------------------- /boot1/libs/eGon2_libc.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/libs/eGon2_libc.lib -------------------------------------------------------------------------------- /boot1/libs/eGon2_ui.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/libs/eGon2_ui.lib -------------------------------------------------------------------------------- /boot1/misc/cache/cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/cache/cache.h -------------------------------------------------------------------------------- /boot1/misc/cache/cache.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/cache/cache.inc -------------------------------------------------------------------------------- /boot1/misc/cache/cache_const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/cache/cache_const.h -------------------------------------------------------------------------------- /boot1/misc/cache/cache_const.inc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/cache/cache_const.inc -------------------------------------------------------------------------------- /boot1/misc/cache/cleanflushcachebyregion.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/cache/cleanflushcachebyregion.c -------------------------------------------------------------------------------- /boot1/misc/cache/cleanflushcachebyway.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/cache/cleanflushcachebyway.S -------------------------------------------------------------------------------- /boot1/misc/div/.depend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/.depend -------------------------------------------------------------------------------- /boot1/misc/div/_ashldi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_ashldi3.S -------------------------------------------------------------------------------- /boot1/misc/div/_ashrdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_ashrdi3.S -------------------------------------------------------------------------------- /boot1/misc/div/_divsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_divsi3.S -------------------------------------------------------------------------------- /boot1/misc/div/_lshrdi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_lshrdi3.S -------------------------------------------------------------------------------- /boot1/misc/div/_modsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_modsi3.S -------------------------------------------------------------------------------- /boot1/misc/div/_udivsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_udivsi3.S -------------------------------------------------------------------------------- /boot1/misc/div/_umodsi3.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/_umodsi3.S -------------------------------------------------------------------------------- /boot1/misc/div/div0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/div0.c -------------------------------------------------------------------------------- /boot1/misc/div/eabi_compat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/div/eabi_compat.c -------------------------------------------------------------------------------- /boot1/misc/eGon2_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/eGon2_common.c -------------------------------------------------------------------------------- /boot1/misc/eGon2_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/eGon2_common.h -------------------------------------------------------------------------------- /boot1/misc/format_transformed.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/format_transformed.c -------------------------------------------------------------------------------- /boot1/misc/format_transformed.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/format_transformed.h -------------------------------------------------------------------------------- /boot1/misc/int/_int.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/int/_int.S -------------------------------------------------------------------------------- /boot1/misc/int/c_int.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/int/c_int.c -------------------------------------------------------------------------------- /boot1/misc/make.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/make.cfg -------------------------------------------------------------------------------- /boot1/misc/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/makefile -------------------------------------------------------------------------------- /boot1/misc/mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/mem.c -------------------------------------------------------------------------------- /boot1/misc/string.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/string.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_driver.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_fs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_fs.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_gpio.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_gpio.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_hardware.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_hardware.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_i.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_i.h -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_input.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_input.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_memory.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_misc.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_power.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_power.c -------------------------------------------------------------------------------- /boot1/misc/syacall/syscall_script.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/boot1/misc/syacall/syscall_script.c -------------------------------------------------------------------------------- /config/ARMCC_CROSSTOOL.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/ARMCC_CROSSTOOL.CFG -------------------------------------------------------------------------------- /config/CROSSTOOL.CFG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/CROSSTOOL.CFG -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/ar -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/as -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/c++ -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/g++ -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/gcc -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/gfortran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/gfortran -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/ld -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/ld.bfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/ld.bfd -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/ld.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/ld.gold -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/nm -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/objcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/objcopy -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/objdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/objdump -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/ranlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/ranlib -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/bin/strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/arm-linux-gnueabi/bin/strip -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/asm/bitsperlong.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/asm/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/bits/initspin.h: -------------------------------------------------------------------------------- 1 | /* No thread support. */ 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/errno.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/fcntl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/signal.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/soundcard.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/stropts.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/ultrasound.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/unistd.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/arm-linux-gnueabi/sys/vt.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/net/ppp-comp.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/nfs/nfs.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/poll.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/syscall.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/syslog.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/ustat.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/arm-linux-gnueabi/libc/usr/include/wait.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-addr2line: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-addr2line -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ar -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-as: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-as -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-c++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-c++ -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-c++filt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-c++filt -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-cpp -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ct-ng.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ct-ng.config -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-elfedit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-elfedit -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-g++: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-g++ -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gcc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gcc -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gcc-4.6.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gcc-4.6.3 -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gcov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gcov -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gdb -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gdbtui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gdbtui -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gfortran: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gfortran -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-gprof: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-gprof -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ld -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ld.bfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ld.bfd -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ld.gold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ld.gold -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ldd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ldd -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-nm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-nm -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-objcopy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-objcopy -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-objdump: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-objdump -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-pkg-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-pkg-config -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-ranlib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-ranlib -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-readelf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-readelf -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-size -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-strings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-strings -------------------------------------------------------------------------------- /config/gcc-linaro/bin/arm-linux-gnueabi-strip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/gcc-linaro/bin/arm-linux-gnueabi-strip -------------------------------------------------------------------------------- /config/gcc-linaro/lib/gcc/arm-linux-gnueabi/4.6.3/install-tools/fixinc_list: -------------------------------------------------------------------------------- 1 | ; 2 | -------------------------------------------------------------------------------- /config/gcc-linaro/lib/gcc/arm-linux-gnueabi/4.6.3/install-tools/macro_list: -------------------------------------------------------------------------------- 1 | linux 2 | unix 3 | -------------------------------------------------------------------------------- /config/storage_media_cfg/nand/storage_media_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/storage_media_cfg/nand/storage_media_cfg.h -------------------------------------------------------------------------------- /config/storage_media_cfg/sdcard/storage_media_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/storage_media_cfg/sdcard/storage_media_cfg.h -------------------------------------------------------------------------------- /config/storage_media_cfg/spinor/storage_media_cfg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/config/storage_media_cfg/spinor/storage_media_cfg.h -------------------------------------------------------------------------------- /pack/.gitignore: -------------------------------------------------------------------------------- 1 | out/ 2 | *.swp 3 | -------------------------------------------------------------------------------- /pack/chips/sun7i/configs/linux/default/env.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/configs/linux/default/env.cfg -------------------------------------------------------------------------------- /pack/chips/sun7i/configs/linux/default/image.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/configs/linux/default/image.cfg -------------------------------------------------------------------------------- /pack/chips/sun7i/configs/linux/qc/sys_config.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/configs/linux/qc/sys_config.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/card/cardscript.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/card/cardscript.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/card/cardtool-uboot.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/card/cardtool-uboot.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/card/cardtool.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/card/cardtool.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/split_xxxx.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/split_xxxx.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/aultls32.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/aultls32.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/aultools.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/aultools.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/card_HW_scan.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/card_HW_scan.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/card_update_boot0.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/card_update_boot0.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/card_update_boot1.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/card_update_boot1.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fed_card.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fed_card.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fed_nand.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fed_nand.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fes.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fes.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fes_1-1.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fes_1-1.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fes_1-2.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fes_1-2.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fes_2.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fes_2.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/fet_restore.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/fet_restore.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/hw_scan.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/hw_scan.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/magic_cr_end.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/magic_cr_end.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/magic_cr_start.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/magic_cr_start.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/magic_de_end.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/magic_de_end.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/magic_de_start.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/magic_de_start.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/toolsb.fex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/toolsb.fex -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/update_boot0.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/update_boot0.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eFex/usb/update_boot1.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eFex/usb/update_boot1.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/eGon/boot0_nand.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eGon/boot0_nand.bin -------------------------------------------------------------------------------- /pack/chips/sun7i/eGon/boot0_sdcard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eGon/boot0_sdcard.bin -------------------------------------------------------------------------------- /pack/chips/sun7i/eGon/boot1_nand.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eGon/boot1_nand.bin -------------------------------------------------------------------------------- /pack/chips/sun7i/eGon/boot1_sdcard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/eGon/boot1_sdcard.bin -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs.ini -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/boot.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/boot.axf -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/boot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/boot.ini -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/drv_de.drv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/drv_de.drv -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/drv_hdmi.drv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/drv_hdmi.drv -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/font24.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/font24.sft -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/font32.sft: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/font32.sft -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/linux/linux.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/linux/linux.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/linux/linux.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/linux/linux.ini -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/linux/u-boot.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/linux/u-boot.bin -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat0.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat0.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat1.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat10.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat10.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat2.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat3.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat3.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat4.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat4.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat5.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat5.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat6.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat6.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat7.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat7.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat8.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat8.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bat9.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bat9.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/battery.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/battery.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bempty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bempty.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/bootlogo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/bootlogo.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/empty.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/empty.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/full.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/full.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/head.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/head.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/linux1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/linux1.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/linux2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/linux2.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/low_pwr.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/low_pwr.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/melis1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/melis1.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/melis2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/melis2.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/startup.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/startup.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/tail.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/tail.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/wince1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/wince1.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/os_show/wince2.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/os_show/wince2.bmp -------------------------------------------------------------------------------- /pack/chips/sun7i/wboot/bootfs/sprite.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/chips/sun7i/wboot/bootfs/sprite.axf -------------------------------------------------------------------------------- /pack/pack: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pack -------------------------------------------------------------------------------- /pack/pctools/linux/android/mkbootimg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/android/mkbootimg -------------------------------------------------------------------------------- /pack/pctools/linux/awk_debug_card0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/awk_debug_card0 -------------------------------------------------------------------------------- /pack/pctools/linux/card_debug_pin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/card_debug_pin -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/AwPluginVector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/AwPluginVector.dll -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/FileAddSum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/FileAddSum -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/FileAddSum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/FileAddSum.exe -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/ImageBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/ImageBuilder.dll -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/IniParasPlg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/IniParasPlg.dll -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/IniParasPlgex.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/IniParasPlgex.dll -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/dragon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/dragon -------------------------------------------------------------------------------- /pack/pctools/linux/eDragonEx/plgvector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/eDragonEx/plgvector.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/AwPluginVector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/AwPluginVector.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/FSProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/FSProcess.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/IniParasPlg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/IniParasPlg.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/RAMPart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/RAMPart.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/ScriptParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/ScriptParser.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/config.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/config.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/fsbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/fsbuild -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/fsbuild.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/fsbuild.exe -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/fstool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/fstool.dll -------------------------------------------------------------------------------- /pack/pctools/linux/fsbuild200/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/fsbuild200/readme.txt -------------------------------------------------------------------------------- /pack/pctools/linux/libs/libstdc++.so.6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/libs/libstdc++.so.6 -------------------------------------------------------------------------------- /pack/pctools/linux/libs/libstdc++.so.6.0.8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/libs/libstdc++.so.6.0.8 -------------------------------------------------------------------------------- /pack/pctools/linux/mod_update/script: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/mod_update/script -------------------------------------------------------------------------------- /pack/pctools/linux/mod_update/script_parse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/mod_update/script_parse -------------------------------------------------------------------------------- /pack/pctools/linux/mod_update/u_boot_env_gen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/mod_update/u_boot_env_gen -------------------------------------------------------------------------------- /pack/pctools/linux/mod_update/update_boot0: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/mod_update/update_boot0 -------------------------------------------------------------------------------- /pack/pctools/linux/mod_update/update_boot1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/mod_update/update_boot1 -------------------------------------------------------------------------------- /pack/pctools/linux/mod_update/update_mbr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/mod_update/update_mbr -------------------------------------------------------------------------------- /pack/pctools/linux/shflags/shflags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/linux/shflags/shflags -------------------------------------------------------------------------------- /pack/pctools/windows/FSBuild200/FSProcess.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/FSBuild200/FSProcess.dll -------------------------------------------------------------------------------- /pack/pctools/windows/FSBuild200/RAMPart.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/FSBuild200/RAMPart.dll -------------------------------------------------------------------------------- /pack/pctools/windows/FSBuild200/ScriptParser.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/FSBuild200/ScriptParser.dll -------------------------------------------------------------------------------- /pack/pctools/windows/FSBuild200/config.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/FSBuild200/config.dll -------------------------------------------------------------------------------- /pack/pctools/windows/FSBuild200/fsbuild.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/FSBuild200/fsbuild.exe -------------------------------------------------------------------------------- /pack/pctools/windows/FSBuild200/fstool.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/FSBuild200/fstool.dll -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/AwPluginVector.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/AwPluginVector.dll -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/DataCheck.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/DataCheck.dll -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/Demo/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/Demo/readme.txt -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/FileAddSum.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/FileAddSum.exe -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/ImageBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/ImageBuilder.dll -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/IniParasPlg.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/IniParasPlg.dll -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/compile.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/compile.exe -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/dragon.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/dragon.exe -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/info_pack.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/info_pack.exe -------------------------------------------------------------------------------- /pack/pctools/windows/eDragonEx200/lua5.1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/eDragonEx200/lua5.1.dll -------------------------------------------------------------------------------- /pack/pctools/windows/gen_check_code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/gen_check_code.exe -------------------------------------------------------------------------------- /pack/pctools/windows/mod_update/script.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/mod_update/script.exe -------------------------------------------------------------------------------- /pack/pctools/windows/mod_update/script_old.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/mod_update/script_old.exe -------------------------------------------------------------------------------- /pack/pctools/windows/mod_update/u_boot_env_gen.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/mod_update/u_boot_env_gen.exe -------------------------------------------------------------------------------- /pack/pctools/windows/mod_update/update_23.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/mod_update/update_23.exe -------------------------------------------------------------------------------- /pack/pctools/windows/mod_update/update_mbr.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/pack/pctools/windows/mod_update/update_mbr.exe -------------------------------------------------------------------------------- /workspace/egon/boot0_nand.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/egon/boot0_nand.bin -------------------------------------------------------------------------------- /workspace/egon/boot0_sdcard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/egon/boot0_sdcard.bin -------------------------------------------------------------------------------- /workspace/egon/boot1_nand.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/egon/boot1_nand.bin -------------------------------------------------------------------------------- /workspace/egon/boot1_sdcard.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/egon/boot1_sdcard.bin -------------------------------------------------------------------------------- /workspace/pctools/gen_check_code: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/pctools/gen_check_code -------------------------------------------------------------------------------- /workspace/pctools/gen_check_code.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/pctools/gen_check_code.exe -------------------------------------------------------------------------------- /workspace/wboot/bootfs/boot.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/wboot/bootfs/boot.axf -------------------------------------------------------------------------------- /workspace/wboot/bootfs/drv_de.drv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/wboot/bootfs/drv_de.drv -------------------------------------------------------------------------------- /workspace/wboot/bootfs/drv_hdmi.drv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/wboot/bootfs/drv_hdmi.drv -------------------------------------------------------------------------------- /workspace/wboot/bootfs/prvt.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/wboot/bootfs/prvt.axf -------------------------------------------------------------------------------- /workspace/wboot/bootfs/sprite.axf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hno/allwinner-boot/HEAD/workspace/wboot/bootfs/sprite.axf --------------------------------------------------------------------------------