Skip to content
Snippets Groups Projects
Commit c1a82f58 authored by Andreas Gnau's avatar Andreas Gnau :speech_balloon:
Browse files

bcmkernel: bcm_git: Remove support for old WiFi tarballs


Remove support for older WiFi tarballs from the era of < 5.04L.03.

Signed-off-by: default avatarAndreas Gnau <andreas.gnau@iopsys.eu>
parent 4950c2fe
No related branches found
No related tags found
1 merge request!65bcmkernel: bcm_git: Fix invocation of WiFi BSP patch script and remove support for old scripts
...@@ -196,10 +196,7 @@ import_module() ...@@ -196,10 +196,7 @@ import_module()
# move the files # move the files
rsync -a "$repo/git_tmp/" "$repo/bcm963xx/" rsync -a "$repo/git_tmp/" "$repo/bcm963xx/"
# sometimes they also include patches # sometimes they also include patches
apply_bsp_patch_script="$repo/bcm963xx/dopatch" # new patch script from 5.04L.04 local apply_bsp_patch_script="$repo/bcm963xx/dopatch" # new patch script from 5.04L.04
if ! [ -x "$apply_bsp_patch_script" ]; then
apply_bsp_patch_script="$repo/bcm963xx/apply_bsp_patch_all.sh" # old patch script
fi
if [ -x "$apply_bsp_patch_script" ]; then if [ -x "$apply_bsp_patch_script" ]; then
echo "Applying bsp-patches using script $(basename "$apply_bsp_patch_script")" echo "Applying bsp-patches using script $(basename "$apply_bsp_patch_script")"
(cd "$(dirname "$apply_bsp_patch_script")" && "./$(basename "$apply_bsp_patch_script")" apply) (cd "$(dirname "$apply_bsp_patch_script")" && "./$(basename "$apply_bsp_patch_script")" apply)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment