From: Thomas Petazzoni via buildroot <buildroot@buildroot.org>
To: buildroot@buildroot.org
Cc: Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Suniel Mahesh <sunil@amarulasolutions.com>
Subject: [Buildroot] [PATCH 1/3] configs/roc_pc_rk3399: remove defconfig
Date: Wed, 2 Nov 2022 21:18:55 +0100 [thread overview]
Message-ID: <20221102201858.555294-2-thomas.petazzoni@bootlin.com> (raw)
In-Reply-To: <20221102201858.555294-1-thomas.petazzoni@bootlin.com>
This defconfig has been failing to build for several months, with
nobody stepping up to fix it. It's time to drop it.
See
https://lore.kernel.org/buildroot/20220806224338.0159e15c@windsurf/
for a notification on August 6, 2022 about the issues with this
defconfig.
Fixes:
https://gitlab.com/buildroot.org/buildroot/-/jobs/3259671226
Cc: Suniel Mahesh <sunil@amarulasolutions.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
---
DEVELOPERS | 2 --
board/firefly/roc-rk3399-pc/extlinux.conf | 4 ---
board/firefly/roc-rk3399-pc/genimage.cfg | 22 -------------
board/firefly/roc-rk3399-pc/post-build.sh | 5 ---
board/firefly/roc-rk3399-pc/readme.txt | 40 -----------------------
5 files changed, 73 deletions(-)
delete mode 100644 board/firefly/roc-rk3399-pc/extlinux.conf
delete mode 100644 board/firefly/roc-rk3399-pc/genimage.cfg
delete mode 100755 board/firefly/roc-rk3399-pc/post-build.sh
delete mode 100644 board/firefly/roc-rk3399-pc/readme.txt
diff --git a/DEVELOPERS b/DEVELOPERS
index 9569ee720b..591276bec8 100644
--- a/DEVELOPERS
+++ b/DEVELOPERS
@@ -2729,13 +2729,11 @@ F: package/hwloc/
F: package/powertop/
N: Suniel Mahesh <sunil@amarulasolutions.com>
-F: board/firefly/
F: board/friendlyarm/nanopi-m4
F: board/pine64/rockpro64
F: board/radxa/rockpi-4
F: board/radxa/rockpi-n8
F: board/radxa/rockpi-n10
-F: configs/roc_pc_rk3399_defconfig
F: configs/rock_pi_4_defconfig
F: configs/rock_pi_n8_defconfig
F: configs/rock_pi_n10_defconfig
diff --git a/board/firefly/roc-rk3399-pc/extlinux.conf b/board/firefly/roc-rk3399-pc/extlinux.conf
deleted file mode 100644
index 50a358fadc..0000000000
--- a/board/firefly/roc-rk3399-pc/extlinux.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-label RK3399RocPC linux
- kernel /boot/Image
- devicetree /boot/rk3399-roc-pc.dtb
- append earlycon=uart8250,mmio32,0xff1a0000 root=/dev/mmcblk0p1 rootwait
diff --git a/board/firefly/roc-rk3399-pc/genimage.cfg b/board/firefly/roc-rk3399-pc/genimage.cfg
deleted file mode 100644
index 966c869273..0000000000
--- a/board/firefly/roc-rk3399-pc/genimage.cfg
+++ /dev/null
@@ -1,22 +0,0 @@
-image sdcard.img {
- hdimage {
- }
-
- partition u-boot-tpl-spl-dtb {
- in-partition-table = "no"
- image = "idbloader.img"
- offset = 32K
- }
-
- partition u-boot-dtb {
- in-partition-table = "no"
- image = "u-boot.itb"
- offset = 8M
- size = 30M
- }
-
- partition rootfs {
- partition-type = 0x83
- image = "rootfs.ext4"
- }
-}
diff --git a/board/firefly/roc-rk3399-pc/post-build.sh b/board/firefly/roc-rk3399-pc/post-build.sh
deleted file mode 100755
index 1f5ff6a611..0000000000
--- a/board/firefly/roc-rk3399-pc/post-build.sh
+++ /dev/null
@@ -1,5 +0,0 @@
-#!/bin/sh
-
-BOARD_DIR="$(dirname $0)"
-
-install -m 0644 -D $BOARD_DIR/extlinux.conf $TARGET_DIR/boot/extlinux/extlinux.conf
diff --git a/board/firefly/roc-rk3399-pc/readme.txt b/board/firefly/roc-rk3399-pc/readme.txt
deleted file mode 100644
index 8a6f1cdee6..0000000000
--- a/board/firefly/roc-rk3399-pc/readme.txt
+++ /dev/null
@@ -1,40 +0,0 @@
-Libre Computer Board ROC-RK3399-PC
-===================================
-
-Build:
-
- $ make roc_pc_rk3399_defconfig
- $ make
-
-Files created in output directory
-=================================
-
-output/images
-
-├── bl31.elf
-├── idbloader.img
-├── Image
-├── rk3399-roc-pc.dtb
-├── rootfs.ext2
-├── rootfs.ext4 -> rootfs.ext2
-├── rootfs.tar
-├── sdcard.img
-├── u-boot.bin
-└── u-boot.itb
-
-Creating bootable SD card:
-==========================
-
-Simply invoke (as root)
-
-sudo dd if=output/images/sdcard.img of=/dev/sdX && sync
-
-Where X is your SD card device
-
-Serial console
---------------
-
-Baudrate for this board is 1500000
-
-Wiki link:
-https://wiki.amarulasolutions.com/bsp/rockchip/rk3399/roc-rk3399-pc.html
--
2.38.1
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot
next prev parent reply other threads:[~2022-11-02 20:19 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-02 20:18 [Buildroot] [PATCH 0/3] Another small set of defconfig removals Thomas Petazzoni via buildroot
2022-11-02 20:18 ` Thomas Petazzoni via buildroot [this message]
2022-11-03 0:03 ` [Buildroot] [PATCH 1/3] configs/roc_pc_rk3399: remove defconfig Da Xue
2022-11-03 10:56 ` Thomas Petazzoni via buildroot
2022-11-02 20:18 ` [Buildroot] [PATCH 2/3] configs/rock_pi_4: " Thomas Petazzoni via buildroot
2022-11-02 20:18 ` [Buildroot] [PATCH 3/3] configs/rock_pi_n10: " Thomas Petazzoni via buildroot
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20221102201858.555294-2-thomas.petazzoni@bootlin.com \
--to=buildroot@buildroot.org \
--cc=sunil@amarulasolutions.com \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.