]> Git Repo - buildroot-mgba.git/commitdiff
configs/pandaboard_defconfig: drop defconfig
authorPeter Korsgaard <[email protected]>
Mon, 2 Sep 2024 09:44:04 +0000 (11:44 +0200)
committerYann E. MORIN <[email protected]>
Mon, 2 Sep 2024 15:32:06 +0000 (17:32 +0200)
The defconfig has failed to build since May with the change to GCC 13.x,
E.G.:

https://gitlab.com/buildroot.org/buildroot/-/jobs/6865597768

I no longer have access to a pandaboard.  Pandaboard/omap4 support has
recently been dropped from u-boot:
https://lists.denx.de/pipermail/u-boot/2024-July/558846.html

And (part of) the kernel support is also getting removed:
https://patchwork.kernel.org/project/linux-media/patch/815a789d-85a5-44a1-8b9c-429ac0101e3f@xs4all.nl/

So drop the defconfig here as well.

Signed-off-by: Peter Korsgaard <[email protected]>
Signed-off-by: Yann E. MORIN <[email protected]>
.checkpackageignore
DEVELOPERS
board/pandaboard/genimage.cfg [deleted file]
board/pandaboard/readme.txt [deleted file]
configs/pandaboard_defconfig [deleted file]

index 4cfc202153c706bceba65bceb77b8f53004d843e..96358d0d6cf50d929a02814a283bc1a280f7e0d7 100644 (file)
@@ -221,7 +221,6 @@ configs/orangepi_zero3_defconfig lib_defconfig.ForceCheckHash
 configs/orangepi_zero_defconfig lib_defconfig.ForceCheckHash
 configs/orangepi_zero_plus2_defconfig lib_defconfig.ForceCheckHash
 configs/orangepi_zero_plus_defconfig lib_defconfig.ForceCheckHash
-configs/pandaboard_defconfig lib_defconfig.ForceCheckHash
 configs/pc_x86_64_bios_defconfig lib_defconfig.ForceCheckHash
 configs/pc_x86_64_efi_defconfig lib_defconfig.ForceCheckHash
 configs/pcengines_apu2_defconfig lib_defconfig.ForceCheckHash
index 0b590f0ec20c0c6ecc74b7209edff9c53a356f83..59f3b0320244b8aebebc109d949df976c21b487c 100644 (file)
@@ -2553,7 +2553,6 @@ F:        board/librecomputer/lafrite/
 F:     board/nexbox/a95x/
 F:     board/openblocks/a6/
 F:     board/orangepi/
-F:     board/pandaboard/
 F:     board/roseapplepi/
 F:     board/visionfive/
 F:     boot/shim/
@@ -2566,7 +2565,6 @@ F:        configs/nezha_defconfig
 F:     configs/openblocks_a6_defconfig
 F:     configs/orangepi_pc_defconfig
 F:     configs/orangepi_r1_defconfig
-F:     configs/pandaboard_defconfig
 F:     configs/roseapplepi_defconfig
 F:     configs/sheevaplug_defconfig
 F:     configs/visionfive_defconfig
