├── fs ├── reiserfs │ └── Kconfig ├── cbfs │ └── Makefile ├── fat │ └── Makefile └── zfs │ └── Makefile ├── tools ├── dtoc │ ├── dtoc │ ├── .gitignore │ └── test_fdt ├── binman │ ├── binman │ ├── .gitignore │ ├── etype │ │ └── __init__.py │ └── test │ │ ├── files │ │ ├── 1.dat │ │ ├── ignored_dir.dat │ │ │ └── ignore │ │ ├── not-this-one │ │ └── 2.dat │ │ ├── u_boot_binman_syms_bad.c │ │ ├── 001_invalid.dts │ │ ├── bss_data │ │ ├── 002_missing_node.dts │ │ ├── ifwi.bin.gz │ │ ├── descriptor.bin │ │ ├── fitimage.bin.gz │ │ ├── u_boot_binman_syms │ │ ├── u_boot_ucode_ptr │ │ ├── u_boot_no_ucode_ptr │ │ ├── u_boot_binman_syms_bad │ │ ├── u_boot_binman_syms_size │ │ ├── 003_empty.dts │ │ ├── 073_gbb_no_size.dts │ │ ├── 005_simple.dts │ │ ├── 036_u_boot_img.dts │ │ ├── 079_uses_pos.dts │ │ ├── 072_gbb_too_small.dts │ │ ├── 004_invalid_entry.dts │ │ ├── 091_hash_no_algo.dts │ │ └── 052_u_boot_spl_nodtb.dts ├── patman │ ├── patman │ └── .gitignore ├── buildman │ ├── .gitignore │ └── buildman ├── microcode-tool ├── version.h ├── concurrencytest │ └── .gitignore ├── env │ ├── crc32.c │ ├── ctype.c │ ├── env_attr.c │ ├── env_flags.c │ ├── linux_string.c │ └── .gitignore ├── getline.h ├── libfdt │ ├── fdt.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── fdt_overlay.c │ ├── fdt_addresses.c │ ├── fdt_strerror.c │ └── fdt_empty_tree.c └── logos │ ├── atmel.bmp │ ├── denx.bmp │ ├── esd.bmp │ ├── engicam.bmp │ ├── ronetix.bmp │ ├── siemens.bmp │ ├── syteco.bmp │ ├── toradex.bmp │ ├── compulab.bmp │ ├── denx-comp.bmp │ ├── freescale.bmp │ ├── gateworks.bmp │ ├── microchip.bmp │ ├── solidrun.bmp │ ├── wandboard.bmp │ ├── intercontrol.bmp │ ├── u-boot_logo.bmp │ ├── linux_logo_ttcontrol.bmp │ └── linux_logo_ttcontrol_palfin.bmp ├── doc ├── .gitignore ├── media │ └── linker_lists.h.rst.exceptions ├── sphinx │ └── requirements.txt ├── chromium │ └── devkeys │ │ ├── kernel.keyblock │ │ └── kernel_data_key.vbprivk ├── device-tree-bindings │ ├── spi │ │ └── spi_altera.txt │ ├── misc │ │ └── altera_sysid.txt │ ├── serial │ │ └── altera_jtaguart.txt │ ├── root.txt │ └── mtd │ │ └── spi-nand.txt ├── board │ ├── atmel │ │ └── index.rst │ ├── xilinx │ │ └── index.rst │ ├── sifive │ │ └── index.rst │ ├── coreboot │ │ └── index.rst │ ├── freescale │ │ └── index.rst │ ├── renesas │ │ └── index.rst │ ├── AndesTech │ │ └── index.rst │ └── google │ │ └── index.rst ├── README.fsl-clk ├── api │ └── serial.rst └── bounces ├── test ├── py │ ├── .gitignore │ └── tests │ │ └── vboot │ │ └── sandbox-kernel.dts ├── log │ └── Makefile └── env │ └── Makefile ├── arch ├── m68k │ └── include │ │ └── asm │ │ └── linkage.h ├── mips │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── gpio.h │ │ │ └── asm-offsets.h │ ├── dts │ │ └── include │ │ │ └── dt-bindings │ ├── mach-bmips │ │ └── Makefile │ ├── mach-ath79 │ │ ├── ar934x │ │ │ └── Makefile │ │ ├── ar933x │ │ │ └── Makefile │ │ ├── qca953x │ │ │ └── Makefile │ │ └── qca956x │ │ │ └── Makefile │ ├── mach-jz47xx │ │ ├── jz4780 │ │ │ └── Makefile │ │ └── Makefile │ └── mach-mtmips │ │ └── Makefile ├── nios2 │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── gpio.h │ │ │ ├── sections.h │ │ │ └── unaligned.h │ ├── dts │ │ └── include │ │ │ └── dt-bindings │ └── Makefile ├── sh │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ └── processor.h │ └── Makefile ├── arc │ ├── include │ │ └── asm │ │ │ ├── string.h │ │ │ ├── gpio.h │ │ │ └── unaligned.h │ └── cpu │ │ ├── arcv1 │ │ └── Makefile │ │ └── arcv2 │ │ └── Makefile ├── microblaze │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── gpio.h │ │ │ └── unaligned.h │ ├── dts │ │ ├── include │ │ │ └── dt-bindings │ │ └── microblaze-generic.dts │ └── Makefile ├── powerpc │ ├── dts │ │ ├── .gitignore │ │ └── gdsys │ │ │ └── soc │ │ │ ├── i2c │ │ │ ├── dallas-rtc.dtsi │ │ │ └── cirrus-audio-codec.dtsi │ │ │ └── lbc │ │ │ └── gazerbeam.dtsi │ ├── cpu │ │ ├── mpc85xx │ │ │ └── resetvec.S │ │ ├── Makefile │ │ └── mpc83xx │ │ │ └── sysio │ │ │ └── Kconfig │ └── include │ │ └── asm │ │ ├── gpio.h │ │ └── linkage.h ├── sandbox │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ ├── string.h │ │ │ └── unaligned.h │ └── dts │ │ └── include │ │ └── dt-bindings ├── .gitignore ├── arm │ ├── mach-mvebu │ │ ├── .gitignore │ │ ├── armada3700 │ │ │ └── Makefile │ │ ├── armada8k │ │ │ └── Makefile │ │ └── serdes │ │ │ └── axp │ │ │ └── Makefile │ ├── dts │ │ ├── zynq-zc770-xm011-x16.dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── bcm283x-rpi-usb-host.dtsi │ │ ├── tegra114-u-boot.dtsi │ │ ├── tegra124-u-boot.dtsi │ │ ├── tegra210-u-boot.dtsi │ │ ├── tegra30-u-boot.dtsi │ │ ├── sun4i-a10-inet97fv2.dts │ │ ├── at91sam9g25-gardena-smart-gateway-u-boot.dtsi │ │ ├── imx6dl-sabresd-u-boot.dtsi │ │ ├── imx6q-sabresd-u-boot.dtsi │ │ ├── imx6qp-sabresd-u-boot.dtsi │ │ ├── imx6dl-sabreauto-u-boot.dtsi │ │ ├── imx6q-sabreauto-u-boot.dtsi │ │ ├── imx6qp-sabreauto-u-boot.dtsi │ │ ├── bcm2836-rpi.dtsi │ │ ├── rk3036-sdk-u-boot.dtsi │ │ ├── rk3399-gru-u-boot.dtsi │ │ ├── imx6dl-icore-u-boot.dtsi │ │ ├── imx6q-icore-u-boot.dtsi │ │ └── rk3399-khadas-edge-v-u-boot.dtsi │ ├── mach-aspeed │ │ └── ast2500 │ │ │ └── Makefile │ ├── cpu │ │ ├── Makefile │ │ ├── armv7 │ │ │ ├── sunxi │ │ │ │ └── start.c │ │ │ ├── bcmcygnus │ │ │ │ └── Makefile │ │ │ ├── bcmnsp │ │ │ │ └── Makefile │ │ │ └── iproc-common │ │ │ │ └── Makefile │ │ ├── arm926ejs │ │ │ └── mxs │ │ │ │ └── mxsimage-spl.mx23.cfg │ │ ├── arm11 │ │ │ └── Makefile │ │ ├── armv8 │ │ │ ├── hisilicon │ │ │ │ └── Makefile │ │ │ └── s32v234 │ │ │ │ └── Makefile │ │ └── armv7m │ │ │ └── config.mk │ ├── mach-owl │ │ └── Makefile │ ├── mach-zynqmp-r5 │ │ └── Makefile │ ├── mach-mediatek │ │ ├── mt8516 │ │ │ └── Makefile │ │ ├── mt7623 │ │ │ └── Makefile │ │ └── mt7629 │ │ │ └── Makefile │ ├── mach-imx │ │ ├── imx8 │ │ │ └── Makefile │ │ ├── imx8m │ │ │ └── Makefile │ │ └── mx7ulp │ │ │ └── Makefile │ ├── mach-tegra │ │ └── tegra186 │ │ │ └── Makefile │ ├── mach-uniphier │ │ ├── arm64 │ │ │ └── Makefile │ │ ├── clk │ │ │ ├── dpll-pro5.c │ │ │ └── dpll-pxs2.c │ │ └── bcu │ │ │ └── Makefile │ ├── include │ │ └── asm │ │ │ ├── arch-ls102xa │ │ │ └── soc.h │ │ │ ├── linkage.h │ │ │ ├── arch-tegra114 │ │ │ └── powergate.h │ │ │ ├── arch-tegra124 │ │ │ └── powergate.h │ │ │ ├── arch-tegra20 │ │ │ └── powergate.h │ │ │ └── arch-tegra30 │ │ │ └── powergate.h │ ├── mach-exynos │ │ └── config.mk │ ├── mach-stm32 │ │ ├── Makefile │ │ └── stm32f7 │ │ │ └── Kconfig │ ├── mach-versal │ │ └── include │ │ │ └── mach │ │ │ └── gpio.h │ ├── mach-highbank │ │ └── Makefile │ └── mach-rockchip │ │ ├── rv1108 │ │ └── rv1108.c │ │ └── rk3368 │ │ └── Makefile ├── x86 │ ├── dts │ │ ├── include │ │ │ └── dt-bindings │ │ ├── pcspkr.dtsi │ │ ├── keyboard.dtsi │ │ ├── reset.dtsi │ │ ├── tsc_timer.dtsi │ │ └── rtc.dtsi │ ├── include │ │ └── asm │ │ │ ├── ioctl.h │ │ │ ├── unaligned.h │ │ │ └── linkage.h │ └── cpu │ │ ├── x86_64 │ │ └── Makefile │ │ ├── efi │ │ └── Kconfig │ │ ├── braswell │ │ └── Makefile │ │ ├── queensbay │ │ └── Makefile │ │ └── slimbootloader │ │ └── Makefile ├── xtensa │ ├── dts │ │ └── include │ │ │ └── dt-bindings │ ├── include │ │ └── asm │ │ │ ├── linkage.h │ │ │ └── unaligned.h │ └── Makefile ├── nds32 │ ├── include │ │ └── asm │ │ │ └── unaligned.h │ └── Makefile └── riscv │ ├── include │ └── asm │ │ └── unaligned.h │ └── cpu │ ├── generic │ └── Makefile │ └── Makefile ├── lib ├── errno.c ├── efi_loader │ └── .gitignore ├── libfdt │ ├── libfdt_internal.h │ ├── fdt.c │ ├── fdt_rw.c │ ├── fdt_sw.c │ ├── fdt_wip.c │ ├── fdt_overlay.c │ ├── fdt_addresses.c │ ├── fdt_empty_tree.c │ └── fdt_strerror.c ├── lzma │ └── license.txt ├── efi_selftest │ └── .gitignore ├── optee │ └── Makefile ├── dhry │ └── Makefile ├── zstd │ └── Makefile ├── zlib │ └── Makefile ├── lzo │ └── Makefile ├── at91 │ └── Makefile └── tizen │ └── Makefile ├── scripts ├── dtc │ ├── .gitignore │ ├── version_gen.h │ └── pylibfdt │ │ └── .gitignore ├── basic │ └── .gitignore ├── .gitignore ├── kconfig │ ├── tests │ │ ├── no_write_if_dep_unmet │ │ │ ├── config │ │ │ └── expected_config │ │ ├── err_recursive_inc │ │ │ ├── Kconfig │ │ │ ├── Kconfig.inc3 │ │ │ ├── Kconfig.inc2 │ │ │ └── Kconfig.inc1 │ │ ├── inter_choice │ │ │ ├── defconfig │ │ │ └── expected_config │ │ ├── choice_value_with_m_dep │ │ │ ├── config │ │ │ ├── expected_config │ │ │ └── expected_stdout │ │ ├── rand_nested_choice │ │ │ ├── expected_stdout0 │ │ │ ├── expected_stdout1 │ │ │ └── expected_stdout2 │ │ ├── choice │ │ │ └── oldask1_config │ │ └── new_choice_with_dep │ │ │ └── config │ └── lxdialog │ │ └── .gitignore └── const_structs.checkpatch ├── Documentation └── .gitignore ├── board ├── rockchip │ ├── evb_rk3128 │ │ ├── evk-rk3128.c │ │ └── Makefile │ ├── evb_px5 │ │ ├── README │ │ ├── evb-px5.c │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── sheep_rk3368 │ │ ├── sheep_rk3368.c │ │ └── Makefile │ ├── evb_rk3288 │ │ ├── evb-rk3288.c │ │ └── Makefile │ ├── evb_rk3328 │ │ ├── evb-rk3328.c │ │ └── Makefile │ ├── evb_rk3036 │ │ └── Makefile │ ├── evb_rk3229 │ │ └── Makefile │ ├── kylin_rk3036 │ │ └── Makefile │ ├── evb_rk3399 │ │ └── Makefile │ ├── evb_rv1108 │ │ └── Makefile │ └── tinker_rk3288 │ │ └── Makefile ├── l+g │ └── vinco │ │ └── Makefile ├── xilinx │ ├── zynq │ │ ├── zynq-cse-nand │ │ ├── zynq-cse-nor │ │ ├── zynq-cse-qspi-single │ │ └── .gitignore │ ├── zynqmp │ │ ├── zynqmp-mini │ │ ├── avnet-ultra96-rev1 │ │ ├── zynqmp-mini-emmc0 │ │ ├── zynqmp-mini-emmc1 │ │ ├── zynqmp-mini-qspi │ │ ├── zynqmp-zc1275-revA │ │ ├── zynqmp-zcu104-revC │ │ └── sleep.h │ ├── zynqmp_r5 │ │ └── Makefile │ └── versal │ │ └── Makefile ├── Marvell │ ├── db-88f6281-bp │ │ └── .gitignore │ ├── db-xc3-24g4xg │ │ └── .gitignore │ ├── db-88f6720 │ │ └── Makefile │ ├── mvebu_armada-37xx │ │ └── Makefile │ ├── mvebu_armada-8k │ │ └── Makefile │ ├── db-88f6820-gp │ │ └── Makefile │ ├── db-mv784mp-gp │ │ └── Makefile │ ├── db-88f6820-amc │ │ └── Makefile │ └── gplugd │ │ └── MAINTAINERS ├── mikrotik │ └── crs305-1g-4s │ │ └── .gitignore ├── aspeed │ └── evb_ast2500 │ │ ├── Makefile │ │ └── evb_ast2500.c ├── sks-kinkel │ └── sksimx6 │ │ └── Makefile ├── cobra5272 │ ├── bdm │ │ ├── gdbinit.reset │ │ ├── reset │ │ └── load-cobra_uboot │ ├── MAINTAINERS │ └── Makefile ├── topic │ └── zynq │ │ ├── board.c │ │ └── MAINTAINERS ├── intel │ ├── bayleybay │ │ ├── .gitignore │ │ ├── bayleybay.c │ │ └── MAINTAINERS │ ├── edison │ │ └── .gitignore │ ├── galileo │ │ ├── .gitignore │ │ └── MAINTAINERS │ ├── minnowmax │ │ ├── .gitignore │ │ └── Makefile │ ├── crownbay │ │ └── Makefile │ ├── cherryhill │ │ └── Makefile │ ├── cougarcanyon2 │ │ └── Makefile │ └── slimbootloader │ │ └── Makefile ├── geekbuying │ └── geekbox │ │ ├── README │ │ ├── Makefile │ │ ├── geekbox.c │ │ └── MAINTAINERS ├── advantech │ ├── som-db5800-som-6867 │ │ └── .gitignore │ └── dms-ba16 │ │ └── Makefile ├── congatec │ └── conga-qeval20-qa3-e3845 │ │ └── .gitignore ├── imgtec │ └── ci20 │ │ └── Makefile ├── qca │ ├── ap121 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── ap143 │ │ ├── Makefile │ │ └── MAINTAINERS │ └── ap152 │ │ ├── Makefile │ │ └── MAINTAINERS ├── comtrend │ ├── ct5361 │ │ ├── Makefile │ │ └── ct-5361.c │ ├── ar5315u │ │ ├── Makefile │ │ └── ar-5315u.c │ ├── ar5387un │ │ ├── Makefile │ │ └── ar-5387un.c │ ├── vr3032u │ │ ├── Makefile │ │ └── vr-3032u.c │ └── wap5813n │ │ ├── Makefile │ │ └── wap-5813n.c ├── huawei │ └── hg556a │ │ ├── Makefile │ │ └── hg556a.c ├── laird │ ├── wb45n │ │ ├── Makefile │ │ └── MAINTAINERS │ └── wb50n │ │ ├── Makefile │ │ └── MAINTAINERS ├── mediatek │ ├── pumpkin │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── mt7623 │ │ └── Makefile │ └── mt7629 │ │ └── Makefile ├── netgear │ ├── cg3100d │ │ ├── Makefile │ │ └── cg3100d.c │ └── dgnd3700v2 │ │ └── Makefile ├── sagem │ └── f@st1704 │ │ ├── Makefile │ │ └── f@st1704.c ├── sfr │ └── nb4_ser │ │ ├── Makefile │ │ └── nb4-ser.c ├── tplink │ └── wdr4300 │ │ └── Makefile ├── vscom │ └── baltos │ │ └── README ├── broadcom │ ├── bcm963158 │ │ └── Makefile │ ├── bcm968380gerg │ │ ├── Makefile │ │ ├── board.c │ │ └── bcm968380gerg.c │ ├── bcm968580xref │ │ └── Makefile │ ├── bcmns2 │ │ └── Makefile │ ├── bcm_ep │ │ └── Makefile │ ├── bcm23550_w1d │ │ └── Makefile │ └── bcm28155_ap │ │ └── Makefile ├── emulation │ ├── qemu-arm │ │ └── Makefile │ ├── qemu-x86 │ │ └── Makefile │ └── qemu-riscv │ │ └── Makefile ├── hisilicon │ ├── hikey960 │ │ └── Makefile │ ├── hikey │ │ └── Makefile │ └── poplar │ │ └── Makefile ├── technexion │ ├── tao3530 │ │ └── Makefile │ └── pico-imx7d │ │ └── Makefile ├── seeed │ └── linkit-smart-7688 │ │ └── Makefile ├── woodburn │ └── imximage.cfg ├── gardena │ ├── smart-gateway-mt7688 │ │ └── Makefile │ └── smart-gateway-at91sam │ │ └── Makefile ├── gdsys │ └── a38x │ │ └── ihs_phys.h ├── seco │ ├── common │ │ └── Makefile │ └── mx6quq7 │ │ └── Makefile ├── ucRobotics │ └── bubblegum_96 │ │ └── Makefile ├── bitmain │ └── antminer_s9 │ │ └── board.c ├── mscc │ ├── jr2 │ │ └── Makefile │ ├── luton │ │ └── Makefile │ ├── serval │ │ └── Makefile │ ├── ocelot │ │ └── Makefile │ ├── servalt │ │ └── Makefile │ └── common │ │ └── Makefile ├── opalkelly │ └── zynq │ │ └── board.c ├── udoo │ ├── neo │ │ └── Makefile │ ├── Makefile │ ├── Kconfig │ └── MAINTAINERS ├── google │ ├── gru │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── chromebook_samus │ │ ├── Makefile │ │ └── samus.c │ ├── chromebox_panther │ │ ├── Makefile │ │ └── panther.c │ ├── chromebook_link │ │ └── link.c │ ├── common │ │ └── Makefile │ └── veyron │ │ └── Makefile ├── grinn │ ├── liteboard │ │ └── Makefile │ └── chiliboard │ │ └── Makefile ├── warp7 │ └── Makefile ├── efi │ ├── efi-x86_app │ │ ├── Makefile │ │ └── app.c │ └── efi-x86_payload │ │ └── Makefile ├── is1 │ ├── socfpga.c │ ├── Makefile │ └── MAINTAINERS ├── armadeus │ └── opos6uldev │ │ └── Makefile ├── engicam │ ├── imx6q │ │ └── Makefile │ ├── imx6ul │ │ └── Makefile │ └── common │ │ └── Makefile ├── variscite │ └── dart_6ul │ │ └── Makefile ├── el │ └── el6x │ │ └── Makefile ├── maxbcm │ ├── Makefile │ └── MAINTAINERS ├── radxa │ ├── rock │ │ ├── rock.c │ │ ├── Makefile │ │ └── MAINTAINERS │ └── rock2 │ │ ├── rock2.c │ │ ├── Makefile │ │ └── MAINTAINERS ├── sandbox │ └── Makefile ├── sr1500 │ ├── Makefile │ └── MAINTAINERS ├── toradex │ ├── apalis-imx8 │ │ └── Makefile │ ├── colibri_imx7 │ │ └── Makefile │ ├── apalis_t30 │ │ └── Makefile │ ├── colibri-imx6ull │ │ └── Makefile │ ├── colibri-imx8x │ │ └── Makefile │ ├── colibri_t20 │ │ └── Makefile │ ├── colibri_t30 │ │ └── Makefile │ ├── apalis-tk1 │ │ └── Makefile │ └── colibri_vf │ │ └── Makefile ├── freescale │ ├── ls1021atsn │ │ └── Makefile │ ├── mx6slevk │ │ └── Makefile │ ├── ls1028a │ │ └── Makefile │ ├── mx6sllevk │ │ └── Makefile │ ├── mx6ullevk │ │ └── Makefile │ ├── vf610twr │ │ └── Makefile │ ├── mx6sxsabresd │ │ └── Makefile │ ├── mx7dsabresd │ │ └── Makefile │ ├── ls2080a │ │ └── Makefile │ ├── mx6sxsabreauto │ │ └── Makefile │ ├── mx6ul_14x14_evk │ │ └── Makefile │ ├── m5272c3 │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── imx8qm_mek │ │ └── Makefile │ ├── imx8qxp_mek │ │ └── Makefile │ ├── m5249evb │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── m5275evb │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── m5282evb │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── p1023rdb │ │ └── MAINTAINERS │ ├── ls1046afrwy │ │ └── Makefile │ ├── ls2080ardb │ │ └── Makefile │ ├── m5208evbe │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── ls2080aqds │ │ └── Makefile │ ├── m5235evb │ │ └── Makefile │ ├── m547xevb │ │ └── Makefile │ ├── m548xevb │ │ └── Makefile │ ├── m52277evb │ │ └── Makefile │ ├── m53017evb │ │ └── Makefile │ ├── mpc8323erdb │ │ └── Makefile │ ├── mpc8349itx │ │ └── Makefile │ ├── m5253demo │ │ └── Makefile │ ├── m5329evb │ │ └── Makefile │ ├── m5373evb │ │ └── Makefile │ ├── mpc8313erdb │ │ └── Makefile │ ├── mpc8315erdb │ │ └── Makefile │ ├── mx35pdk │ │ └── MAINTAINERS │ ├── mx51evk │ │ └── MAINTAINERS │ └── p1_twr │ │ └── MAINTAINERS ├── keymile │ └── scripts │ │ ├── ramfs-arm.txt │ │ ├── develop-arm.txt │ │ ├── ramfs-ppc_82xx.txt │ │ ├── ramfs-ppc_8xx.txt │ │ ├── develop-ppc_82xx.txt │ │ └── develop-ppc_8xx.txt ├── phytec │ ├── pcm052 │ │ └── Makefile │ ├── pcl063 │ │ └── Makefile │ ├── pfla02 │ │ └── MAINTAINERS │ └── pcm058 │ │ └── MAINTAINERS ├── tbs │ └── tbs2910 │ │ └── Makefile ├── technologic │ └── ts4800 │ │ └── Makefile ├── abilis │ └── tb100 │ │ ├── Makefile │ │ └── MAINTAINERS ├── cadence │ └── xtfpga │ │ └── Makefile ├── cavium │ └── thunderx │ │ └── Makefile ├── mqmaker │ └── miqi_rk3288 │ │ ├── miqi-rk3288.c │ │ └── Makefile ├── nvidia │ ├── p2771-0000 │ │ └── Makefile │ ├── cardhu │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── dalmore │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── harmony │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── beaver │ │ └── Makefile │ ├── seaboard │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── p2571 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── ventana │ │ └── Makefile │ ├── e2220-1170 │ │ └── Makefile │ ├── p2371-0000 │ │ └── Makefile │ ├── p2371-2180 │ │ └── Makefile │ └── venice2 │ │ └── MAINTAINERS ├── samsung │ ├── smdk5250 │ │ └── Makefile │ ├── smdk5420 │ │ └── Makefile │ ├── arndale │ │ └── Makefile │ ├── trats │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── espresso7420 │ │ └── Makefile │ ├── goni │ │ └── MAINTAINERS │ ├── odroid │ │ └── MAINTAINERS │ ├── origen │ │ └── MAINTAINERS │ └── trats2 │ │ └── MAINTAINERS ├── solidrun │ └── clearfog │ │ └── Makefile ├── terasic │ ├── de10-nano │ │ ├── Makefile │ │ ├── socfpga.c │ │ └── MAINTAINERS │ ├── sockit │ │ ├── socfpga.c │ │ └── MAINTAINERS │ ├── de0-nano-soc │ │ └── socfpga.c │ └── de1-soc │ │ └── MAINTAINERS ├── ti │ ├── dra7xx │ │ └── Makefile │ ├── am57xx │ │ └── Makefile │ ├── evm │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── panda │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── omap5_uevm │ │ └── Makefile │ ├── ti814x │ │ ├── MAINTAINERS │ │ └── evm.h │ ├── ti816x │ │ └── MAINTAINERS │ ├── beagle │ │ └── MAINTAINERS │ ├── common │ │ └── Makefile │ └── sdp4430 │ │ └── MAINTAINERS ├── amlogic │ ├── p200 │ │ └── Makefile │ ├── p201 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── p212 │ │ └── Makefile │ ├── q200 │ │ └── Makefile │ ├── s400 │ │ └── Makefile │ ├── u200 │ │ ├── Makefile │ │ └── MAINTAINERS │ ├── w400 │ │ ├── Makefile │ │ └── MAINTAINERS │ └── sei510 │ │ └── Makefile ├── aries │ └── mcvevk │ │ └── socfpga.c ├── devboards │ └── dbm-soc1 │ │ ├── Makefile │ │ ├── socfpga.c │ │ └── MAINTAINERS ├── ge │ ├── common │ │ ├── Makefile │ │ └── ge_common.h │ └── bx50v3 │ │ └── Makefile ├── warp │ ├── Kconfig │ └── MAINTAINERS ├── h2200 │ ├── Kconfig │ └── MAINTAINERS ├── kobol │ └── helios4 │ │ ├── Makefile │ │ └── MAINTAINERS ├── raspberrypi │ └── rpi │ │ ├── Makefile │ │ └── MAINTAINERS ├── renesas │ ├── MigoR │ │ └── MAINTAINERS │ ├── sh7752evb │ │ └── MAINTAINERS │ ├── sh7753evb │ │ └── MAINTAINERS │ ├── sh7757lcr │ │ └── MAINTAINERS │ ├── alt │ │ └── MAINTAINERS │ ├── grpeach │ │ └── MAINTAINERS │ └── silk │ │ └── MAINTAINERS ├── socrates │ ├── MAINTAINERS │ └── Kconfig ├── synopsys │ ├── hsdk │ │ ├── MAINTAINERS │ │ └── Makefile │ ├── Kconfig │ ├── axs10x │ │ └── Makefile │ ├── emsdp │ │ ├── Makefile │ │ └── config.mk │ └── iot_devkit │ │ ├── Makefile │ │ └── MAINTAINERS ├── tqc │ └── tqm834x │ │ └── MAINTAINERS ├── ve8313 │ ├── Kconfig │ ├── MAINTAINERS │ └── Makefile ├── CZ.NIC │ ├── turris_omnia │ │ └── Makefile │ └── turris_mox │ │ └── Makefile ├── altera │ ├── arria10-socdk │ │ ├── Makefile │ │ └── socfpga.c │ ├── arria5-socdk │ │ └── socfpga.c │ ├── cyclone5-socdk │ │ └── socfpga.c │ └── stratix10-socdk │ │ ├── Makefile │ │ └── socfpga.c ├── amarula │ └── vyasa-rk3288 │ │ └── Makefile ├── ebv │ └── socrates │ │ └── socfpga.c ├── firefly │ └── firefly-rk3288 │ │ └── Makefile ├── sbc8349 │ ├── Kconfig │ └── Makefile ├── sbc8548 │ └── Kconfig ├── sifive │ └── fu540 │ │ └── Makefile ├── spear │ ├── x600 │ │ ├── fpga.h │ │ └── MAINTAINERS │ ├── spear300 │ │ └── Makefile │ ├── spear310 │ │ └── Makefile │ ├── spear320 │ │ └── Makefile │ └── spear600 │ │ └── Makefile ├── buffalo │ └── lsxl │ │ └── Makefile ├── overo │ ├── Kconfig │ └── MAINTAINERS ├── sbc8641d │ ├── Kconfig │ └── MAINTAINERS ├── sysam │ ├── amcore │ │ ├── Makefile │ │ └── MAINTAINERS │ └── stmark2 │ │ └── MAINTAINERS ├── theobroma-systems │ ├── lion_rk3368 │ │ ├── lion_rk3368.c │ │ └── Makefile │ └── puma_rk3399 │ │ └── Makefile ├── atmel │ ├── sama5d4ek │ │ └── Makefile │ └── sama5d4_xplained │ │ └── Makefile ├── compulab │ └── trimslice │ │ └── Makefile ├── elgin │ └── elgin_rv1108 │ │ └── Makefile ├── theadorable │ ├── Makefile │ └── MAINTAINERS ├── vamrs │ └── rock960_rk3399 │ │ ├── rock960-rk3399.c │ │ └── Makefile ├── wandboard │ ├── Kconfig │ └── Makefile ├── Seagate │ ├── nas220 │ │ ├── Makefile │ │ └── MAINTAINERS │ └── dockstar │ │ └── MAINTAINERS ├── amazon │ └── kc1 │ │ └── MAINTAINERS ├── armltd │ └── vexpress64 │ │ └── pcie.h ├── mpc8308_p1m │ ├── Kconfig │ └── MAINTAINERS ├── pandora │ ├── Kconfig │ ├── Makefile │ └── MAINTAINERS ├── Synology │ └── ds414 │ │ └── MAINTAINERS ├── ccv │ └── xpress │ │ └── Makefile ├── chipspark │ └── popmetal_rk3288 │ │ └── Makefile ├── eets │ └── pdu001 │ │ └── MAINTAINERS ├── highbank │ ├── MAINTAINERS │ └── Makefile ├── ids │ └── ids8313 │ │ └── MAINTAINERS ├── kosagi │ └── novena │ │ └── MAINTAINERS ├── ppcag │ └── bg0900 │ │ └── MAINTAINERS ├── siemens │ ├── rut │ │ └── MAINTAINERS │ ├── corvus │ │ └── MAINTAINERS │ ├── pxm2 │ │ └── MAINTAINERS │ └── smartweb │ │ └── MAINTAINERS ├── BuS │ └── eb_cpu5282 │ │ └── Makefile ├── alliedtelesis │ ├── SBx81LIFKW │ │ └── Makefile │ └── SBx81LIFXCAT │ │ └── Makefile ├── creative │ └── xfi3 │ │ └── MAINTAINERS ├── dfi │ └── dfi-bt700 │ │ └── Makefile ├── gumstix │ ├── pepper │ │ └── MAINTAINERS │ └── duovero │ │ ├── MAINTAINERS │ │ └── Makefile ├── lego │ └── ev3 │ │ └── MAINTAINERS ├── lg │ └── sniper │ │ └── MAINTAINERS ├── logicpd │ ├── zoom1 │ │ ├── Makefile │ │ └── MAINTAINERS │ └── omap3som │ │ └── Makefile ├── ronetix │ ├── pm9261 │ │ └── MAINTAINERS │ ├── pm9263 │ │ └── MAINTAINERS │ └── pm9g45 │ │ └── MAINTAINERS ├── syteco │ └── zmx25 │ │ ├── MAINTAINERS │ │ └── Makefile ├── CarMediaLab │ └── flea3 │ │ └── MAINTAINERS ├── astro │ └── mcf5373l │ │ └── Makefile ├── avionic-design │ └── tec-ng │ │ └── Makefile ├── barco │ └── titanium │ │ └── MAINTAINERS ├── microchip │ └── pic32mzda │ │ └── Makefile ├── nokia │ └── rx51 │ │ └── MAINTAINERS ├── raidsonic │ └── ib62x0 │ │ └── MAINTAINERS ├── samtec │ └── vining_fpga │ │ └── MAINTAINERS ├── zyxel │ └── nsa310s │ │ └── Makefile ├── cei │ └── cei-tk1-som │ │ └── MAINTAINERS ├── iomega │ └── iconnect │ │ └── MAINTAINERS ├── k+p │ └── kp_imx53 │ │ └── MAINTAINERS ├── liebherr │ └── mccmon6 │ │ └── Makefile └── varisys │ └── cyrus │ └── Makefile ├── examples └── api │ └── .gitignore ├── include ├── string.h ├── fdt.h ├── .gitignore ├── video_font_data.h ├── spd_sdram.h ├── linux │ ├── ioctl.h │ └── linux_string.h ├── sparse_defs.h └── asm-offsets.h ├── drivers ├── ddr │ ├── imx │ │ └── Kconfig │ ├── Kconfig │ ├── microchip │ │ └── Makefile │ └── marvell │ │ └── a38x │ │ └── mv_ddr_build_message.c ├── mtd │ ├── ubispl │ │ └── Makefile │ └── nand │ │ ├── Kconfig │ │ ├── spi │ │ └── Makefile │ │ └── Makefile ├── memory │ └── Makefile ├── pinctrl │ ├── aspeed │ │ └── Makefile │ └── ath79 │ │ └── Makefile ├── clk │ ├── mvebu │ │ └── Makefile │ ├── owl │ │ └── Makefile │ ├── analogbits │ │ ├── Kconfig │ │ └── Makefile │ ├── uniphier │ │ └── Makefile │ ├── sifive │ │ └── Makefile │ ├── aspeed │ │ └── Makefile │ └── altera │ │ └── Makefile ├── crypto │ └── Kconfig ├── dma │ └── ti │ │ └── Makefile ├── soc │ ├── Kconfig │ ├── Makefile │ └── ti │ │ └── Makefile ├── video │ ├── fonts │ │ ├── rufscript010.ttf │ │ ├── ankacoder_c75_r.ttf │ │ ├── cantoraone_regular.ttf │ │ └── nimbus_sans_l_regular.ttf │ ├── tegra124 │ │ └── Makefile │ └── imx-hdp │ │ └── hdp │ │ └── Makefile ├── misc │ └── imx8 │ │ └── Makefile ├── w1 │ └── Makefile ├── tee │ ├── optee │ │ └── Makefile │ └── Makefile ├── nvme │ └── Makefile ├── pch │ └── Makefile ├── phy │ └── allwinner │ │ └── Makefile ├── ram │ └── mediatek │ │ └── Makefile └── cache │ └── Makefile ├── cmd ├── riscv │ └── Makefile ├── .gitignore ├── arm │ └── Makefile ├── x86 │ └── Makefile └── mvebu │ └── Makefile ├── post └── cpu │ └── mpc83xx │ └── Makefile ├── common └── init │ └── Makefile └── api └── Kconfig /fs/reiserfs/Kconfig: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dtoc/dtoc: -------------------------------------------------------------------------------- 1 | dtoc.py -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- 1 | output 2 | -------------------------------------------------------------------------------- /test/py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/binman/binman: -------------------------------------------------------------------------------- 1 | binman.py -------------------------------------------------------------------------------- /tools/patman/patman: -------------------------------------------------------------------------------- 1 | patman.py -------------------------------------------------------------------------------- /arch/m68k/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/mips/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/sh/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/errno.c: -------------------------------------------------------------------------------- 1 | int errno = 0; 2 | -------------------------------------------------------------------------------- /scripts/dtc/.gitignore: -------------------------------------------------------------------------------- 1 | /dtc 2 | -------------------------------------------------------------------------------- /tools/binman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/binman/etype/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/dtoc/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/dtoc/test_fdt: -------------------------------------------------------------------------------- 1 | test_fdt.py -------------------------------------------------------------------------------- /tools/patman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /Documentation/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/string.h: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /arch/powerpc/dts/.gitignore: -------------------------------------------------------------------------------- 1 | *.dtb 2 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3128/evk-rk3128.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /scripts/basic/.gitignore: -------------------------------------------------------------------------------- 1 | fixdep 2 | -------------------------------------------------------------------------------- /tools/buildman/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /tools/buildman/buildman: -------------------------------------------------------------------------------- 1 | buildman.py -------------------------------------------------------------------------------- /tools/microcode-tool: -------------------------------------------------------------------------------- 1 | microcode-tool.py -------------------------------------------------------------------------------- /tools/version.h: -------------------------------------------------------------------------------- 1 | ../include/version.h -------------------------------------------------------------------------------- /arch/.gitignore: -------------------------------------------------------------------------------- 1 | /*/include/asm/arch 2 | -------------------------------------------------------------------------------- /doc/media/linker_lists.h.rst.exceptions: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/concurrencytest/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/l+g/vinco/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += vinco.o 2 | -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-nand: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm011 -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-nor: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm012 -------------------------------------------------------------------------------- /board/xilinx/zynq/zynq-cse-qspi-single: -------------------------------------------------------------------------------- 1 | zynq-zc706 -------------------------------------------------------------------------------- /examples/api/.gitignore: -------------------------------------------------------------------------------- 1 | demo 2 | demo.bin 3 | -------------------------------------------------------------------------------- /include/string.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /lib/efi_loader/.gitignore: -------------------------------------------------------------------------------- 1 | *.efi 2 | *.so 3 | -------------------------------------------------------------------------------- /tools/binman/test/files/1.dat: -------------------------------------------------------------------------------- 1 | sorry I'm late 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/ignored_dir.dat/ignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /board/xilinx/zynq/.gitignore: -------------------------------------------------------------------------------- 1 | /ps7_init_gpl.[ch] 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /tools/env/crc32.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/crc32.c" 2 | -------------------------------------------------------------------------------- /tools/env/ctype.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/ctype.c" 2 | -------------------------------------------------------------------------------- /tools/env/env_attr.c: -------------------------------------------------------------------------------- 1 | #include "../../env/attr.c" 2 | -------------------------------------------------------------------------------- /arch/arm/dts/zynq-zc770-xm011-x16.dts: -------------------------------------------------------------------------------- 1 | zynq-zc770-xm011.dts -------------------------------------------------------------------------------- /board/Marvell/db-88f6281-bp/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/Marvell/db-xc3-24g4xg/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/mikrotik/crs305-1g-4s/.gitignore: -------------------------------------------------------------------------------- 1 | kwbimage.cfg 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/avnet-ultra96-rev1: -------------------------------------------------------------------------------- 1 | zynqmp-zcu100-revC -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-emmc0: -------------------------------------------------------------------------------- 1 | zynqmp-zcu100-revC -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-emmc1: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-mini-qspi: -------------------------------------------------------------------------------- 1 | zynqmp-zcu102-rev1.0 -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-zc1275-revA: -------------------------------------------------------------------------------- 1 | zynqmp-zc1254-revA -------------------------------------------------------------------------------- /board/xilinx/zynqmp/zynqmp-zcu104-revC: -------------------------------------------------------------------------------- 1 | zynqmp-zcu104-revA -------------------------------------------------------------------------------- /include/fdt.h: -------------------------------------------------------------------------------- 1 | #include "../scripts/dtc/libfdt/fdt.h" 2 | -------------------------------------------------------------------------------- /tools/env/env_flags.c: -------------------------------------------------------------------------------- 1 | #include "../../env/flags.c" 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/arm/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/mips/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/x86/include/asm/ioctl.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /board/aspeed/evb_ast2500/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += evb_ast2500.o 2 | -------------------------------------------------------------------------------- /board/sks-kinkel/sksimx6/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | obj-y := sksimx6.o 3 | -------------------------------------------------------------------------------- /scripts/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | bin2c 5 | -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_bad.c: -------------------------------------------------------------------------------- 1 | u_boot_binman_syms.c -------------------------------------------------------------------------------- /arch/microblaze/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/mips/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/nios2/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/sandbox/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/xtensa/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /board/cobra5272/bdm/gdbinit.reset: -------------------------------------------------------------------------------- 1 | target bdm /dev/bdmcf0 2 | q 3 | -------------------------------------------------------------------------------- /board/topic/zynq/board.c: -------------------------------------------------------------------------------- 1 | #include "../../xilinx/zynq/board.c" 2 | -------------------------------------------------------------------------------- /drivers/ddr/imx/Kconfig: -------------------------------------------------------------------------------- 1 | source "drivers/ddr/imx/imx8m/Kconfig" 2 | -------------------------------------------------------------------------------- /drivers/mtd/ubispl/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += ubispl.o ../ubi/crc32.o 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/config: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | -------------------------------------------------------------------------------- /tools/env/linux_string.c: -------------------------------------------------------------------------------- 1 | #include "../../lib/linux_string.c" 2 | -------------------------------------------------------------------------------- /arch/arc/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/microblaze/dts/include/dt-bindings: -------------------------------------------------------------------------------- 1 | ../../../../include/dt-bindings -------------------------------------------------------------------------------- /arch/nds32/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/sections.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/nios2/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/riscv/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /arch/x86/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /board/intel/bayleybay/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/intel/edison/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/intel/galileo/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/intel/minnowmax/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /drivers/memory/Makefile: -------------------------------------------------------------------------------- 1 | 2 | obj-$(CONFIG_TI_AEMIF) += ti-aemif.o 3 | -------------------------------------------------------------------------------- /scripts/dtc/version_gen.h: -------------------------------------------------------------------------------- 1 | #define DTC_VERSION "DTC 1.4.6-gaadd0b65" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig: -------------------------------------------------------------------------------- 1 | source "Kconfig.inc1" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/defconfig: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_VAL0=y 2 | -------------------------------------------------------------------------------- /tools/getline.h: -------------------------------------------------------------------------------- 1 | int getline(char **lineptr, size_t *n, FILE *stream); 2 | -------------------------------------------------------------------------------- /arch/microblaze/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #include 2 | -------------------------------------------------------------------------------- /board/cobra5272/bdm/reset: -------------------------------------------------------------------------------- 1 | m68k-bdm-elf-gdb -n -x bdm/gdbinit.reset 2 | 3 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/README: -------------------------------------------------------------------------------- 1 | see board/rockchip/sheep_rk3368/README 2 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp/sleep.h: -------------------------------------------------------------------------------- 1 | /* Intentionally empty file for psu_init* */ 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc3: -------------------------------------------------------------------------------- 1 | source "Kconfig.inc1" 2 | -------------------------------------------------------------------------------- /tools/binman/test/files/not-this-one: -------------------------------------------------------------------------------- 1 | this does not have a .dat extenion 2 | -------------------------------------------------------------------------------- /tools/env/.gitignore: -------------------------------------------------------------------------------- 1 | embedded.c 2 | fw_printenv 3 | fw_printenv_unstripped 4 | -------------------------------------------------------------------------------- /arch/arm/dts/bcm283x-rpi-usb-host.dtsi: -------------------------------------------------------------------------------- 1 | &usb { 2 | dr_mode = "host"; 3 | }; 4 | -------------------------------------------------------------------------------- /arch/arm/mach-aspeed/ast2500/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += clk_ast2500.o sdram_ast2500.o 2 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/mpc85xx/resetvec.S: -------------------------------------------------------------------------------- 1 | .section .resetvec,"ax" 2 | b _start_e500 3 | -------------------------------------------------------------------------------- /scripts/kconfig/lxdialog/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # Generated files 3 | # 4 | lxdialog 5 | -------------------------------------------------------------------------------- /arch/arm/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj- += dummy.o 4 | -------------------------------------------------------------------------------- /board/advantech/som-db5800-som-6867/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /doc/sphinx/requirements.txt: -------------------------------------------------------------------------------- 1 | docutils==0.12 2 | Sphinx==1.4.9 3 | sphinx_rtd_theme 4 | -------------------------------------------------------------------------------- /include/.gitignore: -------------------------------------------------------------------------------- 1 | /autoconf.mk* 2 | /bmp_logo.h 3 | /bmp_logo_data.h 4 | /config.h 5 | -------------------------------------------------------------------------------- /lib/libfdt/libfdt_internal.h: -------------------------------------------------------------------------------- 1 | #include "../../scripts/dtc/libfdt/libfdt_internal.h" 2 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc2: -------------------------------------------------------------------------------- 1 | 2 | 3 | source "Kconfig.inc3" 4 | -------------------------------------------------------------------------------- /tools/binman/test/files/2.dat: -------------------------------------------------------------------------------- 1 | Oh, don't bother apologising, I'm sorry you're alive 2 | -------------------------------------------------------------------------------- /tools/libfdt/fdt.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt.c" 3 | -------------------------------------------------------------------------------- /board/congatec/conga-qeval20-qa3-e3845/.gitignore: -------------------------------------------------------------------------------- 1 | dsdt.aml 2 | dsdt.asl.tmp 3 | dsdt.c 4 | -------------------------------------------------------------------------------- /board/imgtec/ci20/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := ci20.o 4 | -------------------------------------------------------------------------------- /board/qca/ap121/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap121.o 4 | -------------------------------------------------------------------------------- /board/qca/ap143/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap143.o 4 | -------------------------------------------------------------------------------- /board/qca/ap152/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = ap152.o 4 | -------------------------------------------------------------------------------- /drivers/pinctrl/aspeed/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_ASPEED_AST2500_PINCTRL) += pinctrl_ast2500.o 2 | -------------------------------------------------------------------------------- /scripts/const_structs.checkpatch: -------------------------------------------------------------------------------- 1 | # Put structs here that should be constant 2 | __dummy__ 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/err_recursive_inc/Kconfig.inc1: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | source "Kconfig.inc2" 5 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_sw.c" 3 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra114-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra124-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra210-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/dts/tegra30-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | #include 2 | 3 | #include "tegra-u-boot.dtsi" 4 | -------------------------------------------------------------------------------- /arch/arm/mach-owl/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += sysmap-s900.o 4 | -------------------------------------------------------------------------------- /arch/arm/mach-zynqmp-r5/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += cpu.o 4 | -------------------------------------------------------------------------------- /arch/mips/mach-bmips/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += dram.o 4 | -------------------------------------------------------------------------------- /arch/powerpc/include/asm/gpio.h: -------------------------------------------------------------------------------- 1 | #include 2 | #include 3 | -------------------------------------------------------------------------------- /arch/x86/dts/pcspkr.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | pcspkr { 3 | compatible = "i8254,beeper"; 4 | }; 5 | }; 6 | -------------------------------------------------------------------------------- /board/comtrend/ct5361/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += ct-5361.o 4 | -------------------------------------------------------------------------------- /board/huawei/hg556a/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += hg556a.o 4 | -------------------------------------------------------------------------------- /board/laird/wb45n/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | 4 | obj-y += wb45n.o 5 | -------------------------------------------------------------------------------- /board/laird/wb50n/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | 4 | obj-y += wb50n.o 5 | -------------------------------------------------------------------------------- /board/mediatek/pumpkin/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += pumpkin.o 4 | -------------------------------------------------------------------------------- /board/netgear/cg3100d/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cg3100d.o 4 | -------------------------------------------------------------------------------- /board/sagem/f@st1704/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += f@st1704.o 4 | -------------------------------------------------------------------------------- /board/sfr/nb4_ser/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += nb4-ser.o 4 | -------------------------------------------------------------------------------- /board/tplink/wdr4300/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y = wdr4300.o 4 | -------------------------------------------------------------------------------- /board/vscom/baltos/README: -------------------------------------------------------------------------------- 1 | BSP for VScom OnRISC Balios family devices, like Balios iR 5221. 2 | -------------------------------------------------------------------------------- /drivers/ddr/Kconfig: -------------------------------------------------------------------------------- 1 | source "drivers/ddr/altera/Kconfig" 2 | source "drivers/ddr/imx/Kconfig" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt.c" 3 | -------------------------------------------------------------------------------- /lib/lzma/license.txt: -------------------------------------------------------------------------------- 1 | License 2 | 3 | LZMA SDK is placed in the public domain. 4 | -------------------------------------------------------------------------------- /scripts/dtc/pylibfdt/.gitignore: -------------------------------------------------------------------------------- 1 | /_libfdt.so 2 | /libfdt.py 3 | /libfdt.pyc 4 | /libfdt_wrap.c 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/config: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE0=m 2 | CONFIG_CHOICE1=m 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout0: -------------------------------------------------------------------------------- 1 | CONFIG_A=y 2 | # CONFIG_B is not set 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_wip.c" 3 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt8516/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | -------------------------------------------------------------------------------- /board/broadcom/bcm963158/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm963158.o 4 | -------------------------------------------------------------------------------- /board/comtrend/ar5315u/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += ar-5315u.o 4 | -------------------------------------------------------------------------------- /board/comtrend/ar5387un/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += ar-5387un.o 4 | -------------------------------------------------------------------------------- /board/comtrend/vr3032u/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += vr-3032u.o 4 | -------------------------------------------------------------------------------- /board/comtrend/wap5813n/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += wap-5813n.o 4 | -------------------------------------------------------------------------------- /board/emulation/qemu-arm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += qemu-arm.o 4 | -------------------------------------------------------------------------------- /board/hisilicon/hikey960/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := hikey960.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7623/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt7623_rfb.o 4 | -------------------------------------------------------------------------------- /board/mediatek/mt7629/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += mt7629_rfb.o 4 | -------------------------------------------------------------------------------- /board/technexion/tao3530/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := tao3530.o 4 | -------------------------------------------------------------------------------- /drivers/clk/mvebu/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_CLK_ARMADA_3720) += armada-37xx-periph.o armada-37xx-tbg.o 2 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_rw.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_rw.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_sw.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_sw.c" 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_overlay.c" 3 | -------------------------------------------------------------------------------- /tools/logos/atmel.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/atmel.bmp -------------------------------------------------------------------------------- /tools/logos/denx.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/denx.bmp -------------------------------------------------------------------------------- /tools/logos/esd.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/esd.bmp -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/sunxi/start.c: -------------------------------------------------------------------------------- 1 | /* Intentionally empty. Only needed to get FEL SPL link line right */ 2 | -------------------------------------------------------------------------------- /arch/x86/dts/keyboard.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | keyboard { 3 | compatible = "intel,i8042-keyboard"; 4 | }; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | #ifndef __ASM_LINKAGE_H 2 | #define __ASM_LINKAGE_H 3 | 4 | #endif 5 | -------------------------------------------------------------------------------- /board/netgear/dgnd3700v2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += dgnd3700v2.o 4 | -------------------------------------------------------------------------------- /board/seeed/linkit-smart-7688/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /board/woodburn/imximage.cfg: -------------------------------------------------------------------------------- 1 | BOOT_FROM sd 2 | 3 | /* DDR2 init */ 4 | DATA 4 0xB8001010 0x00000304 5 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_wip.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_wip.c" 3 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice/oldask1_config: -------------------------------------------------------------------------------- 1 | # CONFIG_MODULES is not set 2 | CONFIG_OPT_BOOL_CHOICE0=y 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_addresses.c" 3 | -------------------------------------------------------------------------------- /tools/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_strerror.c" 3 | -------------------------------------------------------------------------------- /tools/logos/engicam.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/engicam.bmp -------------------------------------------------------------------------------- /tools/logos/ronetix.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/ronetix.bmp -------------------------------------------------------------------------------- /tools/logos/siemens.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/siemens.bmp -------------------------------------------------------------------------------- /tools/logos/syteco.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/syteco.bmp -------------------------------------------------------------------------------- /tools/logos/toradex.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/toradex.bmp -------------------------------------------------------------------------------- /board/broadcom/bcm968380gerg/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm968380gerg.o 4 | -------------------------------------------------------------------------------- /board/broadcom/bcm968580xref/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += bcm968580xref.o 4 | -------------------------------------------------------------------------------- /board/gardena/smart-gateway-mt7688/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | -------------------------------------------------------------------------------- /board/gdsys/a38x/ihs_phys.h: -------------------------------------------------------------------------------- 1 | uint calculate_octo_phy_mask(void); 2 | int init_octo_phys(uint octo_phy_mask); 3 | -------------------------------------------------------------------------------- /board/seco/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_TARGET_SECOMX6) += mx6.o 4 | -------------------------------------------------------------------------------- /board/ucRobotics/bubblegum_96/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := bubblegum_96.o 4 | -------------------------------------------------------------------------------- /cmd/riscv/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CMD_EXCEPTION) += exception.o 4 | -------------------------------------------------------------------------------- /drivers/clk/owl/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CLK_S900) += clk_s900.o 4 | -------------------------------------------------------------------------------- /include/video_font_data.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/include/video_font_data.h -------------------------------------------------------------------------------- /lib/libfdt/fdt_overlay.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_overlay.c" 3 | -------------------------------------------------------------------------------- /tools/binman/test/001_invalid.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | -------------------------------------------------------------------------------- /tools/binman/test/bss_data: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/bss_data -------------------------------------------------------------------------------- /tools/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- 1 | #include "fdt_host.h" 2 | #include "../scripts/dtc/libfdt/fdt_empty_tree.c" 3 | -------------------------------------------------------------------------------- /tools/logos/compulab.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/compulab.bmp -------------------------------------------------------------------------------- /tools/logos/denx-comp.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/denx-comp.bmp -------------------------------------------------------------------------------- /tools/logos/freescale.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/freescale.bmp -------------------------------------------------------------------------------- /tools/logos/gateworks.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/gateworks.bmp -------------------------------------------------------------------------------- /tools/logos/microchip.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/microchip.bmp -------------------------------------------------------------------------------- /tools/logos/solidrun.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/solidrun.bmp -------------------------------------------------------------------------------- /tools/logos/wandboard.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/wandboard.bmp -------------------------------------------------------------------------------- /board/bitmain/antminer_s9/board.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | #include "../../xilinx/zynq/board.c" 3 | -------------------------------------------------------------------------------- /board/cobra5272/bdm/load-cobra_uboot: -------------------------------------------------------------------------------- 1 | m68k-bdm-elf-gdb -n -x board/cobra5272/bdm/cobra5272_uboot.gdb u-boot 2 | 3 | -------------------------------------------------------------------------------- /board/mscc/jr2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_JR2) := jr2.o 4 | 5 | -------------------------------------------------------------------------------- /board/mscc/luton/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_LUTON) := luton.o 4 | -------------------------------------------------------------------------------- /board/opalkelly/zynq/board.c: -------------------------------------------------------------------------------- 1 | #include "../../xilinx/common/board.c" 2 | 3 | #include "../../xilinx/zynq/board.c" 4 | -------------------------------------------------------------------------------- /drivers/crypto/Kconfig: -------------------------------------------------------------------------------- 1 | menu "Hardware crypto devices" 2 | 3 | source drivers/crypto/fsl/Kconfig 4 | 5 | endmenu 6 | -------------------------------------------------------------------------------- /drivers/dma/ti/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_TI_K3_NAVSS_UDMA) += k3-udma.o 4 | -------------------------------------------------------------------------------- /lib/efi_selftest/.gitignore: -------------------------------------------------------------------------------- 1 | efi_miniapp_file_image_exit.h 2 | efi_miniapp_file_image_return.h 3 | *.efi 4 | *.so 5 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_addresses.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_addresses.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_empty_tree.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_empty_tree.c" 3 | -------------------------------------------------------------------------------- /lib/libfdt/fdt_strerror.c: -------------------------------------------------------------------------------- 1 | #include 2 | #include "../../scripts/dtc/libfdt/fdt_strerror.c" 3 | -------------------------------------------------------------------------------- /tools/logos/intercontrol.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/intercontrol.bmp -------------------------------------------------------------------------------- /tools/logos/u-boot_logo.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/u-boot_logo.bmp -------------------------------------------------------------------------------- /arch/mips/include/asm/asm-offsets.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | 3 | #include 4 | -------------------------------------------------------------------------------- /board/mscc/serval/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_SERVAL) := serval.o 4 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/evb-px5.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2017 Andy Yan 4 | */ 5 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3128/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | # 4 | 5 | obj-y += evk-rk3128.o 6 | -------------------------------------------------------------------------------- /board/udoo/neo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2015 UDOO Team 3 | 4 | obj-y := neo.o 5 | -------------------------------------------------------------------------------- /include/spd_sdram.h: -------------------------------------------------------------------------------- 1 | #ifndef _SPD_SDRAM_H_ 2 | #define _SPD_SDRAM_H_ 3 | 4 | long int spd_sdram(void); 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/expected_config: -------------------------------------------------------------------------------- 1 | CONFIG_MODULES=y 2 | CONFIG_DEP=m 3 | CONFIG_CHOICE0=y 4 | -------------------------------------------------------------------------------- /tools/binman/test/002_missing_node.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | }; 7 | -------------------------------------------------------------------------------- /tools/binman/test/ifwi.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/ifwi.bin.gz -------------------------------------------------------------------------------- /arch/x86/dts/reset.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | reset: reset { 3 | compatible = "x86,reset"; 4 | u-boot,dm-pre-reloc; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /board/google/gru/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Google LLC 4 | 5 | obj-y += gru.o 6 | -------------------------------------------------------------------------------- /board/grinn/liteboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 Grinn 3 | 4 | obj-y := board.o 5 | -------------------------------------------------------------------------------- /board/mscc/ocelot/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_OCELOT) := ocelot.o 4 | 5 | -------------------------------------------------------------------------------- /board/mscc/servalt/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_SERVALT) := servalt.o 4 | -------------------------------------------------------------------------------- /drivers/clk/analogbits/Kconfig: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | config CLK_ANALOGBITS_WRPLL_CLN28HPC 4 | bool 5 | -------------------------------------------------------------------------------- /drivers/clk/uniphier/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += clk-uniphier-core.o 2 | obj-y += clk-uniphier-sys.o 3 | obj-y += clk-uniphier-mio.o 4 | -------------------------------------------------------------------------------- /drivers/soc/Kconfig: -------------------------------------------------------------------------------- 1 | menu "SOC (System On Chip) specific Drivers" 2 | 3 | source "drivers/soc/ti/Kconfig" 4 | 5 | endmenu 6 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/new_choice_with_dep/config: -------------------------------------------------------------------------------- 1 | CONFIG_CHOICE_B=y 2 | # CONFIG_CHOICE_D is not set 3 | CONFIG_CHOICE_E=y 4 | -------------------------------------------------------------------------------- /tools/binman/test/descriptor.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/descriptor.bin -------------------------------------------------------------------------------- /tools/binman/test/fitimage.bin.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/fitimage.bin.gz -------------------------------------------------------------------------------- /arch/arm/dts/sun4i-a10-inet97fv2.dts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/arch/arm/dts/sun4i-a10-inet97fv2.dts -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt7623/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-mediatek/mt7629/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | obj-y += init.o 4 | obj-y += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/x86/dts/tsc_timer.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | tsc-timer { 3 | compatible = "x86,tsc-timer"; 4 | u-boot,dm-pre-reloc; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /board/grinn/chiliboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2017 Grinn 3 | 4 | obj-y := board.o 5 | -------------------------------------------------------------------------------- /board/rockchip/sheep_rk3368/sheep_rk3368.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2017 Andy Yan 4 | */ 5 | -------------------------------------------------------------------------------- /board/warp7/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 NXP Semiconductors 3 | 4 | obj-y := warp7.o 5 | -------------------------------------------------------------------------------- /doc/chromium/devkeys/kernel.keyblock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/doc/chromium/devkeys/kernel.keyblock -------------------------------------------------------------------------------- /doc/device-tree-bindings/spi/spi_altera.txt: -------------------------------------------------------------------------------- 1 | Altera SPI 2 | 3 | Required properties: 4 | - compatible : should be "altr,spi-1.0". 5 | -------------------------------------------------------------------------------- /drivers/clk/sifive/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CLK_SIFIVE_FU540_PRCI) += fu540-prci.o 4 | -------------------------------------------------------------------------------- /drivers/video/fonts/rufscript010.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/drivers/video/fonts/rufscript010.ttf -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/u_boot_binman_syms -------------------------------------------------------------------------------- /tools/binman/test/u_boot_ucode_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/u_boot_ucode_ptr -------------------------------------------------------------------------------- /tools/logos/linux_logo_ttcontrol.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/linux_logo_ttcontrol.bmp -------------------------------------------------------------------------------- /arch/mips/mach-ath79/ar934x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cpu.o 4 | obj-y += clk.o 5 | obj-y += ddr.o 6 | -------------------------------------------------------------------------------- /arch/sh/include/asm/processor.h: -------------------------------------------------------------------------------- 1 | #ifndef _ASM_SH_PROCESSOR_H_ 2 | #define _ASM_SH_PROCESSOR_H_ 3 | # include 4 | #endif 5 | -------------------------------------------------------------------------------- /board/efi/efi-x86_app/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 Google, Inc 4 | 5 | obj-y += app.o 6 | -------------------------------------------------------------------------------- /board/is1/socfpga.c: -------------------------------------------------------------------------------- 1 | /* 2 | * Currently nothing special is needed on this board, empty file to 3 | * make build scripts happy 4 | */ 5 | -------------------------------------------------------------------------------- /drivers/misc/imx8/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += scu_api.o scu.o 4 | obj-$(CONFIG_CMD_FUSE) += fuse.o 5 | -------------------------------------------------------------------------------- /drivers/w1/Makefile: -------------------------------------------------------------------------------- 1 | obj-$(CONFIG_W1) += w1-uclass.o 2 | 3 | obj-$(CONFIG_W1_GPIO) += w1-gpio.o 4 | obj-$(CONFIG_W1_MXC) += mxc_w1.o 5 | -------------------------------------------------------------------------------- /lib/optee/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2017 Linaro 4 | 5 | obj-$(CONFIG_OPTEE) += optee.o 6 | -------------------------------------------------------------------------------- /tools/binman/test/u_boot_no_ucode_ptr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/u_boot_no_ucode_ptr -------------------------------------------------------------------------------- /arch/mips/mach-jz47xx/jz4780/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := gpio.o jz4780.o pll.o reset.o sdram.o timer.o 4 | -------------------------------------------------------------------------------- /board/armadeus/opos6uldev/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2017 Armadeus Systems 3 | 4 | obj-y := board.o 5 | -------------------------------------------------------------------------------- /board/broadcom/bcmns2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2016 Broadcom Ltd. 4 | 5 | obj-y := northstar2.o 6 | -------------------------------------------------------------------------------- /board/engicam/imx6q/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Amarula Solutions B.V. 3 | 4 | obj-y := imx6q.o 5 | -------------------------------------------------------------------------------- /board/is1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/seco/mx6quq7/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 ECA Sinters 4 | 5 | obj-y := mx6quq7.o 6 | -------------------------------------------------------------------------------- /board/variscite/dart_6ul/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y := dart_6ul.o 4 | obj-$(CONFIG_SPL_BUILD) += spl.o 5 | -------------------------------------------------------------------------------- /cmd/.gitignore: -------------------------------------------------------------------------------- 1 | config_data.gz 2 | config_data_gz.h 3 | config_data_size.h 4 | license_data.gz 5 | license_data_gz.h 6 | license_data_size.h 7 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/misc/altera_sysid.txt: -------------------------------------------------------------------------------- 1 | Altera sysid 2 | 3 | Required properties: 4 | - compatible : should be "altr,sysid-1.0" 5 | -------------------------------------------------------------------------------- /drivers/video/fonts/ankacoder_c75_r.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/drivers/video/fonts/ankacoder_c75_r.ttf -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout1: -------------------------------------------------------------------------------- 1 | # CONFIG_A is not set 2 | CONFIG_B=y 3 | CONFIG_C=y 4 | # CONFIG_D is not set 5 | -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_bad: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/u_boot_binman_syms_bad -------------------------------------------------------------------------------- /tools/binman/test/u_boot_binman_syms_size: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/binman/test/u_boot_binman_syms_size -------------------------------------------------------------------------------- /arch/mips/mach-ath79/ar933x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += clk.o 4 | obj-y += ddr.o 5 | obj-y += lowlevel_init.o 6 | -------------------------------------------------------------------------------- /arch/powerpc/dts/gdsys/soc/i2c/dallas-rtc.dtsi: -------------------------------------------------------------------------------- 1 | &IIC { 2 | ds1339@68 { 3 | compatible = "dallas,ds1339"; 4 | reg = <0x68>; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /board/broadcom/bcm_ep/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += board.o 6 | -------------------------------------------------------------------------------- /board/el/el6x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) Stefano Babic 4 | 5 | obj-y := el6x.o 6 | -------------------------------------------------------------------------------- /board/engicam/imx6ul/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Amarula Solutions B.V. 3 | 4 | obj-y := imx6ul.o 5 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2016 Andreas Färber 4 | 5 | obj-y += geekbox.o 6 | -------------------------------------------------------------------------------- /board/google/chromebook_samus/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2016 Google, Inc 4 | 5 | obj-y += samus.o 6 | -------------------------------------------------------------------------------- /board/maxbcm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Stefan Roese 4 | 5 | obj-y := maxbcm.o 6 | -------------------------------------------------------------------------------- /board/radxa/rock/rock.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/radxa/rock2/rock2.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/sandbox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2011 The Chromium OS Authors. 4 | 5 | obj-y := sandbox.o 6 | -------------------------------------------------------------------------------- /board/sr1500/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/toradex/apalis-imx8/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Toradex 4 | # 5 | 6 | obj-y += apalis-imx8.o 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_imx7/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Toradex AG 3 | 4 | obj-y := colibri_imx7.o 5 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/serial/altera_jtaguart.txt: -------------------------------------------------------------------------------- 1 | Altera JTAG UART 2 | 3 | Required properties: 4 | - compatible : should be "altr,juart-1.0" 5 | -------------------------------------------------------------------------------- /drivers/clk/analogbits/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_CLK_ANALOGBITS_WRPLL_CLN28HPC) += wrpll-cln28hpc.o 4 | -------------------------------------------------------------------------------- /drivers/video/fonts/cantoraone_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/drivers/video/fonts/cantoraone_regular.ttf -------------------------------------------------------------------------------- /include/linux/ioctl.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_IOCTL_H 2 | #define _LINUX_IOCTL_H 3 | 4 | #include 5 | 6 | #endif /* _LINUX_IOCTL_H */ 7 | -------------------------------------------------------------------------------- /lib/dhry/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 Google, Inc 4 | 5 | obj-y += cmd_dhry.o dhry_1.o dhry_2.o 6 | -------------------------------------------------------------------------------- /test/log/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Google, Inc 4 | 5 | obj-$(CONFIG_LOG_TEST) += log_test.o 6 | -------------------------------------------------------------------------------- /tools/logos/linux_logo_ttcontrol_palfin.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/tools/logos/linux_logo_ttcontrol_palfin.bmp -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/bcmcygnus/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += reset.o 6 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/bcmnsp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += reset.o 6 | -------------------------------------------------------------------------------- /arch/arm/dts/at91sam9g25-gardena-smart-gateway-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | 3 | &dbgu { 4 | u-boot,dm-pre-reloc; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/arm/mach-imx/imx8/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2018 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += cpu.o iomux.o misc.o 8 | -------------------------------------------------------------------------------- /arch/mips/mach-ath79/qca953x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += clk.o 4 | obj-y += ddr.o 5 | obj-y += lowlevel_init.o 6 | -------------------------------------------------------------------------------- /arch/x86/dts/rtc.dtsi: -------------------------------------------------------------------------------- 1 | / { 2 | rtc: rtc { 3 | compatible = "motorola,mc146818"; 4 | u-boot,dm-pre-reloc; 5 | reg = <0x70 2>; 6 | }; 7 | }; 8 | -------------------------------------------------------------------------------- /board/efi/efi-x86_app/app.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/freescale/ls1021atsn/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | obj-y += ls1021atsn.o 3 | obj-$(CONFIG_ARMV7_PSCI) += ../ls1021atwr/psci.o 4 | -------------------------------------------------------------------------------- /board/google/chromebox_panther/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 Google, Inc 4 | 5 | obj-y += panther.o 6 | -------------------------------------------------------------------------------- /board/keymile/scripts/ramfs-arm.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot 0x200000 scripts/ramfs-common.txt && env import -t 0x200000 ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/mscc/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: (GPL-2.0+ OR MIT) 2 | 3 | obj-$(CONFIG_SOC_JR2) := spi.o 4 | obj-$(CONFIG_SOC_OCELOT) := spi.o 5 | -------------------------------------------------------------------------------- /board/phytec/pcm052/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := pcm052.o 6 | -------------------------------------------------------------------------------- /board/radxa/rock/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Heiko Stuebner 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += rock.o 8 | -------------------------------------------------------------------------------- /board/radxa/rock2/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += rock2.o 8 | -------------------------------------------------------------------------------- /board/tbs/tbs2910/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Soeren Moch 4 | 5 | obj-y := tbs2910.o 6 | -------------------------------------------------------------------------------- /board/technologic/ts4800/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 Savoir-faire Linux 4 | 5 | obj-y += ts4800.o 6 | -------------------------------------------------------------------------------- /board/toradex/apalis_t30/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2014 Marcel Ziswiler 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | 4 | obj-y += apalis_t30.o 5 | -------------------------------------------------------------------------------- /board/toradex/colibri-imx6ull/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2018 Toradex AG 3 | 4 | obj-y := colibri-imx6ull.o 5 | -------------------------------------------------------------------------------- /board/toradex/colibri-imx8x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 Toradex 4 | # 5 | 6 | obj-y += colibri-imx8x.o 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_t20/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2012 Lucas Stach 4 | 5 | obj-y += colibri_t20.o 6 | -------------------------------------------------------------------------------- /doc/chromium/devkeys/kernel_data_key.vbprivk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/doc/chromium/devkeys/kernel_data_key.vbprivk -------------------------------------------------------------------------------- /drivers/video/fonts/nimbus_sans_l_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nxp-archive/openil_u-boot/HEAD/drivers/video/fonts/nimbus_sans_l_regular.ttf -------------------------------------------------------------------------------- /fs/cbfs/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (c) 2011 The Chromium OS Authors. All rights reserved. 3 | 4 | obj-y := cbfs.o 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/inter_choice/expected_config: -------------------------------------------------------------------------------- 1 | CONFIG_MODULES=y 2 | CONFIG_CHOICE_VAL0=y 3 | # CONFIG_CHOIVE_VAL1 is not set 4 | CONFIG_DUMMY=y 5 | -------------------------------------------------------------------------------- /test/py/tests/vboot/sandbox-kernel.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | model = "Sandbox Verified Boot Test"; 5 | compatible = "sandbox"; 6 | 7 | }; 8 | -------------------------------------------------------------------------------- /tools/binman/test/003_empty.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /arch/arm/mach-tegra/tegra186/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016, NVIDIA CORPORATION. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0 4 | 5 | obj-y += cache.o 6 | -------------------------------------------------------------------------------- /arch/mips/mach-ath79/qca956x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cpu.o 4 | obj-y += clk.o 5 | obj-y += ddr.o qca956x-ddr-tap.o 6 | -------------------------------------------------------------------------------- /board/abilis/tb100/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2014 Pierrick Hascoet, Abilis Systems 4 | 5 | obj-y += tb100.o 6 | -------------------------------------------------------------------------------- /board/aspeed/evb_ast2500/evb_ast2500.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2016 Google, Inc 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/broadcom/bcm23550_w1d/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Broadcom Corporation. 4 | 5 | obj-y += bcm23550_w1d.o 6 | -------------------------------------------------------------------------------- /board/broadcom/bcm28155_ap/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Broadcom Corporation. 4 | 5 | obj-y += bcm28155_ap.o 6 | -------------------------------------------------------------------------------- /board/cadence/xtfpga/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2007 - 2013, Tensilica Inc. 4 | 5 | obj-y += ${BOARD}.o 6 | -------------------------------------------------------------------------------- /board/cavium/thunderx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2014, Cavium Inc. 3 | # 4 | # 5 | 6 | obj-y := thunderx.o atf.o 7 | -------------------------------------------------------------------------------- /board/freescale/mx6slevk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6slevk.o 5 | -------------------------------------------------------------------------------- /board/google/chromebook_link/link.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2014 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/google/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2014 Google, Inc 4 | 5 | obj-$(CONFIG_X86) += early_init.o 6 | -------------------------------------------------------------------------------- /board/google/veyron/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += veyron.o 8 | -------------------------------------------------------------------------------- /board/keymile/scripts/develop-arm.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot 0x200000 scripts/develop-common.txt && env import -t 0x200000 ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/scripts/ramfs-ppc_82xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot 0x200000 scripts/ramfs-common.txt && env import -t 0x200000 ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/scripts/ramfs-ppc_8xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot 0x200000 scripts/ramfs-common.txt && env import -t 0x200000 ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/mqmaker/miqi_rk3288/miqi-rk3288.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | */ 5 | 6 | -------------------------------------------------------------------------------- /board/nvidia/p2771-0000/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016, NVIDIA CORPORATION. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0 4 | 5 | obj-y += p2771-0000.o 6 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3288/evb-rk3288.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | */ 5 | 6 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3328/evb-rk3328.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | */ 5 | 6 | -------------------------------------------------------------------------------- /board/samsung/smdk5250/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2012 Samsung Electronics 4 | 5 | obj-y += smdk5250_spl.o 6 | -------------------------------------------------------------------------------- /board/samsung/smdk5420/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013 Samsung Electronics 4 | 5 | obj-y += smdk5420_spl.o 6 | -------------------------------------------------------------------------------- /board/solidrun/clearfog/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := clearfog.o 6 | -------------------------------------------------------------------------------- /board/technexion/pico-imx7d/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2017 NXP Semiconductors 3 | 4 | obj-y := pico-imx7d.o spl.o 5 | -------------------------------------------------------------------------------- /board/terasic/de10-nano/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2017, Intel Corporation 3 | # 4 | # 5 | 6 | obj-y := socfpga.o 7 | -------------------------------------------------------------------------------- /board/terasic/de10-nano/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017, Intel Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/ti/dra7xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 4 | # Texas Instruments, 5 | 6 | obj-y := evm.o 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_t30/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2013-2014 Stefan Agner 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | 4 | obj-y += colibri_t30.o 5 | -------------------------------------------------------------------------------- /board/udoo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := udoo.o udoo_spl.o 6 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/root.txt: -------------------------------------------------------------------------------- 1 | The root node 2 | 3 | Optional properties: 4 | - serial-number : a string representing the device's serial number 5 | -------------------------------------------------------------------------------- /drivers/mtd/nand/Kconfig: -------------------------------------------------------------------------------- 1 | config MTD_NAND_CORE 2 | tristate 3 | 4 | source "drivers/mtd/nand/raw/Kconfig" 5 | 6 | source "drivers/mtd/nand/spi/Kconfig" 7 | -------------------------------------------------------------------------------- /fs/fat/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | 4 | obj-$(CONFIG_$(SPL_)FS_FAT) = fat.o 5 | obj-$(CONFIG_$(SPL_)FAT_WRITE) = fat_write.o 6 | -------------------------------------------------------------------------------- /include/sparse_defs.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2014 Broadcom Corporation. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/choice_value_with_m_dep/expected_stdout: -------------------------------------------------------------------------------- 1 | Tristate Choice [M/y/?] y 2 | Tristate Choice 3 | > 1. Choice 0 (CHOICE0) 4 | choice[1]: 1 5 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/rand_nested_choice/expected_stdout2: -------------------------------------------------------------------------------- 1 | # CONFIG_A is not set 2 | CONFIG_B=y 3 | # CONFIG_C is not set 4 | CONFIG_D=y 5 | CONFIG_E=y 6 | -------------------------------------------------------------------------------- /arch/arc/cpu/arcv1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013-2014 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += ivt.o 6 | -------------------------------------------------------------------------------- /arch/arc/cpu/arcv2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013-2015 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += ivt.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/armada3700/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y = cpu.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/arm64/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += mem_map.o 4 | obj-$(CONFIG_ARCH_UNIPHIER_LD20) += lowlevel_init.o 5 | -------------------------------------------------------------------------------- /arch/mips/mach-jz47xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | extra-$(CONFIG_SPL_BUILD) := start.o 4 | 5 | obj-$(CONFIG_SOC_JZ4780) += jz4780/ 6 | -------------------------------------------------------------------------------- /arch/powerpc/dts/gdsys/soc/i2c/cirrus-audio-codec.dtsi: -------------------------------------------------------------------------------- 1 | &IIC { 2 | cs4265@4f { 3 | compatible = "cirrus,cs4265"; 4 | reg = <0x0000004f>; 5 | }; 6 | }; 7 | -------------------------------------------------------------------------------- /arch/sh/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/sh/lib/start.o 4 | 5 | libs-y += arch/sh/cpu/$(CPU)/ 6 | libs-y += arch/sh/lib/ 7 | -------------------------------------------------------------------------------- /board/Marvell/db-88f6720/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y := db-88f6720.o 6 | -------------------------------------------------------------------------------- /board/Marvell/mvebu_armada-37xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y := board.o 6 | -------------------------------------------------------------------------------- /board/Marvell/mvebu_armada-8k/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y := board.o 6 | -------------------------------------------------------------------------------- /board/amlogic/p200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Beniamino Galvani 4 | 5 | obj-y := p200.o 6 | -------------------------------------------------------------------------------- /board/amlogic/p201/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Beniamino Galvani 4 | 5 | obj-y := p201.o 6 | -------------------------------------------------------------------------------- /board/aries/mcvevk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015 Marek Vasut 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/devboards/dbm-soc1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Marek Vasut 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/emulation/qemu-x86/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015, Bin Meng 4 | 5 | obj-y += start.o 6 | -------------------------------------------------------------------------------- /board/freescale/ls1028a/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2019 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += ls1028a.o 8 | obj-y += ddr.o 9 | -------------------------------------------------------------------------------- /board/freescale/mx6sllevk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6sllevk.o 5 | -------------------------------------------------------------------------------- /board/freescale/mx6ullevk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6ullevk.o 5 | -------------------------------------------------------------------------------- /board/freescale/vf610twr/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := vf610twr.o 6 | -------------------------------------------------------------------------------- /board/ge/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2017 General Electric Company 4 | 5 | obj-y := vpd_reader.o ge_common.o 6 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/geekbox.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2016 Andreas Färber 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/google/chromebook_samus/samus.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2016 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/google/chromebox_panther/panther.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015 Google, Inc 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/keymile/scripts/develop-ppc_82xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot 0x200000 scripts/develop-common.txt && env import -t 0x200000 ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/keymile/scripts/develop-ppc_8xx.txt: -------------------------------------------------------------------------------- 1 | setup_debug_env=tftpboot 0x200000 scripts/develop-common.txt && env import -t 0x200000 ${filesize} && run configure 2 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Rockchip Electronics Co., Ltd 4 | 5 | obj-y += evb-px5.o 6 | -------------------------------------------------------------------------------- /board/ti/am57xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2014 4 | # Texas Instruments, 5 | 6 | obj-y := board.o 7 | -------------------------------------------------------------------------------- /board/udoo/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_UDOO 2 | 3 | config SYS_BOARD 4 | default "udoo" 5 | 6 | config SYS_CONFIG_NAME 7 | default "udoo" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/warp/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_WARP 2 | 3 | config SYS_BOARD 4 | default "warp" 5 | 6 | config SYS_CONFIG_NAME 7 | default "warp" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/xilinx/zynqmp_r5/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # (C) Copyright 2018 Xilinx, Inc. (Michal Simek) 4 | # 5 | 6 | obj-y := board.o 7 | -------------------------------------------------------------------------------- /doc/board/atmel/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Atmel 4 | ===== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | at91ek 10 | -------------------------------------------------------------------------------- /doc/board/xilinx/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Xilinx 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | zynq 10 | -------------------------------------------------------------------------------- /drivers/soc/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Makefile for the U-Boot SOC specific device drivers. 4 | 5 | obj-$(CONFIG_SOC_TI) += ti/ 6 | -------------------------------------------------------------------------------- /drivers/tee/optee/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += core.o 4 | obj-y += supplicant.o 5 | obj-$(CONFIG_SUPPORT_EMMC_RPMB) += rpmb.o 6 | -------------------------------------------------------------------------------- /include/asm-offsets.h: -------------------------------------------------------------------------------- 1 | #ifndef DO_DEPS_ONLY 2 | 3 | #include 4 | /* #include */ 5 | 6 | #endif 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-ls102xa/soc.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2019 NXP 4 | */ 5 | #define SVR_DEV(svr) ((svr) >> 8) 6 | 7 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/clk/dpll-pro5.c: -------------------------------------------------------------------------------- 1 | #include "../init.h" 2 | 3 | int uniphier_pro5_dpll_init(const struct uniphier_board_data *bd) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/clk/dpll-pxs2.c: -------------------------------------------------------------------------------- 1 | #include "../init.h" 2 | 3 | int uniphier_pxs2_dpll_init(const struct uniphier_board_data *bd) 4 | { 5 | return 0; 6 | } 7 | -------------------------------------------------------------------------------- /arch/nios2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/nios2/cpu/start.o 4 | 5 | libs-y += arch/nios2/cpu/ 6 | libs-y += arch/nios2/lib/ 7 | -------------------------------------------------------------------------------- /board/Marvell/db-88f6820-gp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := db-88f6820-gp.o 6 | -------------------------------------------------------------------------------- /board/Marvell/db-mv784mp-gp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Stefan Roese 4 | 5 | obj-y := db-mv784mp-gp.o 6 | -------------------------------------------------------------------------------- /board/devboards/dbm-soc1/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Marek Vasut 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/emulation/qemu-riscv/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | obj-y += qemu-riscv.o 6 | -------------------------------------------------------------------------------- /board/freescale/mx6sxsabresd/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2014 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6sxsabresd.o 5 | -------------------------------------------------------------------------------- /board/freescale/mx7dsabresd/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2015 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx7dsabresd.o 5 | -------------------------------------------------------------------------------- /board/ge/common/ge_common.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2017 General Electric Company 4 | */ 5 | 6 | void check_time(void); 7 | -------------------------------------------------------------------------------- /board/h2200/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_H2200 2 | 3 | config SYS_BOARD 4 | default "h2200" 5 | 6 | config SYS_CONFIG_NAME 7 | default "h2200" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/intel/crownbay/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014, Bin Meng 4 | 5 | obj-y += crownbay.o start.o 6 | -------------------------------------------------------------------------------- /board/kobol/helios4/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Dennis Gilmore 4 | 5 | obj-y := helios4.o 6 | -------------------------------------------------------------------------------- /board/raspberrypi/rpi/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # (C) Copyright 2012 Stephen Warren 4 | 5 | obj-y := rpi.o 6 | obj-y += lowlevel_init.o 7 | -------------------------------------------------------------------------------- /board/renesas/MigoR/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MIGOR BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/renesas/MigoR/ 5 | F: include/configs/MigoR.h 6 | F: configs/MigoR_defconfig 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3036/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rk3036.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3229/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rk3229.o 8 | -------------------------------------------------------------------------------- /board/rockchip/kylin_rk3036/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += kylin_rk3036.o 8 | -------------------------------------------------------------------------------- /board/socrates/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCRATES BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/socrates/ 5 | F: include/configs/socrates.h 6 | F: configs/socrates_defconfig 7 | -------------------------------------------------------------------------------- /board/synopsys/hsdk/MAINTAINERS: -------------------------------------------------------------------------------- 1 | HSDK BOARD 2 | M: Eugeniy Paltsev 3 | S: Maintained 4 | F: board/synopsys/hsdk/ 5 | F: configs/hsdk_defconfig 6 | -------------------------------------------------------------------------------- /board/tqc/tqm834x/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TQM834X BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/tqc/tqm834x/ 5 | F: include/configs/TQM834x.h 6 | F: configs/TQM834x_defconfig 7 | -------------------------------------------------------------------------------- /board/ve8313/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_VE8313 2 | 3 | config SYS_BOARD 4 | default "ve8313" 5 | 6 | config SYS_CONFIG_NAME 7 | default "ve8313" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /doc/README.fsl-clk: -------------------------------------------------------------------------------- 1 | Freescale system clock options 2 | 3 | - CONFIG_SYS_FSL_CLK 4 | Enable to call get_clocks() in board_init_f() for 5 | non-PPC platforms. 6 | -------------------------------------------------------------------------------- /doc/api/serial.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Serial system 4 | ============= 5 | 6 | .. kernel-doc:: drivers/serial/serial.c 7 | :internal: 8 | -------------------------------------------------------------------------------- /doc/board/sifive/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | SiFive 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | fu540 10 | -------------------------------------------------------------------------------- /drivers/ddr/microchip/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Microchip Technology Inc. 4 | obj-$(CONFIG_MACH_PIC32) += ddr2.o 5 | -------------------------------------------------------------------------------- /drivers/tee/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += tee-uclass.o 4 | obj-$(CONFIG_SANDBOX) += sandbox.o 5 | obj-$(CONFIG_OPTEE) += optee/ 6 | -------------------------------------------------------------------------------- /tools/binman/test/073_gbb_no_size.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | gbb { 7 | }; 8 | }; 9 | }; 10 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-sabresd-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabresd-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-sabresd-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabresd-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6qp-sabresd-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabresd-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | #ifndef __ASM_LINKAGE_H 2 | #define __ASM_LINKAGE_H 3 | 4 | #define __ALIGN .align 0 5 | #define __ALIGN_STR ".align 0" 6 | 7 | #endif 8 | -------------------------------------------------------------------------------- /arch/x86/cpu/x86_64/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Google, Inc 3 | # Written by Simon Glass 4 | # 5 | 6 | obj-y += cpu.o interrupts.o setjmp.o 7 | -------------------------------------------------------------------------------- /arch/xtensa/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/xtensa/cpu/start.o 4 | 5 | libs-y += arch/xtensa/cpu/ 6 | libs-y += arch/xtensa/lib/ 7 | -------------------------------------------------------------------------------- /board/CZ.NIC/turris_omnia/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017 Marek Behun 4 | 5 | obj-y := turris_omnia.o 6 | -------------------------------------------------------------------------------- /board/Marvell/db-88f6820-amc/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 Stefan Roese 4 | 5 | obj-y := db-88f6820-amc.o 6 | -------------------------------------------------------------------------------- /board/altera/arria10-socdk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (C) 2015 Altera Corporation 4 | 5 | obj-y := socfpga.o 6 | -------------------------------------------------------------------------------- /board/amarula/vyasa-rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2017 Amarula Solutions 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += vyasa-rk3288.o 8 | -------------------------------------------------------------------------------- /board/cobra5272/MAINTAINERS: -------------------------------------------------------------------------------- 1 | COBRA5272 BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/cobra5272/ 5 | F: include/configs/cobra5272.h 6 | F: configs/cobra5272_defconfig 7 | -------------------------------------------------------------------------------- /board/ebv/socrates/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/efi/efi-x86_payload/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | obj-y += start.o payload.o 6 | -------------------------------------------------------------------------------- /board/firefly/firefly-rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += firefly-rk3288.o 8 | -------------------------------------------------------------------------------- /board/freescale/ls2080a/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014-15 Freescale Semiconductor 4 | 5 | obj-y += ls2080a.o 6 | obj-y += ddr.o 7 | -------------------------------------------------------------------------------- /board/freescale/mx6sxsabreauto/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2014 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6sxsabreauto.o 5 | -------------------------------------------------------------------------------- /board/freescale/mx6ul_14x14_evk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # (C) Copyright 2015 Freescale Semiconductor, Inc. 3 | 4 | obj-y := mx6ul_14x14_evk.o 5 | -------------------------------------------------------------------------------- /board/gardena/smart-gateway-at91sam/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += board.o 4 | 5 | ifdef CONFIG_SPL_BUILD 6 | obj-y += spl.o 7 | endif 8 | -------------------------------------------------------------------------------- /board/intel/cherryhill/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017, Bin Meng 4 | 5 | obj-y += cherryhill.o start.o 6 | -------------------------------------------------------------------------------- /board/rockchip/sheep_rk3368/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Rockchip Electronics Co., Ltd 4 | 5 | obj-y += sheep_rk3368.o 6 | -------------------------------------------------------------------------------- /board/sbc8349/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_SBC8349 2 | 3 | config SYS_BOARD 4 | default "sbc8349" 5 | 6 | config SYS_CONFIG_NAME 7 | default "sbc8349" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/sbc8548/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_SBC8548 2 | 3 | config SYS_BOARD 4 | default "sbc8548" 5 | 6 | config SYS_CONFIG_NAME 7 | default "sbc8548" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/sifive/fu540/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2019 Western Digital Corporation or its affiliates. 4 | 5 | obj-y += fu540.o 6 | -------------------------------------------------------------------------------- /board/spear/x600/fpga.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (C) 2012 Stefan Roese 4 | */ 5 | 6 | int x600_init_fpga(void); 7 | -------------------------------------------------------------------------------- /board/synopsys/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_NSIM 2 | 3 | config SYS_VENDOR 4 | default "synopsys" 5 | 6 | config SYS_CONFIG_NAME 7 | default "nsim" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/synopsys/axs10x/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013-2016 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += axs10x.o 6 | -------------------------------------------------------------------------------- /board/terasic/sockit/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /doc/board/coreboot/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Coreboot 4 | ======== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | coreboot 10 | -------------------------------------------------------------------------------- /drivers/clk/aspeed/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2016 Google, Inc 4 | # 5 | 6 | obj-$(CONFIG_ASPEED_AST2500) += clk_ast2500.o 7 | -------------------------------------------------------------------------------- /lib/zstd/Makefile: -------------------------------------------------------------------------------- 1 | obj-y += zstd_decompress.o 2 | 3 | zstd_decompress-y := huf_decompress.o decompress.o \ 4 | entropy_common.o fse_decompress.o zstd_common.o 5 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-sabreauto-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabreauto-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-sabreauto-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabreauto-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6qp-sabreauto-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 NXP 4 | */ 5 | 6 | #include "imx6qdl-sabreauto-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/mach-imx/imx8m/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2017 NXP 4 | 5 | obj-y += lowlevel_init.o 6 | obj-y += clock.o clock_slice.o soc.o 7 | -------------------------------------------------------------------------------- /arch/riscv/cpu/generic/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | obj-y += dram.o 6 | obj-y += cpu.o 7 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/string.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (c) 2011 The Chromium OS Authors. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/CZ.NIC/turris_mox/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Marek Behun 4 | 5 | obj-y := turris_mox.o mox_sp.o 6 | -------------------------------------------------------------------------------- /board/altera/arria5-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/buffalo/lsxl/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2012 Michael Walle 4 | # Michael Walle 5 | 6 | obj-y := lsxl.o 7 | -------------------------------------------------------------------------------- /board/intel/cougarcanyon2/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016, Bin Meng 4 | 5 | obj-y += cougarcanyon2.o start.o 6 | -------------------------------------------------------------------------------- /board/maxbcm/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MAXBCM BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/maxbcm/ 5 | F: include/configs/maxbcm.h 6 | F: configs/maxbcm_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/cardhu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010-2012 4 | # NVIDIA Corporation 5 | 6 | obj-y := cardhu.o 7 | -------------------------------------------------------------------------------- /board/nvidia/dalmore/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved. 4 | 5 | obj-y := dalmore.o 6 | -------------------------------------------------------------------------------- /board/nvidia/harmony/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010,2011 4 | # NVIDIA Corporation 5 | 6 | obj-y := harmony.o 7 | -------------------------------------------------------------------------------- /board/overo/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_OMAP3_OVERO 2 | 3 | config SYS_BOARD 4 | default "overo" 5 | 6 | config SYS_CONFIG_NAME 7 | default "omap3_overo" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/samsung/arndale/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2013 Samsung Electronics 4 | 5 | obj-y += arndale_spl.o 6 | obj-y += arndale.o 7 | -------------------------------------------------------------------------------- /board/sbc8349/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2006 Wind River Systems, Inc. 4 | 5 | obj-y += sbc8349.o 6 | obj-$(CONFIG_PCI) += pci.o 7 | -------------------------------------------------------------------------------- /board/sbc8641d/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_SBC8641D 2 | 3 | config SYS_BOARD 4 | default "sbc8641d" 5 | 6 | config SYS_CONFIG_NAME 7 | default "sbc8641d" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/socrates/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_SOCRATES 2 | 3 | config SYS_BOARD 4 | default "socrates" 5 | 6 | config SYS_CONFIG_NAME 7 | default "socrates" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/synopsys/emsdp/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2018 Synopsys, Inc. All rights reserved. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += emsdp.o 8 | -------------------------------------------------------------------------------- /board/synopsys/emsdp/config.mk: -------------------------------------------------------------------------------- 1 | PLATFORM_CPPFLAGS += -mlittle-endian -mnorm -mswap -mmpy-option=3 \ 2 | -mbarrel-shifter -mfpu=fpuda_all -mcode-density 3 | -------------------------------------------------------------------------------- /board/sysam/amcore/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2014 Angelo Dureghello 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y = amcore.o 8 | -------------------------------------------------------------------------------- /board/theobroma-systems/lion_rk3368/lion_rk3368.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH 4 | */ 5 | -------------------------------------------------------------------------------- /board/toradex/apalis-tk1/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (c) 2016 Toradex, Inc. 2 | # SPDX-License-Identifier: GPL-2.0+ 3 | 4 | obj-y += as3722_init.o 5 | obj-y += apalis-tk1.o 6 | -------------------------------------------------------------------------------- /doc/board/freescale/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Freescale 4 | ========= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | b4860qds 10 | -------------------------------------------------------------------------------- /drivers/nvme/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017, Bin Meng 4 | 5 | obj-y += nvme-uclass.o nvme.o nvme_show.o 6 | -------------------------------------------------------------------------------- /drivers/pch/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += pch-uclass.o 4 | obj-y += pch7.o 5 | obj-y += pch9.o 6 | obj-$(CONFIG_SANDBOX) += sandbox_pch.o 7 | -------------------------------------------------------------------------------- /lib/zlib/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y += zlib.o 7 | -------------------------------------------------------------------------------- /arch/arm/cpu/arm926ejs/mxs/mxsimage-spl.mx23.cfg: -------------------------------------------------------------------------------- 1 | DISPLAYPROGRESS 2 | SECTION 0x0 BOOTABLE 3 | TAG LAST 4 | LOAD 0x1000 spl/u-boot-spl.bin 5 | CALL 0x1000 0x0 6 | -------------------------------------------------------------------------------- /arch/arm/mach-exynos/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) Albert ARIBAUD 4 | 5 | SPL_OBJCFLAGS += -j .machine_param 6 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/armada8k/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Stefan Roese 4 | 5 | obj-y = cpu.o 6 | obj-y += cache_llc.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-stm32/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | obj-y += soc.o 6 | -------------------------------------------------------------------------------- /arch/arm/mach-uniphier/bcu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_ARCH_UNIPHIER_LD4) += bcu-ld4.o 4 | obj-$(CONFIG_ARCH_UNIPHIER_SLD8) += bcu-ld4.o 5 | -------------------------------------------------------------------------------- /arch/microblaze/dts/microblaze-generic.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | / { 3 | #address-cells = <1>; 4 | #size-cells = <1>; 5 | aliases { 6 | } ; 7 | chosen { 8 | } ; 9 | } ; 10 | -------------------------------------------------------------------------------- /arch/nds32/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/nds32/cpu/$(CPU)/start.o 4 | 5 | libs-y += arch/nds32/cpu/$(CPU)/ 6 | libs-y += arch/nds32/lib/ 7 | -------------------------------------------------------------------------------- /arch/x86/cpu/efi/Kconfig: -------------------------------------------------------------------------------- 1 | if EFI 2 | 3 | config SYS_CAR_ADDR 4 | hex 5 | default 0x100000 6 | 7 | config SYS_CAR_SIZE 8 | hex 9 | default 0x20000 10 | 11 | endif 12 | -------------------------------------------------------------------------------- /board/altera/arria10-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | /* 3 | * Copyright (C) 2015 Altera Corporation 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/altera/cyclone5-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/atmel/sama5d4ek/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Atmel 4 | # Bo Shen 5 | 6 | obj-y += sama5d4ek.o 7 | -------------------------------------------------------------------------------- /board/compulab/trimslice/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010-2012 4 | # NVIDIA Corporation 5 | 6 | obj-y := trimslice.o 7 | -------------------------------------------------------------------------------- /board/elgin/elgin_rv1108/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += elgin_rv1108.o 8 | -------------------------------------------------------------------------------- /board/engicam/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2016 Amarula Solutions B.V. 3 | 4 | obj-y := board.o 5 | obj-$(CONFIG_SPL_BUILD) += spl.o 6 | -------------------------------------------------------------------------------- /board/freescale/m5272c3/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5272C3 BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5272c3/ 5 | F: include/configs/M5272C3.h 6 | F: configs/M5272C3_defconfig 7 | -------------------------------------------------------------------------------- /board/h2200/MAINTAINERS: -------------------------------------------------------------------------------- 1 | H2200 BOARD 2 | M: Lukasz Dalek 3 | S: Maintained 4 | F: board/h2200/ 5 | F: include/configs/h2200.h 6 | F: configs/h2200_defconfig 7 | -------------------------------------------------------------------------------- /board/huawei/hg556a/hg556a.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/intel/slimbootloader/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2019 Intel Corporation 4 | 5 | obj-y += start.o slimbootloader.o 6 | -------------------------------------------------------------------------------- /board/mqmaker/miqi_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += miqi-rk3288.o 8 | -------------------------------------------------------------------------------- /board/nvidia/beaver/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (c) 2010-2013, NVIDIA CORPORATION. All rights reserved. 4 | 5 | obj-y = ../cardhu/cardhu.o 6 | -------------------------------------------------------------------------------- /board/nvidia/seaboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010,2011 4 | # NVIDIA Corporation 5 | 6 | obj-y := seaboard.o 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb-rk3288.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3328/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb-rk3328.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rk3399/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb-rk3399.o 8 | -------------------------------------------------------------------------------- /board/rockchip/evb_rv1108/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += evb_rv1108.o 8 | -------------------------------------------------------------------------------- /board/sfr/nb4_ser/nb4-ser.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/spear/x600/MAINTAINERS: -------------------------------------------------------------------------------- 1 | X600 BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/spear/x600/ 5 | F: include/configs/x600.h 6 | F: configs/x600_defconfig 7 | -------------------------------------------------------------------------------- /board/terasic/de0-nano-soc/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2012 Altera Corporation 4 | */ 5 | #include 6 | -------------------------------------------------------------------------------- /board/terasic/sockit/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCKIT BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: include/configs/socfpga_sockit.h 5 | F: configs/socfpga_sockit_defconfig 6 | -------------------------------------------------------------------------------- /board/theadorable/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015-2016 Stefan Roese 4 | 5 | obj-y := theadorable.o 6 | obj-y += fpga.o 7 | -------------------------------------------------------------------------------- /board/udoo/MAINTAINERS: -------------------------------------------------------------------------------- 1 | UDOO BOARD 2 | M: Fabio Estevam 3 | S: Maintained 4 | F: board/udoo/ 5 | F: include/configs/udoo.h 6 | F: configs/udoo_defconfig 7 | -------------------------------------------------------------------------------- /board/vamrs/rock960_rk3399/rock960-rk3399.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Manivannan Sadhasivam 4 | */ 5 | -------------------------------------------------------------------------------- /board/ve8313/MAINTAINERS: -------------------------------------------------------------------------------- 1 | VE8313 BOARD 2 | M: Heiko Schocher 3 | S: Maintained 4 | F: board/ve8313/ 5 | F: include/configs/ve8313.h 6 | F: configs/ve8313_defconfig 7 | -------------------------------------------------------------------------------- /board/ve8313/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := ve8313.o 7 | -------------------------------------------------------------------------------- /board/wandboard/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_WANDBOARD 2 | 3 | config SYS_BOARD 4 | default "wandboard" 5 | 6 | config SYS_CONFIG_NAME 7 | default "wandboard" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/warp/MAINTAINERS: -------------------------------------------------------------------------------- 1 | WaRP BOARD 2 | M: Otavio Salvador 3 | S: Maintained 4 | F: board/warp/ 5 | F: include/configs/warp.h 6 | F: configs/warp_defconfig 7 | -------------------------------------------------------------------------------- /drivers/phy/allwinner/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Amarula Solutions 4 | # 5 | 6 | obj-$(CONFIG_PHY_SUN4I_USB) += phy-sun4i-usb.o 7 | -------------------------------------------------------------------------------- /drivers/pinctrl/ath79/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_PINCTRL_AR933X) += pinctrl_ar933x.o 4 | obj-$(CONFIG_PINCTRL_QCA953X) += pinctrl_qca953x.o 5 | -------------------------------------------------------------------------------- /drivers/ram/mediatek/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2018 MediaTek Inc. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0 5 | # 6 | 7 | obj-$(CONFIG_TARGET_MT7629) = ddr3-mt7629.o 8 | -------------------------------------------------------------------------------- /lib/lzo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2008 4 | # Stefan Roese, DENX Software Engineering, sr@denx.de. 5 | 6 | obj-y += lzo1x_decompress.o 7 | -------------------------------------------------------------------------------- /scripts/kconfig/tests/no_write_if_dep_unmet/expected_config: -------------------------------------------------------------------------------- 1 | # 2 | # Automatically generated file; DO NOT EDIT. 3 | # Linux Kernel Configuration 4 | # 5 | # CONFIG_A is not set 6 | -------------------------------------------------------------------------------- /tools/binman/test/005_simple.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | u-boot { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /arch/arm/cpu/arm11/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = cpu.o 7 | -------------------------------------------------------------------------------- /arch/arm/dts/bcm2836-rpi.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | #include "bcm2835-rpi.dtsi" 3 | 4 | &vchiq { 5 | compatible = "brcm,bcm2836-vchiq", "brcm,bcm2835-vchiq"; 6 | }; 7 | -------------------------------------------------------------------------------- /arch/arm/mach-mvebu/serdes/axp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_SPL_BUILD) = high_speed_env_lib.o 4 | obj-$(CONFIG_SPL_BUILD) += high_speed_env_spec.o 5 | -------------------------------------------------------------------------------- /arch/arm/mach-versal/include/mach/gpio.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright 2016 - 2018 Xilinx, Inc. 4 | */ 5 | 6 | /* Empty file - for compilation */ 7 | -------------------------------------------------------------------------------- /arch/microblaze/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | head-y := arch/microblaze/cpu/start.o 4 | 5 | libs-y += arch/microblaze/cpu/ 6 | libs-y += arch/microblaze/lib/ 7 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_MPC83xx) += mpc8xxx/ 4 | obj-$(CONFIG_MPC85xx) += mpc8xxx/ 5 | obj-$(CONFIG_MPC86xx) += mpc8xxx/ 6 | -------------------------------------------------------------------------------- /arch/powerpc/cpu/mpc83xx/sysio/Kconfig: -------------------------------------------------------------------------------- 1 | menu "System I/O configuration" 2 | 3 | if ARCH_MPC8308 4 | source "arch/powerpc/cpu/mpc83xx/sysio/Kconfig.mpc8308" 5 | endif 6 | 7 | endmenu 8 | -------------------------------------------------------------------------------- /arch/powerpc/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (c) 2014 Google, Inc 4 | */ 5 | 6 | /* We don't need anything here at present */ 7 | -------------------------------------------------------------------------------- /arch/riscv/cpu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018, Bin Meng 4 | 5 | extra-y = start.o 6 | 7 | obj-y += cpu.o mtrap.o 8 | -------------------------------------------------------------------------------- /arch/x86/cpu/braswell/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017, Bin Meng 4 | 5 | obj-y += braswell.o early_uart.o fsp_configs.o 6 | -------------------------------------------------------------------------------- /arch/x86/cpu/queensbay/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014, Bin Meng 4 | 5 | obj-y += fsp_configs.o 6 | obj-y += tnc.o 7 | -------------------------------------------------------------------------------- /board/Seagate/nas220/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2014 Evgeni Dobrev 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y := nas220.o 8 | -------------------------------------------------------------------------------- /board/altera/stratix10-socdk/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2016-2017 Intel Corporation 3 | # 4 | # SPDX-License-Identifier: GPL-2.0 5 | # 6 | 7 | obj-y := socfpga.o 8 | -------------------------------------------------------------------------------- /board/amazon/kc1/MAINTAINERS: -------------------------------------------------------------------------------- 1 | KC1 BOARD 2 | M: Paul Kocialkowski 3 | S: Maintained 4 | F: board/amazon/kc1/ 5 | F: include/configs/kc1.h 6 | F: configs/kc1_defconfig 7 | -------------------------------------------------------------------------------- /board/armltd/vexpress64/pcie.h: -------------------------------------------------------------------------------- 1 | #ifndef __VEXPRESS64_PCIE_H__ 2 | #define __VEXPRESS64_PCIE_H__ 3 | 4 | void vexpress64_pcie_init(void); 5 | 6 | #endif /* __VEXPRESS64_PCIE_H__ */ 7 | -------------------------------------------------------------------------------- /board/comtrend/ar5315u/ar-5315u.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/comtrend/ct5361/ct-5361.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/comtrend/vr3032u/vr-3032u.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/freescale/imx8qm_mek/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2018 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += imx8qm_mek.o 8 | obj-$(CONFIG_SPL_BUILD) += spl.o 9 | -------------------------------------------------------------------------------- /board/freescale/imx8qxp_mek/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2017 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += imx8qxp_mek.o 8 | obj-$(CONFIG_SPL_BUILD) += spl.o 9 | -------------------------------------------------------------------------------- /board/freescale/m5249evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5249EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5249evb/ 5 | F: include/configs/M5249EVB.h 6 | F: configs/M5249EVB_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/m5275evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5275EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5275evb/ 5 | F: include/configs/M5275EVB.h 6 | F: configs/M5275EVB_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/m5282evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5282EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5282evb/ 5 | F: include/configs/M5282EVB.h 6 | F: configs/M5282EVB_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/p1023rdb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | P1023RDB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/p1023rdb/ 5 | F: include/configs/P1023RDB.h 6 | F: configs/P1023RDB_defconfig 7 | -------------------------------------------------------------------------------- /board/ge/bx50v3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2015 Timesys Corporation 4 | # Copyright 2015 General Electric Company 5 | 6 | obj-y := bx50v3.o 7 | -------------------------------------------------------------------------------- /board/mpc8308_p1m/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_MPC8308_P1M 2 | 3 | config SYS_BOARD 4 | default "mpc8308_p1m" 5 | 6 | config SYS_CONFIG_NAME 7 | default "mpc8308_p1m" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/netgear/cg3100d/cg3100d.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/nvidia/p2571/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p2571.o 9 | -------------------------------------------------------------------------------- /board/pandora/Kconfig: -------------------------------------------------------------------------------- 1 | if TARGET_OMAP3_PANDORA 2 | 3 | config SYS_BOARD 4 | default "pandora" 5 | 6 | config SYS_CONFIG_NAME 7 | default "omap3_pandora" 8 | 9 | endif 10 | -------------------------------------------------------------------------------- /board/phytec/pcl063/Makefile: -------------------------------------------------------------------------------- 1 | # Copyright (C) 2018 Collabora Ltd. 2 | # 3 | # SPDX-License-Identifier: GPL-2.0+ 4 | # 5 | 6 | obj-y := pcl063.o 7 | obj-$(CONFIG_SPL_BUILD) += spl.o 8 | -------------------------------------------------------------------------------- /board/qca/ap121/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AP121 BOARD 2 | M: Wills Wang 3 | S: Maintained 4 | F: board/qca/ap121/ 5 | F: include/configs/ap121.h 6 | F: configs/ap121_defconfig 7 | -------------------------------------------------------------------------------- /board/qca/ap143/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AP143 BOARD 2 | M: Wills Wang 3 | S: Maintained 4 | F: board/qca/ap143/ 5 | F: include/configs/ap143.h 6 | F: configs/ap143_defconfig 7 | -------------------------------------------------------------------------------- /board/qca/ap152/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AP152 BOARD 2 | M: Rosy Song 3 | S: Maintained 4 | F: board/qca/ap152/ 5 | F: include/configs/ap152.h 6 | F: configs/ap152_defconfig 7 | -------------------------------------------------------------------------------- /board/radxa/rock/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RADXA_ROCK 2 | M: Heiko Stuebner 3 | S: Maintained 4 | F: board/radxa/rock 5 | F: include/configs/rock.h 6 | F: configs/rock_defconfig 7 | -------------------------------------------------------------------------------- /board/radxa/rock2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | FIREFLY 2 | M: Simon Glass 3 | S: Maintained 4 | F: board/radxa/rock2 5 | F: include/configs/rock2.h 6 | F: configs/rock2_defconfig 7 | -------------------------------------------------------------------------------- /board/renesas/sh7752evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SH7752EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/renesas/sh7752evb/ 5 | F: include/configs/sh7752evb.h 6 | F: configs/sh7752evb_defconfig 7 | -------------------------------------------------------------------------------- /board/renesas/sh7753evb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SH7753EVB BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/renesas/sh7753evb/ 5 | F: include/configs/sh7753evb.h 6 | F: configs/sh7753evb_defconfig 7 | -------------------------------------------------------------------------------- /board/renesas/sh7757lcr/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SH7757LCR BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/renesas/sh7757lcr/ 5 | F: include/configs/sh7757lcr.h 6 | F: configs/sh7757lcr_defconfig 7 | -------------------------------------------------------------------------------- /board/rockchip/tinker_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += tinker-rk3288.o 8 | -------------------------------------------------------------------------------- /board/sagem/f@st1704/f@st1704.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/synopsys/iot_devkit/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2018 Synopsys, Inc. All rights reserved. 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += iot_devkit.o 8 | -------------------------------------------------------------------------------- /board/ti/evm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := evm.o 7 | -------------------------------------------------------------------------------- /drivers/mtd/nand/spi/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | 3 | spinand-objs := core.o gigadevice.o macronix.o micron.o winbond.o 4 | obj-$(CONFIG_MTD_SPI_NAND) += spinand.o 5 | -------------------------------------------------------------------------------- /drivers/soc/ti/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-$(CONFIG_TI_K3_NAVSS_RINGACC) += k3-navss-ringacc.o 4 | obj-$(CONFIG_TI_KEYSTONE_SERDES) += keystone_serdes.o 5 | -------------------------------------------------------------------------------- /drivers/video/tegra124/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2014 Google, Inc 4 | # 5 | 6 | obj-y += display.o 7 | obj-y += dp.o 8 | obj-y += sor.o 9 | -------------------------------------------------------------------------------- /lib/at91/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017 Microchip 4 | # Wenyou.Yang 5 | 6 | obj-$(CONFIG_ARCH_AT91) += at91.o 7 | -------------------------------------------------------------------------------- /post/cpu/mpc83xx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2002-2007 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y += ecc.o 7 | -------------------------------------------------------------------------------- /tools/binman/test/036_u_boot_img.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | u-boot-img { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /tools/binman/test/079_uses_pos.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | u-boot { 7 | pos = <10>; 8 | }; 9 | }; 10 | }; 11 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv8/hisilicon/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 Linaro 4 | # Peter Griffin 5 | 6 | obj-y += pinmux.o 7 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv8/s32v234/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013-2016, Freescale Semiconductor, Inc. 4 | 5 | obj-y += generic.o 6 | obj-y += cpu.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-highbank/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := timer.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-imx/mx7ulp/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 Freescale Semiconductor, Inc. 4 | # 5 | 6 | obj-y := soc.o clock.o iomux.o pcc.o scg.o 7 | -------------------------------------------------------------------------------- /arch/arm/mach-stm32/stm32f7/Kconfig: -------------------------------------------------------------------------------- 1 | if STM32F7 2 | 3 | config TARGET_STM32F746_DISCO 4 | bool "STM32F746 Discovery board" 5 | 6 | source "board/st/stm32f746-disco/Kconfig" 7 | 8 | endif 9 | -------------------------------------------------------------------------------- /arch/sandbox/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | /* SPDX-License-Identifier: GPL-2.0+ */ 2 | /* 3 | * Copyright (c) 2011 The Chromium OS Authors. 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/Synology/ds414/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DS414 BOARD 2 | M: Phil Sutter 3 | S: Maintained 4 | F: board/Synology/ds414/ 5 | F: include/configs/ds414.h 6 | F: configs/ds414_defconfig 7 | -------------------------------------------------------------------------------- /board/advantech/dms-ba16/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2016 Timesys Corporation 4 | # Copyright 2016 Advantech Corporation 5 | 6 | obj-y := dms-ba16.o 7 | -------------------------------------------------------------------------------- /board/amlogic/p212/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := p212.o 7 | -------------------------------------------------------------------------------- /board/amlogic/q200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := q200.o 7 | -------------------------------------------------------------------------------- /board/amlogic/s400/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := s400.o 7 | -------------------------------------------------------------------------------- /board/amlogic/u200/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := u200.o 7 | -------------------------------------------------------------------------------- /board/amlogic/w400/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2019 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := w400.o 7 | -------------------------------------------------------------------------------- /board/ccv/xpress/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015-2016 Stefan Roese 4 | 5 | obj-y := xpress.o 6 | obj-$(CONFIG_SPL_BUILD) += spl.o 7 | -------------------------------------------------------------------------------- /board/chipspark/popmetal_rk3288/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2016 Rockchip Electronics Co., Ltd 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += popmetal-rk3288.o 8 | -------------------------------------------------------------------------------- /board/comtrend/ar5387un/ar-5387un.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/comtrend/wap5813n/wap-5813n.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2017 Álvaro Fernández Rojas 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/eets/pdu001/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PDU001 BOARD 2 | M: Felix Brack 3 | S: Maintained 4 | F: board/eets/pdu001/ 5 | F: include/configs/pdu001.h 6 | F: configs/am335x_pdu001_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/ls1046afrwy/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2019 NXP 4 | 5 | obj-y += ddr.o 6 | obj-y += ls1046afrwy.o 7 | obj-$(CONFIG_NET) += eth.o 8 | -------------------------------------------------------------------------------- /board/freescale/ls2080ardb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2015 Freescale Semiconductor 4 | 5 | obj-y += ls2080ardb.o eth_ls2080rdb.o 6 | obj-y += ddr.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5208evbe/MAINTAINERS: -------------------------------------------------------------------------------- 1 | M5208EVBE BOARD 2 | #M: - 3 | S: Maintained 4 | F: board/freescale/m5208evbe/ 5 | F: include/configs/M5208EVBE.h 6 | F: configs/M5208EVBE_defconfig 7 | -------------------------------------------------------------------------------- /board/highbank/MAINTAINERS: -------------------------------------------------------------------------------- 1 | HIGHBANK BOARD 2 | M: Rob Herring 3 | S: Maintained 4 | F: board/highbank/ 5 | F: include/configs/highbank.h 6 | F: configs/highbank_defconfig 7 | -------------------------------------------------------------------------------- /board/hisilicon/hikey/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := hikey.o 7 | -------------------------------------------------------------------------------- /board/hisilicon/poplar/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2017 Linaro 4 | # Jorge Ramirez-Ortiz 5 | obj-y := poplar.o 6 | -------------------------------------------------------------------------------- /board/ids/ids8313/MAINTAINERS: -------------------------------------------------------------------------------- 1 | IDS8313 BOARD 2 | M: Heiko Schocher 3 | S: Maintained 4 | F: board/ids/ids8313/ 5 | F: include/configs/ids8313.h 6 | F: configs/ids8313_defconfig 7 | -------------------------------------------------------------------------------- /board/is1/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCFPGA IS1 BOARD 2 | M: Pavel Machek 3 | S: Maintained 4 | F: board/is1/ 5 | F: include/configs/socfpga_is1.h 6 | F: configs/socfpga_is1_defconfig 7 | -------------------------------------------------------------------------------- /board/kosagi/novena/MAINTAINERS: -------------------------------------------------------------------------------- 1 | NOVENA BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: board/kosagi/novena/ 5 | F: include/configs/novena.h 6 | F: configs/novena_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/p2571/MAINTAINERS: -------------------------------------------------------------------------------- 1 | P2571 BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/p2571/ 5 | F: include/configs/p2571.h 6 | F: configs/p2571_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/ventana/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010,2011 4 | # NVIDIA Corporation 5 | 6 | obj-y = ../seaboard/seaboard.o 7 | -------------------------------------------------------------------------------- /board/overo/MAINTAINERS: -------------------------------------------------------------------------------- 1 | OVERO BOARD 2 | M: Steve Sakoman 3 | S: Maintained 4 | F: board/overo/ 5 | F: include/configs/omap3_overo.h 6 | F: configs/omap3_overo_defconfig 7 | -------------------------------------------------------------------------------- /board/pandora/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := pandora.o 7 | -------------------------------------------------------------------------------- /board/ppcag/bg0900/MAINTAINERS: -------------------------------------------------------------------------------- 1 | BG0900 BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: board/ppcag/bg0900/ 5 | F: include/configs/bg0900.h 6 | F: configs/bg0900_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/trats/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2011 Samsung Electronics 4 | # Heungjun Kim 5 | 6 | obj-y += trats.o 7 | -------------------------------------------------------------------------------- /board/siemens/rut/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RUT BOARD 2 | M: Samuel Egli 3 | S: Maintained 4 | F: board/siemens/rut/ 5 | F: include/configs/rut.h 6 | F: configs/rut_defconfig 7 | -------------------------------------------------------------------------------- /board/synopsys/iot_devkit/MAINTAINERS: -------------------------------------------------------------------------------- 1 | IOT DEVKIT BOARD 2 | M: Alexey Brodkin 3 | S: Maintained 4 | F: board/synopsys/iot_devkit/ 5 | F: configs/iot_devkit_defconfig 6 | -------------------------------------------------------------------------------- /board/terasic/de1-soc/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DE1-SoC BOARD 2 | M: Anatolij Gustschin 3 | S: Maintained 4 | F: include/configs/socfpga_de1_soc.h 5 | F: configs/socfpga_de1_soc_defconfig 6 | -------------------------------------------------------------------------------- /board/theobroma-systems/lion_rk3368/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2017 Theobroma Systems Design und Consulting GmbH 4 | 5 | obj-y += lion_rk3368.o 6 | -------------------------------------------------------------------------------- /board/ti/panda/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := panda.o 7 | -------------------------------------------------------------------------------- /board/wandboard/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := wandboard.o 6 | obj-$(CONFIG_SPL_BUILD) += spl.o 7 | -------------------------------------------------------------------------------- /doc/board/renesas/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Renesas 4 | ======= 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | sh7752evb 10 | sh7753evb 11 | -------------------------------------------------------------------------------- /drivers/mtd/nand/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | nandcore-objs := core.o bbt.o 4 | obj-$(CONFIG_MTD_NAND_CORE) += nandcore.o 5 | obj-$(CONFIG_MTD_SPI_NAND) += spi/ 6 | -------------------------------------------------------------------------------- /drivers/video/imx-hdp/hdp/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2019 NXP 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | obj-$(CONFIG_VIDEO_IMX_HDP_LOAD) += API_General.o test_base_sw.o 7 | -------------------------------------------------------------------------------- /lib/tizen/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2012 Samsung Electronics 4 | # Donghwa Lee 5 | 6 | obj-$(CONFIG_TIZEN) += tizen.o 7 | -------------------------------------------------------------------------------- /test/env/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2015 National Instruments, Inc 4 | 5 | obj-y += cmd_ut_env.o 6 | obj-y += attr.o 7 | obj-y += hashtable.o 8 | -------------------------------------------------------------------------------- /tools/binman/test/072_gbb_too_small.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | gbb { 7 | size = <0x200>; 8 | }; 9 | }; 10 | }; 11 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7m/config.mk: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2015 4 | # Kamil Lulko, 5 | 6 | PLATFORM_CPPFLAGS += -mno-unaligned-access 7 | -------------------------------------------------------------------------------- /arch/arm/dts/rk3036-sdk-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | &uart2 { 2 | u-boot,dm-pre-reloc; 3 | }; 4 | 5 | &grf { 6 | u-boot,dm-pre-reloc; 7 | }; 8 | 9 | &pinctrl { 10 | u-boot,dm-pre-reloc; 11 | }; 12 | -------------------------------------------------------------------------------- /arch/arm/dts/rk3399-gru-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 Jagan Teki 4 | */ 5 | 6 | #include "rk3399-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/xtensa/include/asm/unaligned.h: -------------------------------------------------------------------------------- 1 | #ifndef _ASM_XTENSA_UNALIGNED_H 2 | #define _ASM_XTENSA_UNALIGNED_H 3 | 4 | #include 5 | 6 | #endif /* _ASM_XTENSA_UNALIGNED_H */ 7 | -------------------------------------------------------------------------------- /board/BuS/eb_cpu5282/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = eb_cpu5282.o 7 | -------------------------------------------------------------------------------- /board/alliedtelesis/SBx81LIFKW/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010, 2018 4 | # Allied Telesis 5 | # 6 | 7 | obj-y += sbx81lifkw.o 8 | -------------------------------------------------------------------------------- /board/altera/stratix10-socdk/socfpga.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | /* 3 | * Copyright (C) 2016-2018 Intel Corporation 4 | * 5 | */ 6 | 7 | #include 8 | -------------------------------------------------------------------------------- /board/amlogic/p201/MAINTAINERS: -------------------------------------------------------------------------------- 1 | P201 2 | M: Neil Armstrong 3 | S: Maintained 4 | L: u-boot-amlogic@groups.io 5 | F: board/amlogic/p201/ 6 | F: configs/p201_defconfig 7 | -------------------------------------------------------------------------------- /board/amlogic/sei510/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 BayLibre, SAS 4 | # Author: Neil Armstrong 5 | 6 | obj-y := sei510.o 7 | -------------------------------------------------------------------------------- /board/amlogic/u200/MAINTAINERS: -------------------------------------------------------------------------------- 1 | U200 2 | M: Neil Armstrong 3 | S: Maintained 4 | L: u-boot-amlogic@groups.io 5 | F: board/amlogic/u200/ 6 | F: configs/u200_defconfig 7 | -------------------------------------------------------------------------------- /board/atmel/sama5d4_xplained/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2014 Atmel 4 | # Bo Shen 5 | 6 | obj-y += sama5d4_xplained.o 7 | -------------------------------------------------------------------------------- /board/broadcom/bcm968380gerg/board.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Philippe Reynes 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/cobra5272/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = cobra5272.o flash.o 7 | -------------------------------------------------------------------------------- /board/creative/xfi3/MAINTAINERS: -------------------------------------------------------------------------------- 1 | XFI3 BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: board/creative/xfi3/ 5 | F: include/configs/xfi3.h 6 | F: configs/xfi3_defconfig 7 | -------------------------------------------------------------------------------- /board/dfi/dfi-bt700/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015, Google, Inc 4 | 5 | obj-y += dfi-bt700.o start.o 6 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o 7 | -------------------------------------------------------------------------------- /board/freescale/ls2080aqds/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2015 Freescale Semiconductor 4 | 5 | obj-y += ls2080aqds.o 6 | obj-y += ddr.o 7 | obj-y += eth.o 8 | -------------------------------------------------------------------------------- /board/freescale/m5235evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5235evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5249evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5249evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5272c3/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5272c3.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5275evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5275evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5282evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5282evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m547xevb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m547xevb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m548xevb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m548xevb.o 7 | -------------------------------------------------------------------------------- /board/gumstix/pepper/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PEPPER BOARD 2 | M: Ash Charles 3 | S: Maintained 4 | F: board/gumstix/pepper/ 5 | F: include/configs/pepper.h 6 | F: configs/pepper_defconfig 7 | -------------------------------------------------------------------------------- /board/highbank/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := highbank.o ahci.o 7 | -------------------------------------------------------------------------------- /board/lego/ev3/MAINTAINERS: -------------------------------------------------------------------------------- 1 | LEGOEV3 BOARD 2 | M: David Lechner 3 | S: Maintained 4 | F: board/lego/ev3/ 5 | F: include/configs/legoev3.h 6 | F: configs/legoev3_defconfig 7 | -------------------------------------------------------------------------------- /board/lg/sniper/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SNIPER BOARD 2 | M: Paul Kocialkowski 3 | S: Maintained 4 | F: board/lg/sniper/ 5 | F: include/configs/sniper.h 6 | F: configs/sniper_defconfig 7 | -------------------------------------------------------------------------------- /board/logicpd/zoom1/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := zoom1.o 7 | -------------------------------------------------------------------------------- /board/nvidia/cardhu/MAINTAINERS: -------------------------------------------------------------------------------- 1 | CARDHU BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/cardhu/ 5 | F: include/configs/cardhu.h 6 | F: configs/cardhu_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/e2220-1170/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += e2220-1170.o 9 | -------------------------------------------------------------------------------- /board/nvidia/p2371-0000/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p2371-0000.o 9 | -------------------------------------------------------------------------------- /board/nvidia/p2371-2180/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2013-2015 3 | # NVIDIA Corporation 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | 8 | obj-y += p2371-2180.o 9 | -------------------------------------------------------------------------------- /board/phytec/pfla02/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PHYTEC PHYFLEX 2 | M: Stefano Babic 3 | S: Maintained 4 | F: board/phytec/pfla02/ 5 | F: include/configs/pfla02.h 6 | F: configs/pfla02_defconfig 7 | -------------------------------------------------------------------------------- /board/raspberrypi/rpi/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RPI BOARD 2 | M: Matthias Brugger 3 | S: Maintained 4 | F: board/raspberrypi/rpi/ 5 | F: include/configs/rpi.h 6 | F: configs/rpi_*defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/pm9261/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PM9261 BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/pm9261/ 5 | F: include/configs/pm9261.h 6 | F: configs/pm9261_defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/pm9263/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PM9263 BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/pm9263/ 5 | F: include/configs/pm9263.h 6 | F: configs/pm9263_defconfig 7 | -------------------------------------------------------------------------------- /board/ronetix/pm9g45/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PM9G45 BOARD 2 | M: Ilko Iliev 3 | S: Maintained 4 | F: board/ronetix/pm9g45/ 5 | F: include/configs/pm9g45.h 6 | F: configs/pm9g45_defconfig 7 | -------------------------------------------------------------------------------- /board/siemens/corvus/MAINTAINERS: -------------------------------------------------------------------------------- 1 | CORVUS BOARD 2 | M: Heiko Schocher 3 | S: Maintained 4 | F: board/siemens/corvus/ 5 | F: include/configs/corvus.h 6 | F: configs/corvus_defconfig 7 | -------------------------------------------------------------------------------- /board/siemens/pxm2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PXM2 BOARD 2 | M: Samuel Egli 3 | S: Maintained 4 | F: board/siemens/pxm2/ 5 | F: include/configs/pxm2.h 6 | F: configs/pxm2_defconfig 7 | -------------------------------------------------------------------------------- /board/spear/spear300/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := spear300.o 7 | -------------------------------------------------------------------------------- /board/spear/spear310/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := spear310.o 7 | -------------------------------------------------------------------------------- /board/spear/spear320/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := spear320.o 7 | -------------------------------------------------------------------------------- /board/spear/spear600/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2004 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y += spear600.o 7 | -------------------------------------------------------------------------------- /board/syteco/zmx25/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ZMX25 BOARD 2 | M: Matthias Weisser 3 | S: Maintained 4 | F: board/syteco/zmx25/ 5 | F: include/configs/zmx25.h 6 | F: configs/zmx25_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/evm/MAINTAINERS: -------------------------------------------------------------------------------- 1 | EVM BOARD 2 | M: Derald D. Woods 3 | S: Maintained 4 | F: board/ti/evm/ 5 | F: include/configs/omap3_evm.h 6 | F: configs/omap3_evm_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/omap5_uevm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := evm.o 7 | -------------------------------------------------------------------------------- /board/ti/panda/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PANDA BOARD 2 | M: Lokesh Vutla 3 | S: Maintained 4 | F: board/ti/panda/ 5 | F: include/configs/omap4_panda.h 6 | F: configs/omap4_panda_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/ti814x/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TI814X BOARD 2 | M: Tom Rini 3 | S: Maintained 4 | F: board/ti/ti814x/ 5 | F: include/configs/ti814x_evm.h 6 | F: configs/ti814x_evm_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/ti816x/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TI816X BOARD 2 | M: Tom Rini 3 | S: Maintained 4 | F: board/ti/ti816x/ 5 | F: include/configs/ti816x_evm.h 6 | F: configs/ti816x_evm_defconfig 7 | -------------------------------------------------------------------------------- /board/xilinx/versal/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016 - 2018 Xilinx, Inc. 4 | # Michal Simek 5 | # 6 | 7 | obj-y := board.o 8 | -------------------------------------------------------------------------------- /drivers/clk/altera/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Marek Vasut 4 | # 5 | 6 | obj-$(CONFIG_TARGET_SOCFPGA_ARRIA10) += clk-arria10.o 7 | -------------------------------------------------------------------------------- /tools/binman/test/004_invalid_entry.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | not-a-valid-type { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /tools/binman/test/091_hash_no_algo.dts: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /dts-v1/; 3 | 4 | / { 5 | binman { 6 | u-boot { 7 | hash { 8 | }; 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /arch/arm/mach-rockchip/rv1108/rv1108.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * (C) Copyright 2016 Rockchip Electronics Co., Ltd 4 | * Author: Andy Yan 5 | */ 6 | -------------------------------------------------------------------------------- /arch/powerpc/dts/gdsys/soc/lbc/gazerbeam.dtsi: -------------------------------------------------------------------------------- 1 | &board_lbc { 2 | ranges = <0x0 0x0 0xfe000000 0x00800000 3 | 0x1 0x0 0xe0600000 0x00003000 4 | 0x2 0x0 0xe0700000 0x00003000>; 5 | }; 6 | -------------------------------------------------------------------------------- /arch/x86/cpu/slimbootloader/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2019 Intel Corporation 4 | 5 | obj-y += car.o slimbootloader.o sdram.o serial.o 6 | -------------------------------------------------------------------------------- /board/CarMediaLab/flea3/MAINTAINERS: -------------------------------------------------------------------------------- 1 | FLEA3 BOARD 2 | M: Stefano Babic 3 | S: Maintained 4 | F: board/CarMediaLab/flea3/ 5 | F: include/configs/flea3.h 6 | F: configs/flea3_defconfig 7 | -------------------------------------------------------------------------------- /board/Seagate/dockstar/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DOCKSTAR BOARD 2 | M: Eric Cooper 3 | S: Maintained 4 | F: board/Seagate/dockstar/ 5 | F: include/configs/dockstar.h 6 | F: configs/dockstar_defconfig 7 | -------------------------------------------------------------------------------- /board/abilis/tb100/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TB100 BOARD 2 | M: Alexey Brodkin 3 | S: Maintained 4 | F: board/abilis/tb100/ 5 | F: include/configs/tb100.h 6 | F: configs/tb100_defconfig 7 | -------------------------------------------------------------------------------- /board/alliedtelesis/SBx81LIFXCAT/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2010, 2018 4 | # Allied Telesis 5 | # 6 | 7 | obj-y += sbx81lifxcat.o 8 | -------------------------------------------------------------------------------- /board/amlogic/w400/MAINTAINERS: -------------------------------------------------------------------------------- 1 | W400 2 | M: Neil Armstrong 3 | S: Maintained 4 | L: u-boot-amlogic@groups.io 5 | F: board/amlogic/w400/ 6 | F: configs/odroid-n2_defconfig 7 | -------------------------------------------------------------------------------- /board/astro/mcf5373l/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = mcf5373l.o fpga.o 7 | -------------------------------------------------------------------------------- /board/avionic-design/tec-ng/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2013 4 | # Avionic Design GmbH 5 | 6 | obj-y := ../common/tamonten-ng.o 7 | -------------------------------------------------------------------------------- /board/barco/titanium/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TITANIUM BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/barco/titanium/ 5 | F: include/configs/titanium.h 6 | F: configs/titanium_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/m5208evbe/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5208evbe.o 7 | -------------------------------------------------------------------------------- /board/freescale/m52277evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m52277evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/m53017evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m53017evb.o 7 | -------------------------------------------------------------------------------- /board/freescale/mpc8323erdb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := mpc8323erdb.o 7 | -------------------------------------------------------------------------------- /board/freescale/mpc8349itx/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) Freescale Semiconductor, Inc. 2006. 4 | 5 | obj-y += mpc8349itx.o 6 | obj-$(CONFIG_PCI) += pci.o 7 | -------------------------------------------------------------------------------- /board/google/gru/MAINTAINERS: -------------------------------------------------------------------------------- 1 | CHROMEBOOK BOB BOARD 2 | M: Simon Glass 3 | S: Maintained 4 | F: board/google/gru/ 5 | F: include/configs/gru.h 6 | F: configs/chromebook_bob_defconfig 7 | -------------------------------------------------------------------------------- /board/gumstix/duovero/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DUOVERO BOARD 2 | M: Ash Charles 3 | S: Maintained 4 | F: board/gumstix/duovero/ 5 | F: include/configs/duovero.h 6 | F: configs/duovero_defconfig 7 | -------------------------------------------------------------------------------- /board/gumstix/duovero/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := duovero.o 7 | -------------------------------------------------------------------------------- /board/intel/bayleybay/bayleybay.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2015, Bin Meng 4 | */ 5 | 6 | #include 7 | #include 8 | -------------------------------------------------------------------------------- /board/intel/minnowmax/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015, Google, Inc 4 | 5 | obj-y += minnowmax.o start.o 6 | obj-$(CONFIG_GENERATE_ACPI_TABLE) += dsdt.o 7 | -------------------------------------------------------------------------------- /board/laird/wb45n/MAINTAINERS: -------------------------------------------------------------------------------- 1 | WB45N CPU MODULE 2 | M: Ben Whitten 3 | S: Maintained 4 | F: board/laird/wb45n/ 5 | F: include/configs/wb45n.h 6 | F: configs/wb45n_defconfig 7 | -------------------------------------------------------------------------------- /board/laird/wb50n/MAINTAINERS: -------------------------------------------------------------------------------- 1 | WB50N CPU MODULE 2 | M: Ben Whitten 3 | S: Maintained 4 | F: board/laird/wb50n/ 5 | F: include/configs/wb50n.h 6 | F: configs/wb50n_defconfig 7 | -------------------------------------------------------------------------------- /board/logicpd/zoom1/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ZOOM1 BOARD 2 | M: Nishanth Menon 3 | S: Maintained 4 | F: board/logicpd/zoom1/ 5 | F: include/configs/omap3_zoom1.h 6 | F: configs/omap3_zoom1_defconfig 7 | -------------------------------------------------------------------------------- /board/microchip/pic32mzda/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2015 3 | # Purna Chandra Mandal, purna.mandal@microchip.com. 4 | # 5 | # SPDX-License-Identifier: GPL-2.0+ 6 | # 7 | obj-y := pic32mzda.o 8 | -------------------------------------------------------------------------------- /board/nokia/rx51/MAINTAINERS: -------------------------------------------------------------------------------- 1 | RX51 BOARD 2 | M: Pali Rohár 3 | S: Maintained 4 | F: board/nokia/rx51/ 5 | F: include/configs/nokia_rx51.h 6 | F: configs/nokia_rx51_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/dalmore/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DALMORE BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/dalmore/ 5 | F: include/configs/dalmore.h 6 | F: configs/dalmore_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/harmony/MAINTAINERS: -------------------------------------------------------------------------------- 1 | HARMONY BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/harmony/ 5 | F: include/configs/harmony.h 6 | F: configs/harmony_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/venice2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | VENICE2 BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/venice2/ 5 | F: include/configs/venice2.h 6 | F: configs/venice2_defconfig 7 | -------------------------------------------------------------------------------- /board/raidsonic/ib62x0/MAINTAINERS: -------------------------------------------------------------------------------- 1 | IB62X0 BOARD 2 | M: Luka Perkov 3 | S: Maintained 4 | F: board/raidsonic/ib62x0/ 5 | F: include/configs/ib62x0.h 6 | F: configs/ib62x0_defconfig 7 | -------------------------------------------------------------------------------- /board/rockchip/evb_px5/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PX5 EVB 2 | M: Andy Yan 3 | S: Maintained 4 | F: board/rockchip/evb_px5 5 | F: include/configs/evb_px5.h 6 | F: configs/evb-px5_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/trats/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TRATS BOARD 2 | M: Jaehoon Chung 3 | S: Maintained 4 | F: board/samsung/trats/ 5 | F: include/configs/trats.h 6 | F: configs/trats_defconfig 7 | -------------------------------------------------------------------------------- /board/samtec/vining_fpga/MAINTAINERS: -------------------------------------------------------------------------------- 1 | VINING FPGA BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: include/configs/socfpga_vining_fpga.h 5 | F: configs/socfpga_vining_fpga_defconfig 6 | -------------------------------------------------------------------------------- /board/sr1500/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SOCFPGA SR1500 BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/sr1500/ 5 | F: include/configs/socfpga_sr1500.h 6 | F: configs/socfpga_sr1500_defconfig 7 | -------------------------------------------------------------------------------- /board/syteco/zmx25/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (c) 2010 Graf-Syteco, Matthias Weisser 4 | # 5 | 6 | obj-y += zmx25.o 7 | obj-y += lowlevel_init.o 8 | -------------------------------------------------------------------------------- /board/ti/beagle/MAINTAINERS: -------------------------------------------------------------------------------- 1 | BEAGLE BOARD 2 | M: Tom Rini 3 | S: Maintained 4 | F: board/ti/beagle/ 5 | F: include/configs/omap3_beagle.h 6 | F: configs/omap3_beagle_defconfig 7 | -------------------------------------------------------------------------------- /board/ti/ti814x/evm.h: -------------------------------------------------------------------------------- 1 | #ifndef _EVM_H 2 | #define _EVM_H 3 | 4 | void enable_uart0_pin_mux(void); 5 | void enable_mmc1_pin_mux(void); 6 | void enable_enet_pin_mux(void); 7 | 8 | #endif /* _EVM_H */ 9 | -------------------------------------------------------------------------------- /board/topic/zynq/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TOPIC BOARD 2 | M: Mike Looijmans 3 | S: Maintained 4 | F: board/topic/zynq/ 5 | F: include/configs/topic*.h 6 | F: configs/topic_*_defconfig 7 | -------------------------------------------------------------------------------- /board/zyxel/nsa310s/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2015 4 | # Gerald Kerma 5 | # Tony Dinh 6 | 7 | obj-y := nsa310s.o 8 | -------------------------------------------------------------------------------- /cmd/arm/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | ifdef CONFIG_ARM64 4 | obj-$(CONFIG_CMD_EXCEPTION) += exception64.o 5 | else 6 | obj-$(CONFIG_CMD_EXCEPTION) += exception.o 7 | endif 8 | -------------------------------------------------------------------------------- /cmd/x86/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += mtrr.o 4 | obj-$(CONFIG_CMD_EXCEPTION) += exception.o 5 | obj-$(CONFIG_USE_HOB) += hob.o 6 | obj-$(CONFIG_HAVE_FSP) += fsp.o 7 | -------------------------------------------------------------------------------- /common/init/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (c) 2015 Google, Inc 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += board_init.o 8 | obj-$(CONFIG_$(SPL_TPL_)HANDOFF) += handoff.o 9 | -------------------------------------------------------------------------------- /doc/board/AndesTech/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Andes Tech 4 | ========== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | adp-ag101p 10 | ax25-ae350 11 | -------------------------------------------------------------------------------- /doc/board/google/index.rst: -------------------------------------------------------------------------------- 1 | .. SPDX-License-Identifier: GPL-2.0+ 2 | 3 | Google 4 | ====== 5 | 6 | .. toctree:: 7 | :maxdepth: 2 8 | 9 | chromebook_link 10 | chromebook_samus 11 | -------------------------------------------------------------------------------- /doc/bounces: -------------------------------------------------------------------------------- 1 | # List of addresses picked up by patman/get_maintainer.pl that are known to 2 | # bounce. Addresses are listed one per line and need to match the author 3 | # information recorded in git. 4 | -------------------------------------------------------------------------------- /fs/zfs/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2012 4 | # Jorgen Lundman 5 | 6 | obj-y := dev.o zfs.o zfs_fletcher.o zfs_sha256.o zfs_lzjb.o 7 | -------------------------------------------------------------------------------- /include/linux/linux_string.h: -------------------------------------------------------------------------------- 1 | #ifndef _LINUX_LINUX_STRING_H_ 2 | #define _LINUX_LINUX_STRING_H_ 3 | 4 | extern char * skip_spaces(const char *); 5 | 6 | extern char *strim(char *); 7 | 8 | #endif 9 | -------------------------------------------------------------------------------- /tools/binman/test/052_u_boot_spl_nodtb.dts: -------------------------------------------------------------------------------- 1 | /dts-v1/; 2 | 3 | / { 4 | #address-cells = <1>; 5 | #size-cells = <1>; 6 | 7 | binman { 8 | u-boot-spl-nodtb { 9 | }; 10 | }; 11 | }; 12 | -------------------------------------------------------------------------------- /api/Kconfig: -------------------------------------------------------------------------------- 1 | menu "API" 2 | 3 | config API 4 | bool "Enable U-Boot API" 5 | default n 6 | help 7 | This option enables the U-Boot API. See api/README for more information. 8 | 9 | endmenu 10 | -------------------------------------------------------------------------------- /arch/arm/cpu/armv7/iproc-common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2014 Broadcom Corporation. 4 | 5 | obj-y += armpll.o 6 | obj-y += hwinit-common.o 7 | obj-y += timer.o 8 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6dl-icore-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Jagan Teki 4 | */ 5 | 6 | #include "imx6qdl-icore-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/imx6q-icore-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Jagan Teki 4 | */ 5 | 6 | #include "imx6qdl-icore-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/dts/rk3399-khadas-edge-v-u-boot.dtsi: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2019 Nick Xie 4 | */ 5 | 6 | #include "rk3399-khadas-edge-u-boot.dtsi" 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-tegra114/powergate.h: -------------------------------------------------------------------------------- 1 | #ifndef _TEGRA114_POWERGATE_H_ 2 | #define _TEGRA114_POWERGATE_H_ 3 | 4 | #include 5 | 6 | #endif /* _TEGRA114_POWERGATE_H_ */ 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-tegra124/powergate.h: -------------------------------------------------------------------------------- 1 | #ifndef _TEGRA124_POWERGATE_H_ 2 | #define _TEGRA124_POWERGATE_H_ 3 | 4 | #include 5 | 6 | #endif /* _TEGRA124_POWERGATE_H_ */ 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-tegra20/powergate.h: -------------------------------------------------------------------------------- 1 | #ifndef _TEGRA20_POWERGATE_H_ 2 | #define _TEGRA20_POWERGATE_H_ 3 | 4 | #include 5 | 6 | #endif /* _TEGRA20_POWERGATE_H_ */ 7 | -------------------------------------------------------------------------------- /arch/arm/include/asm/arch-tegra30/powergate.h: -------------------------------------------------------------------------------- 1 | #ifndef _TEGRA30_POWERGATE_H_ 2 | #define _TEGRA30_POWERGATE_H_ 3 | 4 | #include 5 | 6 | #endif /* _TEGRA30_POWERGATE_H_ */ 7 | -------------------------------------------------------------------------------- /arch/arm/mach-rockchip/rk3368/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (c) 2016 Andreas Färber 4 | obj-y += clk_rk3368.o 5 | obj-y += rk3368.o 6 | obj-y += syscon_rk3368.o 7 | -------------------------------------------------------------------------------- /arch/mips/mach-mtmips/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += cpu.o 4 | 5 | ifndef CONFIG_SKIP_LOWLEVEL_INIT 6 | obj-y += ddr_calibrate.o 7 | obj-y += lowlevel_init.o 8 | endif 9 | -------------------------------------------------------------------------------- /arch/x86/include/asm/linkage.h: -------------------------------------------------------------------------------- 1 | #ifndef _ASM_X86_LINKAGE_H 2 | #define _ASM_X86_LINKAGE_H 3 | 4 | #define asmlinkage CPP_ASMLINKAGE __attribute__((regparm(0))) 5 | 6 | #endif /* _ASM_X86_LINKAGE_H */ 7 | -------------------------------------------------------------------------------- /board/Marvell/gplugd/MAINTAINERS: -------------------------------------------------------------------------------- 1 | GPLUGD BOARD 2 | M: Ajay Bhargav 3 | S: Maintained 4 | F: board/Marvell/gplugd/ 5 | F: include/configs/gplugd.h 6 | F: configs/gplugd_defconfig 7 | -------------------------------------------------------------------------------- /board/Seagate/nas220/MAINTAINERS: -------------------------------------------------------------------------------- 1 | NAS220 BOARD 2 | M: Evgeni Dobrev 3 | S: Maintained 4 | F: board/Seagate/nas220/ 5 | F: include/configs/nas220.h 6 | F: configs/nas220_defconfig 7 | -------------------------------------------------------------------------------- /board/broadcom/bcm968380gerg/bcm968380gerg.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0+ 2 | /* 3 | * Copyright (C) 2018 Philippe Reynes 4 | */ 5 | 6 | #include 7 | -------------------------------------------------------------------------------- /board/cei/cei-tk1-som/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TK1-SOM BOARD 2 | M: Peter.Chubb@data61.csiro.au 3 | S: Maintained 4 | F: board/cei/tk1-som/ 5 | F: include/configs/cei-tk1-som.h 6 | F: configs/cei-tk1-som_defconfig 7 | -------------------------------------------------------------------------------- /board/devboards/dbm-soc1/MAINTAINERS: -------------------------------------------------------------------------------- 1 | Devboards.de DBM-SoC1 BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: include/configs/socfpga_dbm_soc1.h 5 | F: configs/socfpga_dbm_soc1_defconfig 6 | -------------------------------------------------------------------------------- /board/freescale/m5253demo/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5253demo.o flash.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5329evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5329evb.o nand.o 7 | -------------------------------------------------------------------------------- /board/freescale/m5373evb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000-2003 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y = m5373evb.o nand.o 7 | -------------------------------------------------------------------------------- /board/freescale/mpc8313erdb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := mpc8313erdb.o sdram.o 7 | -------------------------------------------------------------------------------- /board/freescale/mpc8315erdb/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2006 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := mpc8315erdb.o sdram.o 7 | -------------------------------------------------------------------------------- /board/freescale/mx35pdk/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MX35PDK BOARD 2 | M: Stefano Babic 3 | S: Maintained 4 | F: board/freescale/mx35pdk/ 5 | F: include/configs/mx35pdk.h 6 | F: configs/mx35pdk_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/mx51evk/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MX51EVK BOARD 2 | M: Stefano Babic 3 | S: Maintained 4 | F: board/freescale/mx51evk/ 5 | F: include/configs/mx51evk.h 6 | F: configs/mx51evk_defconfig 7 | -------------------------------------------------------------------------------- /board/freescale/p1_twr/MAINTAINERS: -------------------------------------------------------------------------------- 1 | P1_TWR BOARD 2 | M: Xiaobo Xie 3 | S: Maintained 4 | F: board/freescale/p1_twr/ 5 | F: include/configs/p1_twr.h 6 | F: configs/TWR-P1025_defconfig 7 | -------------------------------------------------------------------------------- /board/geekbuying/geekbox/MAINTAINERS: -------------------------------------------------------------------------------- 1 | GEEKBOX 2 | M: Andreas Färber 3 | S: Maintained 4 | F: board/geekbuying/geekbox 5 | F: include/configs/geekbox.h 6 | F: configs/geekbox_defconfig 7 | -------------------------------------------------------------------------------- /board/intel/bayleybay/MAINTAINERS: -------------------------------------------------------------------------------- 1 | Intel Bayley Bay 2 | M: Bin Meng 3 | S: Maintained 4 | F: board/intel/bayleybay 5 | F: include/configs/bayleybay.h 6 | F: configs/bayleybay_defconfig 7 | -------------------------------------------------------------------------------- /board/intel/galileo/MAINTAINERS: -------------------------------------------------------------------------------- 1 | INTEL GALILEO BOARD 2 | M: Bin Meng 3 | S: Maintained 4 | F: board/intel/galileo/ 5 | F: include/configs/galileo.h 6 | F: configs/galileo_defconfig 7 | -------------------------------------------------------------------------------- /board/iomega/iconnect/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ICONNECT BOARD 2 | M: Luka Perkov 3 | S: Maintained 4 | F: board/iomega/iconnect/ 5 | F: include/configs/iconnect.h 6 | F: configs/iconnect_defconfig 7 | -------------------------------------------------------------------------------- /board/k+p/kp_imx53/MAINTAINERS: -------------------------------------------------------------------------------- 1 | KP_IMX53_HSC BOARD 2 | M: Lukasz Majewski 3 | S: Maintained 4 | F: board/k+p/kp_imx53/ 5 | F: include/configs/kp_imx53.h 6 | F: configs/kp_imx53_defconfig 7 | -------------------------------------------------------------------------------- /board/kobol/helios4/MAINTAINERS: -------------------------------------------------------------------------------- 1 | HELIOS4 BOARD 2 | M: Dennis Gilmore 3 | S: Maintained 4 | F: board/kobol/helios4/ 5 | F: include/configs/helios4.h 6 | F: configs/helios4_defconfig 7 | -------------------------------------------------------------------------------- /board/liebherr/mccmon6/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2016-2017 4 | # Lukasz Majewski, DENX Software Engineering, lukma@denx.de 5 | 6 | obj-y := mccmon6.o spl.o 7 | -------------------------------------------------------------------------------- /board/logicpd/omap3som/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # (C) Copyright 2000, 2001, 2002 4 | # Wolfgang Denk, DENX Software Engineering, wd@denx.de. 5 | 6 | obj-y := omap3logic.o 7 | -------------------------------------------------------------------------------- /board/mediatek/pumpkin/MAINTAINERS: -------------------------------------------------------------------------------- 1 | Pumpkin 2 | M: Fabien Parent 3 | S: Maintained 4 | F: board/mediatek/pumpkin 5 | F: include/configs/pumpkin.h 6 | F: configs/pumpkin_defconfig 7 | -------------------------------------------------------------------------------- /board/mpc8308_p1m/MAINTAINERS: -------------------------------------------------------------------------------- 1 | MPC8308_P1M BOARD 2 | M: Ilya Yanok 3 | S: Maintained 4 | F: board/mpc8308_p1m/ 5 | F: include/configs/mpc8308_p1m.h 6 | F: configs/mpc8308_p1m_defconfig 7 | -------------------------------------------------------------------------------- /board/nvidia/seaboard/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SEABOARD BOARD 2 | M: Tom Warren 3 | S: Maintained 4 | F: board/nvidia/seaboard/ 5 | F: include/configs/seaboard.h 6 | F: configs/seaboard_defconfig 7 | -------------------------------------------------------------------------------- /board/pandora/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PANDORA BOARD 2 | M: Grazvydas Ignotas 3 | S: Maintained 4 | F: board/pandora/ 5 | F: include/configs/omap3_pandora.h 6 | F: configs/omap3_pandora_defconfig 7 | -------------------------------------------------------------------------------- /board/phytec/pcm058/MAINTAINERS: -------------------------------------------------------------------------------- 1 | PHYTEC PHYBOARD MIRA 2 | M: Stefano Babic 3 | S: Maintained 4 | F: board/phytec/pcm058/ 5 | F: include/configs/pcm058.h 6 | F: configs/pcm058_defconfig 7 | -------------------------------------------------------------------------------- /board/renesas/alt/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ALT BOARD 2 | M: Nobuhiro Iwamatsu 3 | S: Maintained 4 | F: board/renesas/alt/ 5 | F: include/configs/alt.h 6 | F: configs/alt_defconfig 7 | -------------------------------------------------------------------------------- /board/renesas/grpeach/MAINTAINERS: -------------------------------------------------------------------------------- 1 | GRPEACH BOARD 2 | M: Marek Vasut 3 | S: Maintained 4 | F: board/renesas/grpeach/ 5 | F: include/configs/grpeach.h 6 | F: configs/grpeach_defconfig 7 | -------------------------------------------------------------------------------- /board/renesas/silk/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SILK BOARD 2 | M: Cogent Embedded, Inc. 3 | S: Maintained 4 | F: board/renesas/silk/ 5 | F: include/configs/silk.h 6 | F: configs/silk_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/espresso7420/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2016 Samsung Electronics 4 | # Thomas Abraham 5 | 6 | obj-y += espresso7420.o 7 | -------------------------------------------------------------------------------- /board/samsung/goni/MAINTAINERS: -------------------------------------------------------------------------------- 1 | GONI BOARD 2 | M: Robert Baldyga 3 | S: Maintained 4 | F: board/samsung/goni/ 5 | F: include/configs/s5p_goni.h 6 | F: configs/s5p_goni_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/odroid/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ODROID BOARD 2 | M: Jaehoon Chung 3 | S: Maintained 4 | F: board/samsung/odroid/ 5 | F: include/configs/odroid.h 6 | F: configs/odroid_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/origen/MAINTAINERS: -------------------------------------------------------------------------------- 1 | ORIGEN BOARD 2 | M: Chander Kashyap 3 | S: Maintained 4 | F: board/samsung/origen/ 5 | F: include/configs/origen.h 6 | F: configs/origen_defconfig 7 | -------------------------------------------------------------------------------- /board/samsung/trats2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | TRATS2 BOARD 2 | M: Jaehoon Chung 3 | S: Maintained 4 | F: board/samsung/trats2/ 5 | F: include/configs/trats2.h 6 | F: configs/trats2_defconfig 7 | -------------------------------------------------------------------------------- /board/sbc8641d/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SBC8641D BOARD 2 | M: Paul Gortmaker 3 | S: Maintained 4 | F: board/sbc8641d/ 5 | F: include/configs/sbc8641d.h 6 | F: configs/sbc8641d_defconfig 7 | -------------------------------------------------------------------------------- /board/siemens/smartweb/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SMARTWEB_HW BOARD 2 | M: Heiko Schocher 3 | S: Maintained 4 | F: board/siemens/smartweb 5 | F: include/configs/smartweb.h 6 | F: configs/smartweb_defconfig 7 | -------------------------------------------------------------------------------- /board/synopsys/hsdk/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2017 Synopsys, Inc. All rights reserved. 4 | 5 | obj-y += hsdk.o 6 | obj-y += env-lib.o 7 | obj-y += clk-lib.o 8 | -------------------------------------------------------------------------------- /board/sysam/amcore/MAINTAINERS: -------------------------------------------------------------------------------- 1 | AMCORE BOARD 2 | M: Angelo Dureghello 3 | S: Maintained 4 | F: board/sysam/amcore/ 5 | F: include/configs/amcore.h 6 | F: configs/amcore_defconfig 7 | -------------------------------------------------------------------------------- /board/sysam/stmark2/MAINTAINERS: -------------------------------------------------------------------------------- 1 | STMARK2 BOARD 2 | M: Angelo Dureghello 3 | S: Maintained 4 | F: board/sysam/stmark2/ 5 | F: include/configs/stmark2.h 6 | F: configs/stmark2_defconfig 7 | -------------------------------------------------------------------------------- /board/terasic/de10-nano/MAINTAINERS: -------------------------------------------------------------------------------- 1 | DE10-NANO BOARD 2 | M: Dalon Westergreen 3 | S: Maintained 4 | F: include/configs/socfpga_de10_nano.h 5 | F: configs/socfpga_de10_nano_defconfig 6 | -------------------------------------------------------------------------------- /board/theadorable/MAINTAINERS: -------------------------------------------------------------------------------- 1 | THEADORABLE BOARD 2 | M: Stefan Roese 3 | S: Maintained 4 | F: board/theadorable/ 5 | F: include/configs/theadorable.h 6 | F: configs/theadorable_debug_defconfig 7 | -------------------------------------------------------------------------------- /board/theobroma-systems/puma_rk3399/Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # (C) Copyright 2017 Theobroma Systems Design und Consulting GmbH 3 | # 4 | # SPDX-License-Identifier: GPL-2.0+ 5 | # 6 | 7 | obj-y += puma-rk3399.o 8 | -------------------------------------------------------------------------------- /board/ti/common/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # Copyright (C) 2015-2016 Texas Instruments Incorporated - http://www.ti.com/ 3 | 4 | obj-${CONFIG_TI_I2C_BOARD_DETECT} += board_detect.o 5 | -------------------------------------------------------------------------------- /board/ti/sdp4430/MAINTAINERS: -------------------------------------------------------------------------------- 1 | SDP4430 BOARD 2 | M: Lokesh Vutla 3 | S: Maintained 4 | F: board/ti/sdp4430/ 5 | F: include/configs/omap4_sdp4430.h 6 | F: configs/omap4_sdp4430_defconfig 7 | -------------------------------------------------------------------------------- /board/toradex/colibri_vf/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright 2013 Freescale Semiconductor, Inc. 4 | 5 | obj-y := colibri_vf.o 6 | obj-$(CONFIG_VIDEO_FSL_DCU_FB) += dcu.o 7 | -------------------------------------------------------------------------------- /board/vamrs/rock960_rk3399/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | # 3 | # Copyright (C) 2018 Manivannan Sadhasivam 4 | # 5 | 6 | obj-y += rock960-rk3399.o 7 | -------------------------------------------------------------------------------- /board/varisys/cyrus/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0+ 2 | 3 | obj-y += $(BOARD).o 4 | obj-y += ddr.o 5 | obj-y += law.o 6 | obj-y += tlb.o 7 | obj-y += eth.o 8 | obj-$(CONFIG_PCI) += pci.o 9 | -------------------------------------------------------------------------------- /cmd/mvebu/Makefile: -------------------------------------------------------------------------------- 1 | # SPDX-License-Identifier: GPL-2.0 2 | # 3 | # Copyright (C) 2016 Marvell International Ltd. 4 | # 5 | # https://spdx.org/licenses 6 | 7 | 8 | obj-$(CONFIG_CMD_MVEBU_BUBT) += bubt.o 9 | -------------------------------------------------------------------------------- /doc/device-tree-bindings/mtd/spi-nand.txt: -------------------------------------------------------------------------------- 1 | SPI NAND flash 2 | 3 | Required properties: 4 | - compatible: should be "spi-nand" 5 | - reg: should encode the chip-select line used to access the NAND chip 6 | -------------------------------------------------------------------------------- /drivers/cache/Makefile: -------------------------------------------------------------------------------- 1 | 2 | obj-$(CONFIG_CACHE) += cache-uclass.o 3 | obj-$(CONFIG_SANDBOX) += sandbox_cache.o 4 | obj-$(CONFIG_L2X0_CACHE) += cache-l2x0.o 5 | obj-$(CONFIG_V5L2_CACHE) += cache-v5l2.o 6 | -------------------------------------------------------------------------------- /drivers/ddr/marvell/a38x/mv_ddr_build_message.c: -------------------------------------------------------------------------------- 1 | // SPDX-License-Identifier: GPL-2.0 2 | const char mv_ddr_build_message[] = ""; 3 | const char mv_ddr_version_string[] = "mv_ddr: mv_ddr-armada-18.09.2"; 4 | --------------------------------------------------------------------------------