c6ce65d3d0
```sh git grep -l '^patch_args=-Np0' "srcpkgs/$1*/template" | while read template; do for p in ${template%/template}/patches/*; do sed -i ' \,^[+-][+-][+-] /dev/null,b /^[*-]\+ [0-9]\+\(,[0-9]\+\)\? [*-]\+$/b s,^[*][*][*] ,&a/, /^--- /{ s,\(^--- \)\(./\)*,\1a/, s,[.-][Oo][Rr][Ii][Gg]\([ /]\),\1, s/[.-][Oo][Rr][Ii][Gg]$// s/[.]patched[.]\([^.]\)/.\1/ h } /^+++ -/{ g s/^--- a/+++ b/ b } s,\(^+++ \)\(./\)*,\1b/, ' "$p" done sed -i '/^patch_args=/d' $template done ```
11 lines
429 B
Diff
11 lines
429 B
Diff
--- a/common/main.c 2014-08-19 08:42:46.000000000 +0200
|
|
+++ b/common/main.c 2020-09-15 09:39:04.675302769 +0200
|
|
@@ -27,7 +27,7 @@
|
|
/*
|
|
* Board-specific Platform code can reimplement show_boot_progress () if needed
|
|
*/
|
|
-void inline __show_boot_progress (int val) {}
|
|
+void __show_boot_progress (int val) {}
|
|
void show_boot_progress (int val) __attribute__((weak, alias("__show_boot_progress")));
|
|
|
|
#define MAX_DELAY_STOP_STR 32
|