Skip to content

Commit

Permalink
update to riscv-kernel-6.11.0 v9
Browse files Browse the repository at this point in the history
  • Loading branch information
root committed Oct 4, 2024
1 parent 789685c commit be7b20f
Show file tree
Hide file tree
Showing 12 changed files with 5,217 additions and 1 deletion.
2 changes: 2 additions & 0 deletions diff_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cd libmedia/app/src/main/java/libengine/RVVM
git diff
2 changes: 1 addition & 1 deletion git_reset_rvvm
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2a5d6744e0261c5b63db218d41c73aab32416cc2
af04f3eefcadce22bf962bb7efdc2165f6a92235
3 changes: 3 additions & 0 deletions grep_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cd libmedia/app/src/main/java/libengine/RVVM
cd src
grep -rn --color $@
2 changes: 2 additions & 0 deletions log_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cd libmedia/app/src/main/java/libengine/RVVM
git log
3 changes: 3 additions & 0 deletions nano_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
cd libmedia/app/src/main/java/libengine/RVVM
cd src
nano $1
2 changes: 2 additions & 0 deletions pull_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
cd libmedia/app/src/main/java/libengine/RVVM
git pull
20 changes: 20 additions & 0 deletions replace_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#!/bin/bash
cd libmedia/app/src/main/java/libengine/RVVM
cd src
A=$1
B=$2
shift
shift
while [[ $# != 0 ]]
do
if [[ -e $1 ]]
then
echo "processing $1"
set -x
printf '%s\n' ",s/$A/$B/g" w q | ed --quiet $1
shift
else
echo "$1 not found"
exit
fi
done
2 changes: 2 additions & 0 deletions replace_virtio_rvvm.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/bash
./replace_rvvm.sh "$1" "$2" devices/virtio{.h,-{blk,gpu,input,net}.c,_{common,device,feature,input-event-codes,list}.h}
Loading

0 comments on commit be7b20f

Please sign in to comment.