diff --git a/board/pandaboard/genimage.cfg b/board/pandaboard/genimage.cfg
deleted file mode 100644 (file)
index dfe3882..0000000
+++ /dev/null
@@ -1,27 +0,0 @@
-image boot.vfat {
-       vfat {
-               files = {
-                       "MLO",
-                       "u-boot.img"
-               }
-       }
-
-       size = 8M
-}
-
-image sdcard.img {
-       hdimage {
-       }
-
-       partition boot {
-               partition-type = 0xC
-               bootable = "true"
-               image = "boot.vfat"
-       }
-
-       partition rootfs {
-               partition-type = 0x83
-               image = "rootfs.ext4"
-               size = 512M
-       }
-}
diff --git a/board/pandaboard/readme.txt b/board/pandaboard/readme.txt
deleted file mode 100644 (file)
index 80a20c2..0000000
+++ /dev/null
@@ -1,46 +0,0 @@
-Pandaboard
-==========
-
-This file documents the Buildroot support for the Pandaboard, a
-low-power, low-cost single-board computer development platform based
-on the Texas Instruments OMAP4 system on a chip (SoC).
-
-Configuring and building Buildroot
-----------------------------------
-
-Start from the defconfig:
-
-  $ make pandaboard_defconfig
-
-You can edit build options the usual way:
-
-  $ make menuconfig
-
-When you are happy with the setup, run:
-
-  $ make
-
-The result of the build with the default settings should be these files:
-
-  output/images
-  +-- MLO
-  +-- omap4-panda-a4.dtb
-  +-- omap4-panda.dtb
-  +-- omap4-panda-es.dtb
-  +-- rootfs.ext4
-  +-- sdcard.img
-  +-- u-boot.img
-  +-- zImage
-
-How to write the SD card
-------------------------
-
-Once the build process is finished you will have an image called "sdcard.img"
-in the output/images/ directory.
-
-Copy the bootable "sdcard.img" onto an SD card with "dd":
-
-  $ sudo dd if=output/images/sdcard.img of=/dev/sdX
-
-Where /dev/sdX is the device node of your SD card (may be /dev/mmcblkX
-instead depending on setup).
diff --git a/configs/pandaboard_defconfig b/configs/pandaboard_defconfig
deleted file mode 100644 (file)
index 376ecfe..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Architecture
-BR2_arm=y
-BR2_cortex_a9=y
-BR2_ARM_ENABLE_NEON=y
-BR2_ARM_ENABLE_VFP=y
-BR2_ARM_FPU_VFPV3=y
-
-# Linux headers same as kernel, a 5.12 series
-BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_5_12=y
-
-# System
-BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y
-BR2_TARGET_GENERIC_GETTY_PORT="ttyS2"
-BR2_SYSTEM_DHCP="eth0"
-
-# Image
-BR2_ROOTFS_POST_IMAGE_SCRIPT="support/scripts/genimage.sh"
-BR2_ROOTFS_POST_SCRIPT_ARGS="-c board/pandaboard/genimage.cfg"
-
-# Kernel
-BR2_LINUX_KERNEL=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION=y
-BR2_LINUX_KERNEL_CUSTOM_VERSION_VALUE="5.12.2"
-BR2_LINUX_KERNEL_DEFCONFIG="omap2plus"
-BR2_LINUX_KERNEL_DTS_SUPPORT=y
-BR2_LINUX_KERNEL_INTREE_DTS_NAME="omap4-panda-es omap4-panda omap4-panda-a4"
-BR2_LINUX_KERNEL_INSTALL_TARGET=y
-BR2_LINUX_KERNEL_NEEDS_HOST_OPENSSL=y
-
-# Filesystem
-BR2_TARGET_ROOTFS_EXT2=y
-BR2_TARGET_ROOTFS_EXT2_4=y
-# BR2_TARGET_ROOTFS_TAR is not set
-
-# Bootloader
-BR2_TARGET_UBOOT=y
-BR2_TARGET_UBOOT_BUILD_SYSTEM_KCONFIG=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION=y
-BR2_TARGET_UBOOT_CUSTOM_VERSION_VALUE="2021.04"
-BR2_TARGET_UBOOT_BOARD_DEFCONFIG="omap4_panda"
-BR2_TARGET_UBOOT_FORMAT_IMG=y
-BR2_TARGET_UBOOT_SPL=y
-BR2_TARGET_UBOOT_SPL_NAME="MLO"
-
-# Required tools to create the SD card image
-BR2_PACKAGE_HOST_DOSFSTOOLS=y
-BR2_PACKAGE_HOST_GENIMAGE=y
-BR2_PACKAGE_HOST_MTOOLS=y
This page took 0.041204 seconds and 4 git commands to generate.