Hello to everyone.
I need to apply a lot of fixes that are enterely written inside a single file called RK356X-diff,that sounds like this :
I want to apply all these patches to "FreeBSD 14.3-RELEASE". This is what I did :
and now ? I would like to learn how to apply all those patches automatically with a single command. Is this possible to achieve ?
Anyway,what's the faster method to use here ?
I need to apply a lot of fixes that are enterely written inside a single file called RK356X-diff,that sounds like this :
Code:
--- trunk/stable-14/sys/arm/arm/generic_timer.c 2025-03-19 20:49:43.139887000 +0100
+++ branches/stable-14-deepcore/sys/arm/arm/generic_timer.c 2025-03-19 20:22:23.334267000 +0100
@@ -185,6 +185,7 @@
return (get_el0(cntfrq));
}
+#ifdef FDT
static uint64_t
get_cntxct_a64_unstable(bool physical)
{
@@ -206,6 +207,7 @@
return (val);
}
+#endif
static uint64_t
get_cntxct(bool physical)
--- trunk/stable-14/sys/arm/arm/pmu.c 2025-03-19 20:49:43.176176000 +0100
+++ branches/stable-14-deepcore/sys/arm/arm/pmu.c 2025-03-19 20:22:23.363676000 +0100
@@ -67,7 +67,6 @@
{
and so on...
I want to apply all these patches to "FreeBSD 14.3-RELEASE". This is what I did :
Code:
# git clone https://git.FreeBSD.org/src.git ./src
# cd src
# git checkout origin/releng/14.3
and now ? I would like to learn how to apply all those patches automatically with a single command. Is this possible to achieve ?
Anyway,what's the faster method to use here ?