code
stringlengths
0
21.5M
repo_name
stringlengths
4
92
path
stringlengths
1
189
language
stringlengths
0
26
license
stringclasses
11 values
size
int64
0
21.5M
image boot.vfat { vfat { files = { "bcm2709-rpi-2-b.dtb", "rpi-firmware/bootcode.bin", "rpi-firmware/cmdline.txt", "rpi-firmware/config.txt", "rpi-firmware/fixup.dat", "rpi-firmware/start.elf", "kernel-marked/zImage" } } size = 32M } image sdcard.img { hdimage ...
shibajee/buildroot
board/raspberrypi/genimage-raspberrypi2.cfg
INI
mit
501
image boot.vfat { vfat { files = { "bcm2710-rpi-3-b.dtb", "rpi-firmware/bootcode.bin", "rpi-firmware/cmdline.txt", "rpi-firmware/config.txt", "rpi-firmware/fixup.dat", "rpi-firmware/start.elf", "kernel-marked/zImage" } } size = 32M } image sdcard.img { hdimage ...
shibajee/buildroot
board/raspberrypi/genimage-raspberrypi3.cfg
INI
mit
501
#!/bin/sh set -u set -e # Add a console on tty1 if [ -e ${TARGET_DIR}/etc/inittab ]; then grep -qE '^tty1::' ${TARGET_DIR}/etc/inittab || \ sed -i '/GENERIC_SERIAL/a\ tty1::respawn:/sbin/getty -L tty1 0 vt100 # HDMI console' ${TARGET_DIR}/etc/inittab fi
shibajee/buildroot
board/raspberrypi/post-build.sh
Shell
mit
262
#!/bin/sh BOARD_DIR="$(dirname $0)" BOARD_NAME="$(basename ${BOARD_DIR})" GENIMAGE_CFG="${BOARD_DIR}/genimage-${BOARD_NAME}.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" # Mark the kernel as DT-enabled mkdir -p "${BINARIES_DIR}/kernel-marked" ${HOST_DIR}/usr/bin/mkknlimg "${BINARIES_DIR}/zImage" \ "${BINARIES_DIR}/k...
shibajee/buildroot
board/raspberrypi/post-image.sh
Shell
mit
578
Raspberry Pi Intro ===== These instructions apply to all models of the Raspberry Pi: - the original models A and B, - the "enhanced" models A+ and B+, - the model B2 (aka Raspberry Pi 2) - the model B3 (aka Raspberry Pi 3). How to build it =============== Configure Buildroot ------------------- There are t...
shibajee/buildroot
board/raspberrypi/readme.txt
Text
mit
1,993
# Minimal SD card image for the Roseapple Pi # image boot.vfat { vfat { files = { "uEnv.txt", "uImage" } file kernel.dtb { image = "actduino_bubble_gum_sdboot_linux.dtb" } } size = 10M } image sdcard.img { hdimage { } partition s500-bootloader { in-partition-table = "no" image =...
shibajee/buildroot
board/roseapplepi/genimage.cfg
INI
mit
640
[PATCH] unbreak xhci-trace compilation When commit 84a99f6fc5d4 (xhci: add traces for debug messages in xhci_address_device) was backported to the owl tree as part of commit 5b2ea66f15396 (usb: add owl usb driver), the specific CFLAGS needed for xhci-trace.c were missed, causing build breakage: CC drivers/usb/...
shibajee/buildroot
board/roseapplepi/patches/linux/0001-unbreak-xhci-trace.patch
patch
mit
1,220
#!/bin/sh BOARD_DIR="$(dirname $0)" GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" cp "${BOARD_DIR}/uEnv.txt" "${BINARIES_DIR}" genimage \ --rootpath "${TARGET_DIR}" \ --tmppath "${GENIMAGE_TMP}" \ --inputpath "${BINARIE...
shibajee/buildroot
board/roseapplepi/post-image.sh
Shell
mit
402
# no ramdisk ramdisk_addr_r=- bootargs=clk_ignore_unused root=/dev/mmcblk0p2
shibajee/buildroot
board/roseapplepi/uEnv.txt
Text
mit
77
#!/bin/sh # Kernel is built without devpts support sed -i '/^devpts/d' ${TARGET_DIR}/etc/fstab # Kernel is built without network support rm -f ${TARGET_DIR}/etc/init.d/S40network rm -rf ${TARGET_DIR}/etc/network/
shibajee/buildroot
board/stmicroelectronics/stm32-post-build.sh
Shell
mit
215
#!/bin/bash OUTPUT_DIR=$1 if ! test -d "${OUTPUT_DIR}" ; then echo "ERROR: no output directory specified." echo "Usage: $0 OUTPUT_DIR" exit 1 fi ${OUTPUT_DIR}/host/usr/bin/openocd -f board/stm32f429discovery.cfg \ -c "init" \ -c "reset init" \ -c "flash probe 0" \ -c "flash info 0" \ -c "flash ...
shibajee/buildroot
board/stmicroelectronics/stm32f429-disco/flash.sh
Shell
mit
588
From ded9afa688184b3240a92c2b8f114c545a09bc3f Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sat, 12 Mar 2016 23:14:41 +0100 Subject: [PATCH] ARM: stm32f249-disco: don't force init= in /chosen/bootargs There is no reason to override the kernel's default init= value, as this...
shibajee/buildroot
board/stmicroelectronics/stm32f429-disco/patches/linux/0001-ARM-stm32f249-disco-don-t-force-init-in-chosen-boota.patch
patch
mit
1,176
STM32F429 Discovery =================== This tutorial describes how to use the predefined Buildroot configuration for the STM32F429 Discovery evaluation platform. Building -------- make stm32f429_disco_defconfig make Wire the UART ------------- Use a USB to TTL adapter, and connect: - RX to PA9 - TX to PA10...
shibajee/buildroot
board/stmicroelectronics/stm32f429-disco/readme.txt
Text
mit
617
#!/bin/bash OUTPUT_DIR=$1 if ! test -d "${OUTPUT_DIR}" ; then echo "ERROR: no output directory specified." echo "Usage: $0 OUTPUT_DIR" exit 1 fi ${OUTPUT_DIR}/host/usr/bin/openocd -f board/stm32f469discovery.cfg \ -c "init" \ -c "reset init" \ -c "flash probe 0" \ -c "flash info 0" \ -c "flash ...
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/flash.sh
Shell
mit
588
From 3b572676972f9bcf69695fd85a582c6622f7faa8 Mon Sep 17 00:00:00 2001 From: Lee Jones <lee.jones@linaro.org> Date: Tue, 16 Feb 2016 14:04:17 +0000 Subject: [PATCH] ARM: stm32: Identify a new board - STM32F469 Signed-off-by: Lee Jones <lee.jones@linaro.org> --- arch/arm/mach-stm32/board-dt.c | 1 + 1 file changed, 1 ...
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/patches/linux/0001-ARM-stm32-Identify-a-new-board-STM32F469.patch
patch
mit
652
From a08561ffdfb13986e2628296ccfd42f8a273b729 Mon Sep 17 00:00:00 2001 From: Lee Jones <lee.jones@linaro.org> Date: Tue, 16 Feb 2016 13:53:47 +0000 Subject: [PATCH] ARM: stm32: Supply a DTS file for the STM32F469 Discovery board It's pretty similar to the STM32F429, but there are some subtle changes required to boot ...
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/patches/linux/0002-ARM-stm32-Supply-a-DTS-file-for-the-STM32F469-Discov.patch
patch
mit
3,583
From 7d67f4be6e1b4d08126023c3902e3fc39488bbf9 Mon Sep 17 00:00:00 2001 From: Lee Jones <lee.jones@linaro.org> Date: Tue, 16 Feb 2016 13:56:13 +0000 Subject: [PATCH] ARM: configs: Add new config fragment to change RAM start point Rather than duplicate a defconfig for each difference between platforms, we can choose to...
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/patches/linux/0003-ARM-configs-Add-new-config-fragment-to-change-RAM-st.patch
patch
mit
953
From 26045588f462476cee356d15a24944d6c26befb4 Mon Sep 17 00:00:00 2001 From: Maxime Coquelin <mcoquelin.stm32@gmail.com> Date: Sat, 24 Oct 2015 00:13:38 +0200 Subject: [PATCH] tcl: add STM32F469 discovery board config Change-Id: Iad7ee06330b3259ea0ce0d174dfdade6785913eb Signed-off-by: Maxime Coquelin <mcoquelin.stm32@...
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/patches/openocd/0001-add-config.patch
patch
mit
1,146
From 3e219648c80a27f0519003f3b088cbb846e255d8 Mon Sep 17 00:00:00 2001 From: Maxime Coquelin <maxime.coquelin@st.com> Date: Sat, 24 Oct 2015 00:03:54 +0200 Subject: [PATCH] flash/nor/stm32f2x: Add STM32F469 part Change-Id: I4e13ceb0ba954dc2fea059ddeef10109be938c9c Signed-off-by: Maxime Coquelin <mcoquelin.stm32@gmail....
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/patches/openocd/0002-flash-nor.patch
patch
mit
1,069
STM32F469 Discovery =================== This tutorial describes how to use the predefined Buildroot configuration for the STM32F469 Discovery evaluation platform. Building -------- make stm32f469_disco_defconfig make Flashing -------- ./board/stmicroelectronics/stm32f469-disco/flash.sh output/ It will flash...
shibajee/buildroot
board/stmicroelectronics/stm32f469-disco/readme.txt
Text
mit
437
# /etc/inittab # # Copyright (C) 2001 Erik Andersen <andersen@codepoet.org> # # Note: BusyBox init doesn't support runlevels. The runlevels field is # completely ignored by BusyBox init. If you want runlevels, use # sysvinit. # # Format for each entry: <id>:<runlevels>:<action>:<process> # # id == tty to run on...
shibajee/buildroot
board/synopsys/axs10x/fs-overlay/etc/inittab
none
mit
1,107
CONFIG_SYSVIPC=y CONFIG_POSIX_MQUEUE=y CONFIG_NO_HZ=y CONFIG_HIGH_RES_TIMERS=y CONFIG_BSD_PROCESS_ACCT=y CONFIG_IKCONFIG=y CONFIG_IKCONFIG_PROC=y CONFIG_LOG_BUF_SHIFT=16 CONFIG_CGROUPS=y CONFIG_BLK_DEV_INITRD=y CONFIG_EMBEDDED=y CONFIG_SLAB=y CONFIG_PROFILING=y CONFIG_CC_STACKPROTECTOR_REGULAR=y CONFIG_MODULES=y CONFIG...
shibajee/buildroot
board/synopsys/vdk/linux-vdk-aarch64-defconfig
none
mit
3,239
Synopsys VDK Software Development Platform Intro ===== The Virtualizer Development Kit (VDK) Family for ARM Cortex Products consists of a set of virtual prototypes that provide a virtualizer for the ARM core variants. The VDK is a standalone package that runs on an host computer. Buildroot will generate the kernel i...
shibajee/buildroot
board/synopsys/vdk/readme.txt
Text
mit
1,496
# Minimal eMMC card image for the Technexion's i.MX6UL Pico board # # We mimic the .sdcard Freescale's image format for i.MX6UL: # * the eMMC must have 1 kB free space at the beginning, # * U-Boot is dumped as is, # * a FAT partition at offset 8 MB is containing zImage and dtbs, # * a single root filesystem partition i...
shibajee/buildroot
board/technexion/imx6ulpico/genimage.cfg
INI
mit
794
CONFIG_CFG80211_WEXT=y CONFIG_SMP=n
shibajee/buildroot
board/technexion/imx6ulpico/linux.fragment
fragment
mit
36
From 5a9a0986ab0041b53f55e2f4eaedabecb2ea1760 Mon Sep 17 00:00:00 2001 From: Vanessa Maegima <vanessa.maegima@nxp.com> Date: Mon, 1 Aug 2016 09:33:00 -0300 Subject: [PATCH v2] ARM: dts: imx6ul-pico-hobbit: Add Wifi support imx6ul-pico-hobbit has a bcm4339 wifi chip connected to usdhc2 port. Add support for the WL_REG...
shibajee/buildroot
board/technexion/imx6ulpico/patches/linux/0001-picowifi.patch
patch
mit
1,782
#!/usr/bin/env bash BOARD_DIR="$(dirname $0)" GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" genimage \ --rootpath "${TARGET_DIR}" \ --tmppath "${GENIMAGE_TMP}" \ --inputpath "${BINARIES_DIR}" \ --outputpath "${BINARIES_DIR}" \ --config "${GENIMAG...
shibajee/buildroot
board/technexion/imx6ulpico/post-image.sh
Shell
mit
328
***************************** Technexion i.MX6UL Pico board ***************************** This file documents the Buildroot support for the Technexion i.MX6UL Pico board. Build ===== First, configure Buildroot for the i.MX6UL Pico board: make imx6ulpico_defconfig Build all components: make You will find in o...
shibajee/buildroot
board/technexion/imx6ulpico/readme.txt
Text
mit
1,637
# Sample NVRAM for BCM94339 WLCSP with eTR,iPA, and eLNA. sromrev=11 boardrev=0x1100 boardtype=0x06c9 boardflags=0x10081401 boardflags2=0x00000000 boardflags3=0x08001188 #boardnum=57410 macaddr=00:90:4c:c5:12:38 ccode=0 regrev=0 antswitch=0 pdgain2g=7 pdgain5g=7 tworangetssi2g=0 tworangetssi5g=0 vendid=0x14e4 devid=0x4...
shibajee/buildroot
board/technexion/imx6ulpico/rootfs_overlay/lib/firmware/brcm/brcmfmac4339-sdio.txt
Text
mit
2,503
image boot.vfat { vfat { files = { "zImage", "imx51-ts4800.dtb" } } size = 8M } image sdcard.img { hdimage { } partition mbrboot { in-partition-table = "no" i...
shibajee/buildroot
board/technologic/ts4800/genimage.cfg
INI
mit
773
CONFIG_TOUCHSCREEN_TS4800=y CONFIG_TS4800_WATCHDOG=y CONFIG_TS4800_IRQ=y
shibajee/buildroot
board/technologic/ts4800/linux.fragment
fragment
mit
73
#!/bin/bash # # Copyright (C) 2015 Savoir-faire Linux # Post image generation script. BOARD_DIR="$(dirname $0)" GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP=${BUILD_DIR}/.genimage_tmp rm -rf ${GENIMAGE_TMP} ${HOST_DIR}/usr/bin/genimage \ --config ${GENIMAGE_CFG} \ --rootpath ${TARGET_DIR} \ ...
shibajee/buildroot
board/technologic/ts4800/post-image.sh
Shell
mit
436
Technologic Systems TS-4800 =========================== This document explains how to set up a basic Buildroot system for the Technologic Systems TS-4800 System on Module. The TS-4800 is a TS-SOCKET macrocontroller board based on the Freescale i.MX515 ARM Cortex-A8 CPU running at 800MHz. The TS-4800 features 10/100 E...
shibajee/buildroot
board/technologic/ts4800/readme.txt
Text
mit
1,805
SERIAL 1 115200 CONSOLE 0 DEFAULT linux LABEL linux SAY Now booting the kernel from SYSLINUX... LINUX /boot/bzImage APPEND console=ttyS1,115200n8 root=/dev/sda1 rootfstype=ext4 rw
shibajee/buildroot
board/technologic/ts5x00/fs-overlay/boot/syslinux/syslinux.cfg
INI
mit
188
CONFIG_PARTITION_ADVANCED=y # CONFIG_X86_EXTENDED_PLATFORM is not set CONFIG_MELAN=y CONFIG_X86_GENERIC=y CONFIG_X86_REBOOTFIXUPS=y CONFIG_NOHIGHMEM=y # CONFIG_COMPACTION is not set # CONFIG_BOUNCE is not set # CONFIG_CROSS_MEMORY_ATTACH is not set # CONFIG_RELOCATABLE is not set # CONFIG_SUSPEND is not set # CONFIG_AC...
shibajee/buildroot
board/technologic/ts5x00/linux-3.17.config
INI
mit
3,319
Technologic Systems TS-5x00 SBCs ================================ This document explains how to set up a basic Buildroot system for the Technologic Systems TS-5x00 serie of x86-based Single Board Computers. TS-5x00 Single Board Computers are based on the AMD Elan520 processor. For more information please have a look ...
shibajee/buildroot
board/technologic/ts5x00/readme.txt
Text
mit
2,013
From b5e57a9f158a293b1151638336478af8a5aad0f0 Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Date: Wed, 14 Nov 2012 19:16:35 +0800 Subject: [PATCH 1/5] watchdog: add keep alive support this will allow to ping the watchdog via poller Signed-off-by: Jean-Christophe PLAGNIOL-VILL...
shibajee/buildroot
board/telit/evk-pro3/barebox-2013.04.0-0001-watchdog-add-keep-alive-support.patch
patch
mit
2,210
From e1d54ffb987c346c45c20968be34c50c62a91c07 Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Date: Wed, 14 Nov 2012 19:17:47 +0800 Subject: [PATCH 2/5] watchdog: add at91sam9 watchdog support with keep alive support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcr...
shibajee/buildroot
board/telit/evk-pro3/barebox-2013.04.0-0002-watchdog-add-at91sam9-watchdog-support.patch
patch
mit
6,760
From 3338bcb05479f1149420d4a0ea3904cb9e42eef5 Mon Sep 17 00:00:00 2001 From: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Date: Wed, 14 Nov 2012 19:18:22 +0800 Subject: [PATCH 3/5] at91sam9260/9g20: add wathdog support Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> --- arch/arm/ma...
shibajee/buildroot
board/telit/evk-pro3/barebox-2013.04.0-0003-at91sam9260-9g20-add-wathdog-support.patch
patch
mit
1,244
From e03bf0e3ad24898019b89eb9a6935d159c60268f Mon Sep 17 00:00:00 2001 From: Fabio Porcedda <fabio.porcedda@gmail.com> Date: Thu, 17 Jan 2013 11:32:35 +0100 Subject: [PATCH 4/5] at91sam9260/9g20: fix wathdog support Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> --- arch/arm/mach-at91/at91sam9260_devices.c ...
shibajee/buildroot
board/telit/evk-pro3/barebox-2013.04.0-0004-at91sam9260-9g20-fix-wathdog-support.patch
patch
mit
934
From 98c96ea36a4b3bb9b92dde849db5e8d6918b5168 Mon Sep 17 00:00:00 2001 From: Fabio Porcedda <fabio.porcedda@gmail.com> Date: Thu, 17 Jan 2013 11:32:59 +0100 Subject: [PATCH 5/5] watchdog: enable for evk-pro3 Signed-off-by: Fabio Porcedda <fabio.porcedda@gmail.com> --- arch/arm/configs/telit_evk_pro3_defconfig | 2 ++ ...
shibajee/buildroot
board/telit/evk-pro3/barebox-2013.04.0-0005-watchdog-enable-for-evk-pro3.patch
patch
mit
789
CONFIG_EXPERIMENTAL=y # CONFIG_LOCALVERSION_AUTO is not set CONFIG_KERNEL_LZO=y # CONFIG_SWAP is not set CONFIG_SYSVIPC=y CONFIG_LOG_BUF_SHIFT=14 CONFIG_BLK_DEV_INITRD=y CONFIG_CC_OPTIMIZE_FOR_SIZE=y CONFIG_KALLSYMS_ALL=y CONFIG_EMBEDDED=y CONFIG_SLAB=y CONFIG_MODULES=y CONFIG_MODULE_UNLOAD=y # CONFIG_LBDAF is not set ...
shibajee/buildroot
board/telit/evk-pro3/linux-3.9.config
INI
mit
5,063
Buildroot board support for Telit EVK-PRO3 with Telit GE863-PRO3 Official site: http://www.telit.com/en/products.php?p_id=3&p_ac=show&p=10 Build images: make telit_evk_pro3_defconfig make images built: - output/images/barebox.bin - output/images/zImage - output/images/rootfs.ubi Flash built image...
shibajee/buildroot
board/telit/evk-pro3/readme.txt
Text
mit
857
# Minimal SD card image for the Toradex Apalis i.MX6 COM # # It does not need a boot section for a bootloader since it is booted # from its internal flash memory (eMMC). image sdcard.img { hdimage { } partition rootfs { partition-type = 0x83 image = "rootfs.ext2" size = 512M } }
shibajee/buildroot
board/toradex/apalis-imx6/genimage.cfg
INI
mit
302
#!/usr/bin/env bash GENIMAGE_CFG="$(dirname $0)/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" # copy the uEnv.txt to the output/images directory cp board/toradex/apalis-imx6/uEnv.txt $BINARIES_DIR/uEnv.txt rm -rf "${GENIMAGE_TMP}" # generate rootfs.img genimage \ --rootpath "${TARGET_DIR}" \ --tmppath ...
shibajee/buildroot
board/toradex/apalis-imx6/post-image.sh
Shell
mit
460
Toradex Apalis i.MX6 Computer on Module Intro ===== The Apalis iMX6 is a small form-factor Computer on Module that comes in both quad core and dual core versions based on Freescale i.MX6Q and Freescale i.MX6D SoCs respectively. The Cortex A9 quad core and dual core CPU peaks at 1 GHz for commercial temperature varian...
shibajee/buildroot
board/toradex/apalis-imx6/readme.txt
Text
mit
1,720
boot_file=zImage fdt_file=imx6q-apalis_v1_0-ixora.dtb sdargs=ip=off root=/dev/mmcblk1p1 rw,noatime rootfstype=ext4 rootwait sddtbload=ext2load mmc 2:1 ${fdt_addr_r} boot/${fdt_file} sdkernelload=ext2load mmc 2:1 ${kernel_addr_r} boot/${boot_file} bootcmd=run setup; setenv bootargs ${defargs} ${sdargs} ${setupargs} ${vi...
shibajee/buildroot
board/toradex/apalis-imx6/uEnv.txt
Text
mit
430
# Minimal SD card image for the VIA VAB-820 / AMOS-820 # # The SD card must have at least 1 MB free at the beginning. # U-Boot is added before the filesystem partitions as is. # A FAT boot partition and an Ext4 root filesystem partition are required. image boot.vfat { vfat { files = { "imx6q-vab820.dtb", ...
shibajee/buildroot
board/via/imx6_vab820/genimage.cfg
INI
mit
685
#!/bin/bash BOARD_DIR="$(dirname $0)" GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" genimage \ --rootpath "${TARGET_DIR}" \ --tmppath "${GENIMAGE_TMP}" \ --inputpath "${BINARIES_DIR}" \ --outputpath "${BINARIES_DIR}" \ --config "${GENIMAGE_CFG}" ...
shibajee/buildroot
board/via/imx6_vab820/post-image.sh
Shell
mit
342
VIA VAB-820/AMOS-820 ==================== This file documents the Buildroot support for the VIA VAB-820 board and VIA AMOS-820 system, which are built around a Freescale i.MX6 Quad/Dual SoC. The kernel and u-boot is based on the official VIA BSP, which is in turn based on the Freescale Linux 3.10.17_1.0.0_ga BSP. Co...
shibajee/buildroot
board/via/imx6_vab820/readme.txt
Text
mit
3,942
# Minimal SD card image for the Wandboard # # The SD card must have at least 1 MB free at the beginning. # U-Boot and its environment are dumped as is. # A single root filesystem partition is required (Ext2 in this case). # # For details about the layout, see: # http://wiki.wandboard.org/index.php/Boot-process image s...
shibajee/buildroot
board/wandboard/genimage.cfg
INI
mit
757
#!/usr/bin/env bash BOARD_DIR="$(dirname $0)" GENIMAGE_CFG="${BOARD_DIR}/genimage.cfg" GENIMAGE_TMP="${BUILD_DIR}/genimage.tmp" rm -rf "${GENIMAGE_TMP}" genimage \ --rootpath "${TARGET_DIR}" \ --tmppath "${GENIMAGE_TMP}" \ --inputpath "${BINARIES_DIR}" \ --outputpath "${BINARIES_DIR}" \ --config "${GENIMAG...
shibajee/buildroot
board/wandboard/post-image.sh
Shell
mit
350
Wandboard http://www.wandboard.org To build a minimal support for this board: $ make wandboard_defconfig $ make Buildroot prepares a bootable "sdcard.img" image in the output/images/ directory, ready to be dumped on an SD card. For details about the medium image layout, see the definition in board/wandboar...
shibajee/buildroot
board/wandboard/readme.txt
Text
mit
336
baudrate=115200 boot_fdt=try bootcmd=run findfdt; mmc dev ${mmcdev}; if mmc rescan; then if run loadbootscript; then run bootscript; else if run loadimage; then run mmcboot; else run netboot; fi; fi; else run netboot; fi bootdelay=3 bootscript=echo Running bootscript from mmc ...; source console=ttymxc0 ethact=FEC etha...
shibajee/buildroot
board/wandboard/uboot-env.txt
Text
mit
2,403
This is the Buildroot support for Zynq boards. Zynq boards are available from Xilinx and some third party vendors, but the build procedure is very similar. Currently, three boards are natively supported by Buildroot: - Xilinx ZC706 board (zynq_zc706_defconfig) - Avnet ZedBoard (zynq_zed_defconfig) - Avnet MicroZed...
shibajee/buildroot
board/zynq/readme.txt
Text
mit
2,124
menu "Bootloaders" source "boot/afboot-stm32/Config.in" source "boot/at91bootstrap/Config.in" source "boot/at91bootstrap3/Config.in" source "boot/at91dataflashboot/Config.in" source "boot/barebox/Config.in" source "boot/boot-wrapper-aarch64/Config.in" source "boot/grub/Config.in" source "boot/grub2/Config.in" source "...
shibajee/buildroot
boot/Config.in
in
mit
601
From 0d581abe6620ac69adec321b94390e009802f36a Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Date: Sun, 13 Mar 2016 14:32:33 +0100 Subject: [PATCH] Use ld instead of gcc for linking Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- Makefile | 11 ++++++---...
shibajee/buildroot
boot/afboot-stm32/0001-Use-ld-instead-of-gcc-for-linking.patch
patch
mit
2,365
config BR2_TARGET_AFBOOT_STM32 bool "afboot-stm32" depends on BR2_arm help afboot-stm32 is a very small bootloader for STM32 platforms https://github.com/mcoquelin-stm32/afboot-stm32
shibajee/buildroot
boot/afboot-stm32/Config.in
in
mit
193
# Locally calculated sha256 dbd715c8b99f7d266f74a04707a4dac76b75b31321f24dee5256a6348260530c afboot-stm32-v0.1.tar.gz
shibajee/buildroot
boot/afboot-stm32/afboot-stm32.hash
hash
mit
119
################################################################################ # # afboot-stm32 # ################################################################################ AFBOOT_STM32_VERSION = v0.1 AFBOOT_STM32_SITE = $(call github,mcoquelin-stm32,afboot-stm32,$(AFBOOT_STM32_VERSION)) define AFBOOT_STM32_B...
shibajee/buildroot
boot/afboot-stm32/afboot-stm32.mk
mk
mit
535
config BR2_TARGET_AT91BOOTSTRAP depends on BR2_arm926t bool "AT91 Bootstrap" help AT91Bootstrap is a first level bootloader for the Atmel AT91 devices. It integrates algorithms for: - Device initialization such as clock configuration, PIO settings... - Peripheral drivers such as PIO, PMC or SDRAMC... ...
shibajee/buildroot
boot/at91bootstrap/Config.in
in
mit
1,285
When using an EABI toolchain, the default compilation generates references to __aeabi_unwind_cpp_pr0(). This symbol is defined in libgcc, but we don't want to use it for a bootloader. Therefore, this patch passes some additional CFLAGS to disable the generation of such references by avoiding unwind tables, exceptions,...
shibajee/buildroot
boot/at91bootstrap/at91bootstrap-1.16-eabi-fix.patch
patch
mit
16,803
From b783d1f9bf985c0981e755bd2c13e091e9d6837f Mon Sep 17 00:00:00 2001 From: Gregory Hermant <gregory.hermant@calao-systems.com> Date: Tue, 6 Nov 2012 09:38:50 +0100 Subject: [PATCH] at91bootstrap: fix overlap linker issue The linker script of the at91bootstrap package has to be modified when built from gcc-4.6.x vers...
shibajee/buildroot
boot/at91bootstrap/at91bootstrap-1.16-gcc-4.6.x-ldscript-fix.patch
patch
mit
873
From d4e4a1aad559e35d84b445d1379be94ad036984e Mon Sep 17 00:00:00 2001 From: Alexandre Belloni <alexandre.belloni@piout.net> Date: Thu, 25 Oct 2012 22:57:14 +0200 Subject: [PATCH] u-boot relocation fix Every AT91SAM plaforms were broken between 2010.12 and 2011.03 because of the relocation changes. We have to get JUM...
shibajee/buildroot
boot/at91bootstrap/at91bootstrap-1.16-u-boot-relocation-fix.patch
patch
mit
14,079
# locally computed sha256 d66192a274247f4baa39fa932eadf903d7add55641d89d30402f967c4f2282a5 AT91Bootstrap1.16.zip
shibajee/buildroot
boot/at91bootstrap/at91bootstrap.hash
hash
mit
115
################################################################################ # # at91bootstrap # ################################################################################ AT91BOOTSTRAP_VERSION = 1.16 AT91BOOTSTRAP_SITE = ftp://www.at91.com/pub/at91bootstrap AT91BOOTSTRAP_SOURCE = AT91Bootstrap$(AT91BOOTSTRA...
shibajee/buildroot
boot/at91bootstrap/at91bootstrap.mk
mk
mit
1,655
config BR2_TARGET_AT91BOOTSTRAP3 depends on BR2_arm926t || BR2_cortex_a5 bool "AT91 Bootstrap 3" help AT91Bootstrap is a first level bootloader for the Atmel AT91 devices. It integrates algorithms for: - Device initialization such as clock configuration, PIO settings... - Peripheral drivers such as PIO, ...
shibajee/buildroot
boot/at91bootstrap3/Config.in
in
mit
2,398
# Locally calculated sha256 ae7bb3f8e631f5216f05fd4650b37f2e76d88d0b893bd680f4f398f33b8f3470 at91bootstrap3-v3.8.tar.gz
shibajee/buildroot
boot/at91bootstrap3/at91bootstrap3.hash
hash
mit
121
################################################################################ # # at91bootstrap3 # ################################################################################ AT91BOOTSTRAP3_VERSION = $(call qstrip,$(BR2_TARGET_AT91BOOTSTRAP3_VERSION)) ifeq ($(BR2_TARGET_AT91BOOTSTRAP3_CUSTOM_GIT),y) AT91BOOTS...
shibajee/buildroot
boot/at91bootstrap3/at91bootstrap3.mk
mk
mit
2,933
config BR2_TARGET_AT91DATAFLASHBOOT depends on BR2_arm926t bool "AT91 DataFlashBoot"
shibajee/buildroot
boot/at91dataflashboot/Config.in
in
mit
87
Disable the automatic installation of at91dataflashboot since it tries to install things to /tftpboot, which is not possible when not building as root. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) Index: at91dataflashboot-...
shibajee/buildroot
boot/at91dataflashboot/at91dataflashboot-1.05-do-not-install.patch
patch
mit
732
Get at91dataflashboot to build with EABI toolchains, by providing the __aeabi_uidiv and __aeabi_uidivmod symbols. The code is based on U-Boot's code. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> --- _udivsi3.S | 14 ++++++++++++++ 1 file changed, 14 insertions(+) Index: DataflashBoot-1.05/...
shibajee/buildroot
boot/at91dataflashboot/at91dataflashboot-1.05-eabi-fixes.patch
patch
mit
1,160
# locally computed sha256 2cfeb6a9236e1a743c8010f05e504dbc92169ef42d9a6cf7948954a577bfc386 DataflashBoot-1.05.tar.bz2
shibajee/buildroot
boot/at91dataflashboot/at91dataflashboot.hash
hash
mit
120
################################################################################ # # at91dataflashboot # ################################################################################ AT91DATAFLASHBOOT_VERSION = 1.05 AT91DATAFLASHBOOT_SOURCE = DataflashBoot-$(AT91DATAFLASHBOOT_VERSION).tar.bz2 AT91DATAFLASHBOOT_SITE...
shibajee/buildroot
boot/at91dataflashboot/at91dataflashboot.mk
mk
mit
675
config BR2_TARGET_BAREBOX bool "Barebox" help The Barebox bootloader, formerly known as U-Boot v2. http://www.barebox.org if BR2_TARGET_BAREBOX choice prompt "version" help Select the specific Barebox version you want to use config BR2_TARGET_BAREBOX_LATEST_VERSION bool "2016.06.0" config BR2_TARGET_B...
shibajee/buildroot
boot/barebox/Config.in
in
mit
2,088
choice prompt "Barebox configuration" default BR2_TARGET_BAREBOX_AUX_USE_DEFCONFIG config BR2_TARGET_BAREBOX_AUX_USE_DEFCONFIG bool "Using a defconfig" config BR2_TARGET_BAREBOX_AUX_USE_CUSTOM_CONFIG bool "Using a custom config file" endchoice config BR2_TARGET_BAREBOX_AUX_BOARD_DEFCONFIG string "board defconf...
shibajee/buildroot
boot/barebox/barebox-aux/Config.in
in
mit
2,632
################################################################################ # # barebox-aux # ################################################################################ # Instantiate the auxiliary barebox package $(eval $(barebox-package))
shibajee/buildroot
boot/barebox/barebox-aux/barebox-aux.mk
mk
mit
252
# http://www.barebox.org/download/barebox-2016.06.0.tar.bz2.md5 md5 7dac834e637db66e624bf058e9310212 barebox-2016.06.0.tar.bz2 # Locally calculated sha256 a214167c55bf691f686397379e8b9557a1d597e56b7c1bf9607b478a1c4c597e barebox-2016.06.0.tar.bz2
shibajee/buildroot
boot/barebox/barebox.hash
hash
mit
247
################################################################################ # # barebox # ################################################################################ ################################################################################ # inner-barebox-package -- generates the KConfig logic and mak...
shibajee/buildroot
boot/barebox/barebox.mk
mk
mit
5,236
choice prompt "Barebox configuration" default BR2_TARGET_BAREBOX_USE_DEFCONFIG config BR2_TARGET_BAREBOX_USE_DEFCONFIG bool "Using a defconfig" config BR2_TARGET_BAREBOX_USE_CUSTOM_CONFIG bool "Using a custom config file" endchoice config BR2_TARGET_BAREBOX_BOARD_DEFCONFIG string "board defconfig" depends on ...
shibajee/buildroot
boot/barebox/barebox/Config.in
in
mit
2,697
################################################################################ # # barebox # ################################################################################ define BAREBOX_HELP_CMDS @echo ' barebox-menuconfig - Run barebox menuconfig' @echo ' barebox-savedefconfig - Run barebox savedefconfi...
shibajee/buildroot
boot/barebox/barebox/barebox.mk
mk
mit
391
comment "boot-wrapper-aarch64 needs a Linux kernel to be built" depends on BR2_aarch64 depends on !BR2_LINUX_KERNEL config BR2_TARGET_BOOT_WRAPPER_AARCH64 bool "boot-wrapper-aarch64" depends on BR2_aarch64 depends on BR2_LINUX_KERNEL help The boot-wrapper-aarch64 is a small bootloader that makes it possibl...
shibajee/buildroot
boot/boot-wrapper-aarch64/Config.in
in
mit
1,111
################################################################################ # # boot-wrapper-aarch64 # ################################################################################ BOOT_WRAPPER_AARCH64_VERSION = 4266507a84f8c06452109d38e0350d4759740694 BOOT_WRAPPER_AARCH64_SITE = git://git.kernel.org/pub/scm/l...
shibajee/buildroot
boot/boot-wrapper-aarch64/boot-wrapper-aarch64.mk
mk
mit
1,929
include $(sort $(wildcard boot/*/*.mk))
shibajee/buildroot
boot/common.mk
mk
mit
40
config BR2_TARGET_GRUB bool "grub" depends on BR2_i386 || BR2_x86_64 select BR2_HOSTARCH_NEEDS_IA32_COMPILER help The GRand Unified Bootloader for x86 systems. Some notes on creating a disk image with Grub installed: 1. Create an empty disk image dd if=/dev/zero of=disk.img bs=1M count=32 2...
shibajee/buildroot
boot/grub/Config.in
in
mit
4,408
Index: b/stage2/disk_io.c =================================================================== --- a/stage2/disk_io.c +++ b/stage2/disk_io.c @@ -365,7 +365,7 @@ int devwrite (unsigned int sector, int sector_count, char *buf) { -#if defined(GRUB_UTIL) && defined(__linux__) +#if defined(GRUB_UTIL) && defined(__linux__)...
shibajee/buildroot
boot/grub/grub.200-fix_mbr_handling.patch
patch
mit
448
Index: b/grub/asmstub.c =================================================================== --- a/grub/asmstub.c +++ b/grub/asmstub.c @@ -18,10 +18,13 @@ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ +#include <features.h> +#if !defined __UCLIBC__ || (defined __UCLIBC__ && defined __UCLIBC_HAS_L...
shibajee/buildroot
boot/grub/grub.300-honor_UCLIBC_HAS_LFS.patch
patch
mit
1,088
Submitted By: Jim Gifford (patches at jg555 dot com) Date: 2005-08-31 Initial Package Version: 0.97 Origin: OpenSolaris, Joe Ciccone, Jim Gifford Upstream Status: N/A Description: Adds support for Forcedeth and other NIC's Fixes for GCC 4.x Removal of bad network drivers Index: b/configure ===============...
shibajee/buildroot
boot/grub/grub.400-nic_update2.patch
patch
mit
1,596,761
# From http://snapshot.debian.org/archive/debian/20141023T043132Z/pool/main/g/grub/grub_0.97-68.dsc sha256 4e1d15d12dbd3e9208111d6b806ad5a9857ca8850c47877d36575b904559260b grub_0.97.orig.tar.gz sha256 a453489cf1fec5d311a0b76dea8c8b2ff67eee1a3eba6c06ab80864494d9773c grub_0.97-68.diff.gz
shibajee/buildroot
boot/grub/grub.hash
hash
mit
287
################################################################################ # # grub # ################################################################################ GRUB_VERSION = 0.97 GRUB_SOURCE = grub_$(GRUB_VERSION).orig.tar.gz GRUB_PATCH = grub_$(GRUB_VERSION)-68.diff.gz GRUB_SITE = http://snapshot.debian...
shibajee/buildroot
boot/grub/grub.mk
mk
mit
4,586
default 0 timeout 10 # Used when no splashimage is used color cyan/blue white/blue # Gets enabled/disabled depending on Grub support for splashimage splashimage (hd0,0)/boot/grub/splash.xpm.gz # Used when a splashimage is enabled foreground 000000 background cccccc title Buildroot root (hd0,0) kernel /boot/...
shibajee/buildroot
boot/grub/menu.lst
lst
mit
355
ISO C11 removes the specification of gets() from the C language, eglibc 2.16+ removed it Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Upstream-Status: Pending Index: grub-1.99/grub-core/gnulib/stdio.in.h ============================================...
shibajee/buildroot
boot/grub2/0001-remove-gets.patch
patch
mit
878
From f30c692c1f9ef0e93bee2b408a24baa017f1ca9d Mon Sep 17 00:00:00 2001 From: Vladimir Serbinenko <phcoder@gmail.com> Date: Thu, 7 Nov 2013 01:01:47 +0100 Subject: [PATCH] * grub-core/gettext/gettext.c (main_context), (secondary_context): Define after defining type and not before. [Thomas: backport from upstream com...
shibajee/buildroot
boot/grub2/0002-grub-core-gettext-gettext.c-main_context-secondary_c.patch
patch
mit
1,283
config BR2_TARGET_GRUB2 bool "grub2" depends on BR2_i386 || BR2_x86_64 help GNU GRUB is a Multiboot boot loader. It was derived from GRUB, the GRand Unified Bootloader, which was originally designed and implemented by Erich Stefan Boleyn. GRUB 2 has replaced what was formerly known as GRUB (i.e. version ...
shibajee/buildroot
boot/grub2/Config.in
in
mit
5,441
set default="0" set timeout="5" menuentry "Buildroot" { linux /boot/bzImage root=/dev/sda1 rootwait console=tty1 }
shibajee/buildroot
boot/grub2/grub.cfg
INI
mit
117
# Locally calculated after checking pgp signature sha256 784ec38e7edc32239ad75b8e66df04dc8bfb26d88681bc9f627133a6eb85c458 grub-2.00.tar.xz
shibajee/buildroot
boot/grub2/grub2.hash
hash
mit
139
################################################################################ # # grub2 # ################################################################################ GRUB2_VERSION = 2.00 GRUB2_SITE = $(BR2_GNU_MIRROR)/grub GRUB2_SOURCE = grub-$(GRUB2_VERSION).tar.xz GRUB2_LICENSE = GPLv3+ GRUB2_LICENSE_FILES =...
shibajee/buildroot
boot/grub2/grub2.mk
mk
mit
3,629
config BR2_TARGET_GUMMIBOOT bool "gummiboot" depends on BR2_i386 || BR2_x86_64 select BR2_PACKAGE_GNU_EFI select BR2_PACKAGE_UTIL_LINUX select BR2_PACKAGE_UTIL_LINUX_LIBBLKID depends on BR2_USE_WCHAR # util-linux help gummiboot is a simple UEFI boot manager which executes configured EFI images. The default...
shibajee/buildroot
boot/gummiboot/Config.in
in
mit
1,037
title Buildroot version 1 linux /bzImage options console=ttyS0 root=/dev/sda2
shibajee/buildroot
boot/gummiboot/buildroot.conf
INI
mit
78
################################################################################ # # gummiboot # ################################################################################ GUMMIBOOT_SITE = http://cgit.freedesktop.org/gummiboot GUMMIBOOT_SITE_METHOD = git GUMMIBOOT_VERSION = 43 GUMMIBOOT_LICENSE = LGPLv2.1+ GUMMI...
shibajee/buildroot
boot/gummiboot/gummiboot.mk
mk
mit
1,372