Skip to content

Commit

Permalink
chore(pkg/driverbuilder): remove some debug ls.
Browse files Browse the repository at this point in the history
Signed-off-by: Federico Di Pierro <nierro92@gmail.com>
  • Loading branch information
FedeDP authored and poiana committed Mar 7, 2024
1 parent 28d5581 commit 318bf04
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion pkg/driverbuilder/builder/templates/opensuse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ curl --silent -o kernel-devel.rpm -SL {{ $url }}
rpm2cpio kernel-devel.rpm | cpio --quiet --extract --make-directories 2> /dev/null
{{end}}
cd /tmp/kernel-download/usr/src
ls -alh /tmp/kernel-download/usr/src
sourcedir="$(find . -type d -name "linux-*-obj" | head -n 1 | xargs readlink -f)/*/default"

cd {{ .DriverBuildDir }}
Expand Down
1 change: 0 additions & 1 deletion pkg/driverbuilder/builder/templates/sles.sh
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ do
rpm2cpio $rpm | cpio --extract --make-directories
done

ls -alh /tmp/kernel-download/usr/src
sourcedir="$(find . -type d -name "linux-*-obj" | head -n 1 | xargs readlink -f)/*/default"

cd {{ .DriverBuildDir }}
Expand Down
1 change: 0 additions & 1 deletion pkg/driverbuilder/builder/templates/ubuntu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ tar -xf data.tar.*
{{end}}

cd /tmp/kernel-download/usr/src/
ls -altr
sourcedir=$(find . -type d -name "{{ .KernelHeadersPattern }}" | head -n 1 | xargs readlink -f)

cd {{ .DriverBuildDir }}
Expand Down

0 comments on commit 318bf04

Please sign in to comment.