Advertisement
Guest User

bisect

a guest
May 18th, 2015
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. $ git clone git://kernel.ubuntu.com/ubuntu/ubuntu-vivid.git
  2.  
  3. Cloning into 'ubuntu-vivid'...
  4. remote: Counting objects: 4488170, done.
  5. remote: Compressing objects: 100% (703007/703007), done.
  6. remote: Total 4488170 (delta 3769422), reused 4465814 (delta 3751407)
  7. Receiving objects: 100% (4488170/4488170), 836.77 MiB | 732.00 KiB/s, done.
  8. Resolving deltas: 100% (3769422/3769422), done.
  9. Checking connectivity... done.
  10. Checking out files: 100% (48949/48949), done.
  11.  
  12. $ cd ubuntu-vivid
  13. $ git checkout -b mybisect origin/master
  14.  
  15. Branch mybisect set up to track remote branch master from origin.
  16. Switched to a new branch 'mybisect'
  17.  
  18.  
  19. $ git log --oneline Ubuntu-3.13.0-0.10..Ubuntu-3.19.0-9.9 drivers/net/ethernet/atheros/atl1e
  20.  
  21. 9baa3c3 PCI: Remove DEFINE_PCI_DEVICE_TABLE macro use
  22. 1911826 atl1e: use pci_zalloc_consistent
  23. a9690a8 atl1e: remove unnecessary break after return
  24. 537fae0 net: use SPEED_UNKNOWN and DUPLEX_UNKNOWN when appropriate
  25. 7ad24ea net: get rid of SET_ETHTOOL_OPS
  26. d8e4435 atl1e: remove open-coded skb_cow_head.
  27. 3e3d354 ATHEROS-ATL1E: Convert iounmap to pci_iounmap
  28. a81ab36 drivers/net: delete non-required instances of include <linux/init.h>
  29. fb3a42f atl1e: update statistics code
  30.  
  31.  
  32. $ git bisect start Ubuntu-3.13.0-0.10 Ubuntu-3.19.0-9.9
  33.  
  34. Bisecting: a merge base must be tested
  35. [413541dd66d51f791a0b169d9b9014e4f56be13c] Linux 3.13-rc5
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement