On Sat, 17 Jun 2023 17:07:56 +0200, Symbolic Debugger wrote:
An Attempt to replay the changes to 6.2 : starting with linux-next (On branch next-20230614) as master According to tag 6.4-rc2 the commit for it is f81fe2a4874338a1bfc599cae903a6101217b0a5 # reset the master to 6.4-rc2: $git reset --hard 581fe2a4874338a1bfc599cae903a6101217b0a5 $git checkout v6.2 Previous HEAD position was f1fcbaa18b28 Linux 6.4-rc2 HEAD is now at c9c3395d5e3d Linux 6.2 $git rebase master Successfully rebased and updated detached HEAD. $git checkout master Switched to branch 'master' Your branch is up to date with 'origin/master'. $git merge master Already up to date. Running menuconfig, there are no option for MIDI 2.0 / UMP, though the Makefile shows 6.4-rc6 and the ump files are in the source tree.
Try the following:
% cd /somewhere/linux-next % git reset --hard febdfa0e9c8a5d3a3d895245d1c294c26787daef % git rebase --onto v6.2 v6.4-rc2
The commit febdfa is the topmost commit of MIDI 2.0 stuff. This will plant the MIDI 2.0 stuff onto 6.2.
Alternatively:
% cd /somewhere/linux-stable % git fetch /somewhere/linux-next febdfa0e9c8a5d3a3d895245d1c294c26787daef % git reset --hard FETCH_HEAD % git rebase --onto origin/linux-6.2.y v6.4-rc2
This will be onto the latest 6.2.y stable, instead. If v6.4-rc2 tag isn't found, replace it with f1fcbaa18b28.
Takashi