This repository has been archived by the owner on Oct 3, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: John Clark <[email protected]>
- Loading branch information
Showing
7 changed files
with
136 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,5 @@ dtb/*.dts | |
dtb/*.dtsi | ||
dtb/*.dtb | ||
uboot/u-boot | ||
uboot/rksd_loader.img | ||
uboot/idbloader.img | ||
uboot/u-boot.itb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 0 additions & 25 deletions
25
uboot/patches/0001-.gitignore-ignore-tools-boot-build-artifact.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
From 0f5d63aef9e24953a5d3d6c58f246c5661b4c558 Mon Sep 17 00:00:00 2001 | ||
From: John Clark <[email protected]> | ||
Date: Tue, 7 Mar 2023 01:47:26 +0000 | ||
Subject: [PATCH 1/2] ignore build artifacts | ||
|
||
Signed-off-by: John Clark <[email protected]> | ||
--- | ||
.gitignore | 3 ++- | ||
drivers/video/.gitignore | 1 + | ||
2 files changed, 3 insertions(+), 1 deletion(-) | ||
create mode 100644 drivers/video/.gitignore | ||
|
||
diff --git a/.gitignore b/.gitignore | ||
index eb769f144c..2ffd5fd3bf 100644 | ||
--- a/.gitignore | ||
+++ b/.gitignore | ||
@@ -34,7 +34,7 @@ | ||
*.tab.[ch] | ||
|
||
# Build tree | ||
-/build-* | ||
+/build* | ||
|
||
# | ||
# Top-level generic files | ||
@@ -43,6 +43,7 @@ fit-dtb.blob* | ||
/MLO* | ||
/SPL* | ||
/System.map | ||
+/simple-bin.map | ||
/u-boot* | ||
/boards.cfg | ||
/*.log | ||
diff --git a/drivers/video/.gitignore b/drivers/video/.gitignore | ||
new file mode 100644 | ||
index 0000000000..86ec950f64 | ||
--- /dev/null | ||
+++ b/drivers/video/.gitignore | ||
@@ -0,0 +1 @@ | ||
+*.S | ||
-- | ||
2.39.2 | ||
|
73 changes: 0 additions & 73 deletions
73
uboot/patches/0002-arm64-rk3399-enable-usb-disable-video.patch
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,18 @@ | ||
From 2a17f88851898aee8483d89a69b1f104dbf881f4 Mon Sep 17 00:00:00 2001 | ||
From dd99b1b1db016e5b9728e32d6993919ed64104a7 Mon Sep 17 00:00:00 2001 | ||
From: John Clark <[email protected]> | ||
Date: Mon, 4 Jul 2022 21:46:31 -0400 | ||
Subject: [PATCH] optional: skip mmc boot (usb boot) | ||
Date: Tue, 7 Mar 2023 01:51:58 +0000 | ||
Subject: [PATCH 2/2] optional: skip mmc boot (usb boot) | ||
|
||
Signed-off-by: John Clark <[email protected]> | ||
--- | ||
include/configs/rockchip-common.h | 10 ++-------- | ||
1 file changed, 2 insertions(+), 8 deletions(-) | ||
|
||
diff --git a/include/configs/rockchip-common.h b/include/configs/rockchip-common.h | ||
index ba7061a287..90422b9f2f 100644 | ||
index 4c964cc377..70598c6f8e 100644 | ||
--- a/include/configs/rockchip-common.h | ||
+++ b/include/configs/rockchip-common.h | ||
@@ -14,14 +14,8 @@ | ||
@@ -13,14 +13,8 @@ | ||
|
||
#ifndef CONFIG_SPL_BUILD | ||
|
||
|
@@ -29,5 +30,5 @@ index ba7061a287..90422b9f2f 100644 | |
#if CONFIG_IS_ENABLED(CMD_NVME) | ||
#define BOOT_TARGET_NVME(func) func(NVME, nvme, 0) | ||
-- | ||
2.30.2 | ||
2.39.2 | ||
|
Oops, something went wrong.