diff options
author | Mark Hatle <mark.hatle@amd.com> | 2025-01-15 14:36:39 -0700 |
---|---|---|
committer | Mark Hatle <mark.hatle@amd.com> | 2025-03-30 14:16:15 -0600 |
commit | 41532fca30423438496a8e2f907bdb34da9972a0 (patch) | |
tree | 611075667e1173d880fd5a5fc99b1fe091a57ca8 | |
parent | 210b0a170bc448dc2cea6392b0ee7a5aa48d8122 (diff) | |
download | meta-xilinx-41532fca30423438496a8e2f907bdb34da9972a0.tar.gz |
embeddedsw: Replace 'cp' with 'install' to avoid damaged shared source
'cp' is not always replacing an existing file, but appears to sometimes change
the file. This is not normally an issues but when using shared-source and
files that are hardlinks, we need to do a Copy-on-Write style operation
which install does by default.
Adjust all instances of:
cp Makefile.Linux Makefile
with:
install Makefile.Linux Makefile
Signed-off-by: Mark Hatle <mark.hatle@amd.com>
29 files changed, 29 insertions, 29 deletions
diff --git a/meta-xilinx-standalone/recipes-apps/rfdc-examples/rfdc-examples.inc b/meta-xilinx-standalone/recipes-apps/rfdc-examples/rfdc-examples.inc index ffb70044..3891687e 100644 --- a/meta-xilinx-standalone/recipes-apps/rfdc-examples/rfdc-examples.inc +++ b/meta-xilinx-standalone/recipes-apps/rfdc-examples/rfdc-examples.inc | |||
@@ -21,5 +21,5 @@ RFDC_SUBDIR = "XilinxProcessorIPLib/drivers/rfdc/examples" | |||
21 | 21 | ||
22 | do_compile:prepend () { | 22 | do_compile:prepend () { |
23 | cd ${S}/${RFDC_SUBDIR} | 23 | cd ${S}/${RFDC_SUBDIR} |
24 | cp Makefile.Linux Makefile | 24 | install Makefile.Linux Makefile |
25 | } | 25 | } |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.1.bb index 04415f5e..fbd9d50c 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.1.bb | |||
@@ -20,7 +20,7 @@ DFECCF_SUBDIR = "XilinxProcessorIPLib/drivers/dfeccf/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFECCF_SUBDIR} | 22 | cd ${S}/${DFECCF_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.2.bb index 04415f5e..fbd9d50c 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2023.2.bb | |||
@@ -20,7 +20,7 @@ DFECCF_SUBDIR = "XilinxProcessorIPLib/drivers/dfeccf/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFECCF_SUBDIR} | 22 | cd ${S}/${DFECCF_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.1.bb index 04415f5e..fbd9d50c 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.1.bb | |||
@@ -20,7 +20,7 @@ DFECCF_SUBDIR = "XilinxProcessorIPLib/drivers/dfeccf/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFECCF_SUBDIR} | 22 | cd ${S}/${DFECCF_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.2.bb index db376e41..9961df13 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeccf/libdfeccf_2024.2.bb | |||
@@ -18,7 +18,7 @@ DFECCF_SUBDIR = "XilinxProcessorIPLib/drivers/dfeccf/src" | |||
18 | 18 | ||
19 | do_compile:prepend() { | 19 | do_compile:prepend() { |
20 | cd ${S}/${DFECCF_SUBDIR} | 20 | cd ${S}/${DFECCF_SUBDIR} |
21 | cp Makefile.Linux Makefile | 21 | install Makefile.Linux Makefile |
22 | } | 22 | } |
23 | 23 | ||
24 | do_install() { | 24 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.1.bb index 298621fa..c28a0e62 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.1.bb | |||
@@ -20,7 +20,7 @@ DFEEQU_SUBDIR = "XilinxProcessorIPLib/drivers/dfeequ/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEEQU_SUBDIR} | 22 | cd ${S}/${DFEEQU_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.2.bb index 298621fa..c28a0e62 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2023.2.bb | |||
@@ -20,7 +20,7 @@ DFEEQU_SUBDIR = "XilinxProcessorIPLib/drivers/dfeequ/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEEQU_SUBDIR} | 22 | cd ${S}/${DFEEQU_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.1.bb index 298621fa..c28a0e62 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.1.bb | |||
@@ -20,7 +20,7 @@ DFEEQU_SUBDIR = "XilinxProcessorIPLib/drivers/dfeequ/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEEQU_SUBDIR} | 22 | cd ${S}/${DFEEQU_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.2.bb index 339138e6..d06c8d1e 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeequ/libdfeequ_2024.2.bb | |||
@@ -18,7 +18,7 @@ DFEEQU_SUBDIR = "XilinxProcessorIPLib/drivers/dfeequ/src" | |||
18 | 18 | ||
19 | do_compile:prepend() { | 19 | do_compile:prepend() { |
20 | cd ${S}/${DFEEQU_SUBDIR} | 20 | cd ${S}/${DFEEQU_SUBDIR} |
21 | cp Makefile.Linux Makefile | 21 | install Makefile.Linux Makefile |
22 | } | 22 | } |
23 | 23 | ||
24 | do_install() { | 24 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.1.bb index cac04c14..88d8e619 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.1.bb | |||
@@ -20,7 +20,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfemix/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEMIX_SUBDIR} | 22 | cd ${S}/${DFEMIX_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.2.bb index cac04c14..88d8e619 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2023.2.bb | |||
@@ -20,7 +20,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfemix/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEMIX_SUBDIR} | 22 | cd ${S}/${DFEMIX_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.1.bb index cac04c14..88d8e619 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.1.bb | |||
@@ -20,7 +20,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfemix/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEMIX_SUBDIR} | 22 | cd ${S}/${DFEMIX_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.2.bb index 75283e50..a47168e5 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfemix/libdfemix_2024.2.bb | |||
@@ -18,7 +18,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfemix/src" | |||
18 | 18 | ||
19 | do_compile:prepend() { | 19 | do_compile:prepend() { |
20 | cd ${S}/${DFEMIX_SUBDIR} | 20 | cd ${S}/${DFEMIX_SUBDIR} |
21 | cp Makefile.Linux Makefile | 21 | install Makefile.Linux Makefile |
22 | } | 22 | } |
23 | 23 | ||
24 | do_install() { | 24 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.1.bb index e183b853..c43e39ba 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.1.bb | |||
@@ -20,7 +20,7 @@ DFEOFDM_SUBDIR = "XilinxProcessorIPLib/drivers/dfeofdm/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEOFDM_SUBDIR} | 22 | cd ${S}/${DFEOFDM_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.2.bb index e183b853..c43e39ba 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2023.2.bb | |||
@@ -20,7 +20,7 @@ DFEOFDM_SUBDIR = "XilinxProcessorIPLib/drivers/dfeofdm/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEOFDM_SUBDIR} | 22 | cd ${S}/${DFEOFDM_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb index e183b853..c43e39ba 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.1.bb | |||
@@ -20,7 +20,7 @@ DFEOFDM_SUBDIR = "XilinxProcessorIPLib/drivers/dfeofdm/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEOFDM_SUBDIR} | 22 | cd ${S}/${DFEOFDM_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.2.bb index 0adf4f96..bc0711f8 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeofdm/libdfeofdm_2024.2.bb | |||
@@ -18,7 +18,7 @@ DFEOFDM_SUBDIR = "XilinxProcessorIPLib/drivers/dfeofdm/src" | |||
18 | 18 | ||
19 | do_compile:prepend() { | 19 | do_compile:prepend() { |
20 | cd ${S}/${DFEOFDM_SUBDIR} | 20 | cd ${S}/${DFEOFDM_SUBDIR} |
21 | cp Makefile.Linux Makefile | 21 | install Makefile.Linux Makefile |
22 | } | 22 | } |
23 | 23 | ||
24 | do_install() { | 24 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.1.bb index 570dc6f1..882ccceb 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.1.bb | |||
@@ -20,7 +20,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfeprach/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEMIX_SUBDIR} | 22 | cd ${S}/${DFEMIX_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.2.bb index 570dc6f1..882ccceb 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2023.2.bb | |||
@@ -20,7 +20,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfeprach/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEMIX_SUBDIR} | 22 | cd ${S}/${DFEMIX_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.1.bb index 570dc6f1..882ccceb 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.1.bb | |||
@@ -20,7 +20,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfeprach/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${DFEMIX_SUBDIR} | 22 | cd ${S}/${DFEMIX_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.2.bb index de5e5f11..34c550d7 100644 --- a/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/libdfeprach/libdfeprach_2024.2.bb | |||
@@ -18,7 +18,7 @@ DFEMIX_SUBDIR = "XilinxProcessorIPLib/drivers/dfeprach/src" | |||
18 | 18 | ||
19 | do_compile:prepend() { | 19 | do_compile:prepend() { |
20 | cd ${S}/${DFEMIX_SUBDIR} | 20 | cd ${S}/${DFEMIX_SUBDIR} |
21 | cp Makefile.Linux Makefile | 21 | install Makefile.Linux Makefile |
22 | } | 22 | } |
23 | 23 | ||
24 | do_install() { | 24 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.1.bb index 04ae540d..1ab115c8 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.1.bb | |||
@@ -17,7 +17,7 @@ RFCLK_SUBDIR = "XilinxProcessorIPLib/drivers/board_common/src/rfclk/src" | |||
17 | 17 | ||
18 | do_compile:prepend() { | 18 | do_compile:prepend() { |
19 | cd ${S}/${RFCLK_SUBDIR} | 19 | cd ${S}/${RFCLK_SUBDIR} |
20 | cp Makefile.Linux Makefile | 20 | install Makefile.Linux Makefile |
21 | } | 21 | } |
22 | 22 | ||
23 | do_install() { | 23 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.2.bb index 04ae540d..1ab115c8 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2023.2.bb | |||
@@ -17,7 +17,7 @@ RFCLK_SUBDIR = "XilinxProcessorIPLib/drivers/board_common/src/rfclk/src" | |||
17 | 17 | ||
18 | do_compile:prepend() { | 18 | do_compile:prepend() { |
19 | cd ${S}/${RFCLK_SUBDIR} | 19 | cd ${S}/${RFCLK_SUBDIR} |
20 | cp Makefile.Linux Makefile | 20 | install Makefile.Linux Makefile |
21 | } | 21 | } |
22 | 22 | ||
23 | do_install() { | 23 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.1.bb index 04ae540d..1ab115c8 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.1.bb | |||
@@ -17,7 +17,7 @@ RFCLK_SUBDIR = "XilinxProcessorIPLib/drivers/board_common/src/rfclk/src" | |||
17 | 17 | ||
18 | do_compile:prepend() { | 18 | do_compile:prepend() { |
19 | cd ${S}/${RFCLK_SUBDIR} | 19 | cd ${S}/${RFCLK_SUBDIR} |
20 | cp Makefile.Linux Makefile | 20 | install Makefile.Linux Makefile |
21 | } | 21 | } |
22 | 22 | ||
23 | do_install() { | 23 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.2.bb index 28c7ee35..bb213585 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfclk/librfclk_2024.2.bb | |||
@@ -15,7 +15,7 @@ RFCLK_SUBDIR = "XilinxProcessorIPLib/drivers/board_common/src/rfclk/src" | |||
15 | 15 | ||
16 | do_compile:prepend() { | 16 | do_compile:prepend() { |
17 | cd ${S}/${RFCLK_SUBDIR} | 17 | cd ${S}/${RFCLK_SUBDIR} |
18 | cp Makefile.Linux Makefile | 18 | install Makefile.Linux Makefile |
19 | } | 19 | } |
20 | 20 | ||
21 | do_install() { | 21 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.1.bb b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.1.bb index 35cd2a1a..29894f2e 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.1.bb | |||
@@ -20,7 +20,7 @@ RFDC_SUBDIR = "XilinxProcessorIPLib/drivers/rfdc/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${RFDC_SUBDIR} | 22 | cd ${S}/${RFDC_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.2.bb b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.2.bb index 35cd2a1a..29894f2e 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2023.2.bb | |||
@@ -20,7 +20,7 @@ RFDC_SUBDIR = "XilinxProcessorIPLib/drivers/rfdc/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${RFDC_SUBDIR} | 22 | cd ${S}/${RFDC_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.1.bb b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.1.bb index 35cd2a1a..29894f2e 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.1.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.1.bb | |||
@@ -20,7 +20,7 @@ RFDC_SUBDIR = "XilinxProcessorIPLib/drivers/rfdc/src" | |||
20 | 20 | ||
21 | do_compile:prepend() { | 21 | do_compile:prepend() { |
22 | cd ${S}/${RFDC_SUBDIR} | 22 | cd ${S}/${RFDC_SUBDIR} |
23 | cp Makefile.Linux Makefile | 23 | install Makefile.Linux Makefile |
24 | } | 24 | } |
25 | 25 | ||
26 | do_install() { | 26 | do_install() { |
diff --git a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.2.bb b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.2.bb index b426cf58..5fb2d8c5 100644 --- a/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.2.bb +++ b/meta-xilinx-standalone/recipes-bsp/librfdc/librfdc_2024.2.bb | |||
@@ -18,7 +18,7 @@ RFDC_SUBDIR = "XilinxProcessorIPLib/drivers/rfdc/src" | |||
18 | 18 | ||
19 | do_compile:prepend() { | 19 | do_compile:prepend() { |
20 | cd ${S}/${RFDC_SUBDIR} | 20 | cd ${S}/${RFDC_SUBDIR} |
21 | cp Makefile.Linux Makefile | 21 | install Makefile.Linux Makefile |
22 | } | 22 | } |
23 | 23 | ||
24 | do_install() { | 24 | do_install() { |