[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2017-10-15 Thread dino99
** Changed in: usbip (Ubuntu Utopic)
   Status: Confirmed => Invalid

** Changed in: usbip (Ubuntu)
   Status: Confirmed => Invalid

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Invalid
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Invalid

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2016-09-25 Thread Michael Kasprzak
Since this seems to have been forgotten, I just thought I'd mention that
since the kernel version of USBIP is working, the USBIP package should
probably be removed. It doesn't work anymore and only causes confusion
(I spent a regrettable amount of time trying to get it working, only to
discover it's not the same thing as the kernel version found in linux-
tools-generic).

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2016-01-04 Thread Whoopie
@mauro: the LD_LIBRARY_PATH is not needed if you run "sudo ldconfig"
after the installation.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2015-11-10 Thread Mauro
For Trusty, you must compile usbip from sources yourself. I did it a
couple of times in Linux Mint 17 (based on Trusty) and Debian 7. Here is
what I ended up with:

On the Linux server that will share the USB devices or on any Linux client that 
will need to access shared devices on other servers:
- download the kernel source: apt-get install linux-source-3.13.0 (replace with 
your desired kernel version)
- extract the usbip sources from the kernel source tarball (e.g.: 
/usr/src/linux-source-3.13.0.tar.bz2): they should be under 
drivers/staging/usbip (or something like that); for instance, extract them to 
/root/usbip
- find where the file usb.ids from usbutils package is located in your system: 
apt-file search usb.ids (in my case it's at /usr/share/misc/usb.ids)
- enter /root/usbip/userspace to build the userspace tools:
./autogen.sh
./configure --with-usbids-dir=/usr/share/misc
make install
  (replace the usb.ids path as needed)
- if the build fails, you may need some additional libraries; take a look at 
the README file; for instance, I needed to install libtool (apt-get install 
libtool)
- the executable files /usr/local/sbin/usbip and /usr/local/sbin/usbipd will be 
installed, as well as some libraries into /usr/local/lib
- try to run usbip or usbipd to see if they complain about something; if they 
say some library is missing, try to launch them by preceding with a proper 
LD_LIBRARY_PATH setting; for instance, you may need to run usbip in this way:
  LD_LIBRARY_PATH=/usr/local/lib; usbip

Until now, we've compiled the userspace tools required to control usbip; then, 
we need to compile the kernel modules, too. The following is again needed on 
the Linux server that will share the USB devices:
- the kernel headers are required: 
  apt-get install linux-headers-`uname -r`
  cd /usr/src/linux-headers-`uname -r`
  make M=/root/usbip
  (replace the path after M= with the folder where you extracted the usbip 
sources in the previous steps)
- the kernel modules will be installed in the usbip folder; to load them:
  modprobe usbip-core.ko
  modprobe usbip-host.ko

After you've loaded the kernel modules, type:
usbipd -D

Then, you can start to use the usbip tool to list the attached USB
modules and bind them.

If you want to load the kernel modules automatically on system startup:
sudo echo usbip-core >>/etc/modules
sudo echo usbip-host >>/etc/modules

If you want to start the usbipd daemon automatically on system startup, one way 
to achieve this is to edit /etc/rc.local and add the following line before the 
line with "exit 0":
/usr/local/sbin/usbipd -D
(remember the LD_LIBRARY_PATH thing, if you determined it's needed)

Please note that if you plan to use Windows clients, you need to try the
LATEST compiled binaries, otherwise they will fail to work. When I last
used usbip, I had to use some binaries compiled by users posting on the
usbip forum, because the one published on the usbip website were
outdated and did not work. That's another huge problem with this tool, I
think.

Hope this helps someone.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


Re: [Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2015-11-10 Thread Michael Markstaller
This was VERY helpful! Thanks!

But why must that be that freaky?
I love OSS, really! - but sometimes I doubt, if anybody understands that
things like "./autogen.sh" etc. aren't suitable for common people?!
Upstream, "apt-get install usbip" would be great, otherwise nobody could
really use it.

just my 5 ct,
Michael



On 10.11.2015 22:07, Mauro wrote:
> For Trusty, you must compile usbip from sources yourself. I did it a
> couple of times in Linux Mint 17 (based on Trusty) and Debian 7. Here is
> what I ended up with:
> 
> On the Linux server that will share the USB devices or on any Linux client 
> that will need to access shared devices on other servers:
> - download the kernel source: apt-get install linux-source-3.13.0 (replace 
> with your desired kernel version)
> - extract the usbip sources from the kernel source tarball (e.g.: 
> /usr/src/linux-source-3.13.0.tar.bz2): they should be under 
> drivers/staging/usbip (or something like that); for instance, extract them to 
> /root/usbip
> - find where the file usb.ids from usbutils package is located in your 
> system: apt-file search usb.ids (in my case it's at /usr/share/misc/usb.ids)
> - enter /root/usbip/userspace to build the userspace tools:
> ./autogen.sh
> ./configure --with-usbids-dir=/usr/share/misc
> make install
>   (replace the usb.ids path as needed)
> - if the build fails, you may need some additional libraries; take a look at 
> the README file; for instance, I needed to install libtool (apt-get install 
> libtool)
> - the executable files /usr/local/sbin/usbip and /usr/local/sbin/usbipd will 
> be installed, as well as some libraries into /usr/local/lib
> - try to run usbip or usbipd to see if they complain about something; if they 
> say some library is missing, try to launch them by preceding with a proper 
> LD_LIBRARY_PATH setting; for instance, you may need to run usbip in this way:
>   LD_LIBRARY_PATH=/usr/local/lib; usbip
> 
> Until now, we've compiled the userspace tools required to control usbip; 
> then, we need to compile the kernel modules, too. The following is again 
> needed on the Linux server that will share the USB devices:
> - the kernel headers are required: 
>   apt-get install linux-headers-`uname -r`
>   cd /usr/src/linux-headers-`uname -r`
>   make M=/root/usbip
>   (replace the path after M= with the folder where you extracted the usbip 
> sources in the previous steps)
> - the kernel modules will be installed in the usbip folder; to load them:
>   modprobe usbip-core.ko
>   modprobe usbip-host.ko
> 
> After you've loaded the kernel modules, type:
> usbipd -D
> 
> Then, you can start to use the usbip tool to list the attached USB
> modules and bind them.
> 
> If you want to load the kernel modules automatically on system startup:
> sudo echo usbip-core >>/etc/modules
> sudo echo usbip-host >>/etc/modules
> 
> If you want to start the usbipd daemon automatically on system startup, one 
> way to achieve this is to edit /etc/rc.local and add the following line 
> before the line with "exit 0":
> /usr/local/sbin/usbipd -D
> (remember the LD_LIBRARY_PATH thing, if you determined it's needed)
> 
> Please note that if you plan to use Windows clients, you need to try the
> LATEST compiled binaries, otherwise they will fail to work. When I last
> used usbip, I had to use some binaries compiled by users posting on the
> usbip forum, because the one published on the usbip website were
> outdated and did not work. That's another huge problem with this tool, I
> think.
> 
> Hope this helps someone.
>

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2015-11-09 Thread Lauren Weinstein
Greetings. I've been trying to install usbip on Trusty, and -- judging
from my research leading me here -- apparently it's not compiled into
the stock 14.04 kernel, and I'm not set-up to rebuild the kernel here
right now. Is there a reasonable alternative path to getting this
working? Thanks!

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2015-09-17 Thread Ales Berka
Thanks a lot, Nicholas. Very helpful.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2015-02-20 Thread Nicholas Skaggs
For those users wanting a solution:

Uninstall usbip package if you've installed it.

On trusty, install linux-tools-generic-lts-utopic. I can't seem to find
a package that will create a binary, but you can run the binary manually
from /usr/lib/linux-tools/. As of this writing it's /usr/lib/linux-
tools/3.16.0-23-generic/usbip. NOTE, I am running the HWE utopic kernel
on my trusty box.

On utopic or vivid install linux-tools-generic. usbip is registered as a
binary in this case, you can use directly with 'usbip'.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in linux package in Ubuntu:
  Fix Released
Status in usbip package in Ubuntu:
  Confirmed
Status in linux source package in Utopic:
  Fix Released
Status in usbip source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-11-24 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 3.16.0-25.33

---
linux (3.16.0-25.33) utopic; urgency=low

  [ Luis Henriques ]

  * Release Tracking Bug
- LP: #1389170

  [ dann frazier ]

  * [Config] Disable CONFIG_IPMI_SI_PROBE_DEFAULTS on armhf and arm64
- LP: #1388952

  [ Duc Dang ]

  * SAUCE: (no-up) [PCIE] APM X-Gene: Remove debug messages in MSI
interrupt handler path.
- LP: #1382244
  * SAUCE: (no-up) PCI: X-Gene: Fix max payload size and phantom function
configuration
- LP: #1386261

  [ Tim Gardner ]

  * Revert SAUCE: (no-up) PCI: Increase BAR size quirk for IBM ipr SAS
Crocodile adapters
- LP: #1387813
  * [Config] CONFIG_SOUND_OSS_CORE_PRECLAIM=n
- LP: #1385510
  * [Debian] install usbipd
- LP: #898003
  * [Debian] Fix linux-doc dangling symlinks
- LP: #661306

  [ Upstream Kernel Changes ]

  * Revert macvlan: simplify the structure port
- LP: #1381490
  * Revert net/macb: add pinctrl consumer support
- LP: #1381490
  * Revert lzo: properly check for overruns
- LP: #1387813
  * Revert ath9k_hw: reduce ANI firstep range for older chips
- LP: #1387813
  * ASoC: ssm2602: do not hardcode type to SSM2602
- LP: #1379785
  * ASoC: core: fix possible ZERO_SIZE_PTR pointer dereferencing error.
- LP: #1379785
  * perf: fix perf bug in fork()
- LP: #1379785
  * mm: memcontrol: do not iterate uninitialized memcgs
- LP: #1379785
  * mm: migrate: Close race between migration completion and mprotect
- LP: #1379785
  * i2c: qup: Fix order of runtime pm initialization
- LP: #1379785
  * i2c: rk3x: fix 0 length write transfers
- LP: #1379785
  * ACPI / i915: Update the condition to ignore firmware backlight change
request
- LP: #1379785
  * cpufreq: integrator: fix integrator_cpufreq_remove return type
- LP: #1379785
  * cpufreq: pcc-cpufreq: Fix wait_event() under spinlock
- LP: #1379785
  * md/raid5: disable 'DISCARD' by default due to safety concerns.
- LP: #1379785
  * drm/i915: Flush the PTEs after updating them before suspend
- LP: #1379785
  * Fix problem recognizing symlinks
- LP: #1379785
  * init/Kconfig: Fix HAVE_FUTEX_CMPXCHG to not break up the EXPERT menu
- LP: #1379785
  * ring-buffer: Fix infinite spin in reading buffer
- LP: #1379785
  * uas: Only complain about missing sg if all other checks succeed
- LP: #1379785
  * uas: Log a warning when we cannot use uas because the hcd lacks streams
- LP: #1379785
  * uas: Disable uas on ASM1051 devices
- LP: #1379785
  * uas: Add missing le16_to_cpu calls to asm1051 / asm1053 usb-id check
- LP: #1379785
  * x86, ia64: Move EFI_FB vga_default_device() initialization to
pci_vga_fixup()
- LP: #1379785
  * vgaarb: Don't default exclusively to first video device with mem+io
- LP: #1379785
  * mm, thp: move invariant bug check out of loop in __split_huge_page_map
- LP: #1379785
  * mm: numa: Do not mark PTEs pte_numa when splitting huge pages
- LP: #1379785
  * media: vb2: fix VBI/poll regression
- LP: #1379785
  * jiffies: Fix timeval conversion to jiffies
- LP: #1379785
  * Linux 3.16.5
- LP: #1379785
  * netlink: reset network header before passing to taps
- LP: #1381490
  * rtnetlink: fix VF info size
- LP: #1381490
  * net: Always untag vlan-tagged traffic on input.
- LP: #1381490
  * myri10ge: check for DMA mapping errors
- LP: #1381490
  * tcp: don't use timestamp from repaired skb-s to calculate RTT (v2)
- LP: #1381490
  * sit: Fix ipip6_tunnel_lookup device matching criteria
- LP: #1381490
  * tcp: fix tcp_release_cb() to dispatch via address family for
mtu_reduced()
- LP: #1381490
  * tcp: fix ssthresh and undo for consecutive short FRTO episodes
- LP: #1381490
  * net: phy: smsc: move smsc_phy_config_init reset part in a soft_reset
function
- LP: #1381490
  * tipc: fix message importance range check
- LP: #1381490
  * packet: handle too big packets for PACKET_V3
- LP: #1381490
  * bnx2x: Revert UNDI flushing mechanism
- LP: #1381490
  * net: ipv6: fib: don't sleep inside atomic lock
- LP: #1381490
  * openvswitch: fix panic with multiple vlan headers
- LP: #1381490
  * vxlan: fix incorrect initializer in union vxlan_addr
- LP: #1381490
  * net: fix checksum features handling in netif_skb_features()
- LP: #1381490
  * ipv6: fix rtnl locking in setsockopt for anycast and multicast
- LP: #1381490
  * l2tp: fix race while getting PMTU on PPP pseudo-wire
- LP: #1381490
  * ipv6: restore the behavior of ipv6_sock_ac_drop()
- LP: #1381490
  * bonding: fix div by zero while enslaving and transmitting
- LP: #1381490
  * net: filter: fix possible use after free
- LP: #1381490
  * bridge: Check if vlan filtering is enabled only once.
- LP: #1381490
  * bridge: Fix br_should_learn to check vlan_enabled
- LP: #1381490
  * net: allow macvlans to move to net namespace
- LP: 

[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-11-10 Thread Brad Figg
This bug is awaiting verification that the kernel in -proposed solves
the problem. Please test the kernel and update this bug with the
results. If the problem is solved, change the tag 'verification-needed-
utopic' to 'verification-done-utopic'.

If verification is not done by 5 working days from today, this fix will
be dropped from the source code, and this bug will be closed.

See https://wiki.ubuntu.com/Testing/EnableProposed for documentation how
to enable and use -proposed. Thank you!


** Tags added: verification-needed-utopic

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Committed
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-11-10 Thread Whoopie
usbip and usbipd binaries are part of the linux-tools-common package.

** Tags removed: verification-needed-utopic
** Tags added: verification-done-utopic

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Committed
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-28 Thread Andy Whitcroft
** Changed in: linux (Ubuntu Utopic)
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Committed
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-28 Thread Whoopie
Tim, maybe a transitional usbip package could be pushed to utopic which
installs linux-tools-generic.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Committed
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-27 Thread Tim Gardner
** Changed in: linux (Ubuntu Utopic)
   Status: Fix Released = In Progress

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  In Progress
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-27 Thread Tim Gardner
Whoopie - I think it is too late to remove usbip from Utopic. I've
commited the fix you suggested in #28.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  In Progress
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-25 Thread Whoopie
You must install the linux-tools-generic package which provides right
packages. There's usbip and usbipd included
(http://packages.ubuntu.com/utopic/amd64/linux-
tools-3.16.0-23-generic/filelist).

@Tim Gardner: shouldn't the usbip package be removed from the repository
(http://packages.ubuntu.com/utopic/usbip)?

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Released
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-25 Thread Whoopie
@Tim Gardner: could it be that there's a missing line in
debian/rules.d/3-binary-indep.mk?

after ifeq ($(do_tools_common),true), you install the usbip client,
but the usbipd daemon is missing. I think, there should be a line
install -m755 debian/tools/generic $(toolsbin)/usbipd.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Released
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-24 Thread Michael Salisbury
Whoopie,
Mauro,

  Have either of you come accross and details to how USBIP was fixed for
Ubuntu Utopic?

Tim,
Andy,

  Can you share some details as to what was changed so that if there are
no plans to backport the fix to Trusty we can attempt a manual fix on
our own.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Released
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-09 Thread Whoopie
Any chance to get this backported to Trusty?

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Released
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-10-09 Thread Mauro
In what exactly consists the fix to this bug? An updated (and working)
usbip package? Or the ability to set up usbip without any additional
packages? Or what else?

I too would really like to use it in Trusty...

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Released
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-09-26 Thread Andy Whitcroft
** Changed in: linux (Ubuntu Utopic)
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Committed
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Committed
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-09-26 Thread Launchpad Bug Tracker
This bug was fixed in the package linux - 3.16.0-18.25

---
linux (3.16.0-18.25) utopic; urgency=low

  [ Tim Gardner ]

  * Release Tracking Bug
- LP: #1373682
 -- Tim Gardner tim.gard...@canonical.com   Wed, 24 Sep 2014 19:23:23 -0600

** Changed in: linux (Ubuntu Utopic)
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Fix Released
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  Fix Released
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-09-22 Thread Tim Gardner
** Changed in: linux (Ubuntu)
   Status: Won't Fix = In Progress

** Changed in: linux (Ubuntu)
 Assignee: (unassigned) = Tim Gardner (timg-tpi)

** Also affects: linux (Ubuntu Utopic)
   Importance: Low
 Assignee: Tim Gardner (timg-tpi)
   Status: In Progress

** Also affects: usbip (Ubuntu Utopic)
   Importance: Undecided
   Status: Confirmed

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  In Progress
Status in “usbip” package in Ubuntu:
  Confirmed
Status in “linux” source package in Utopic:
  In Progress
Status in “usbip” source package in Utopic:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2014-09-19 Thread Whoopie
This really needs some attention. USBIP will be moved out of the staging
area in kernel 3.17.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Won't Fix
Status in “usbip” package in Ubuntu:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2013-12-23 Thread Elliott Friedman
This seems to be broken for all current kernels paired with package
version 0.1.7.

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Won't Fix
Status in “usbip” package in Ubuntu:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp


[Kernel-packages] [Bug 898003] Re: usbip source is maintained in kernel tree now

2013-08-11 Thread Martin Schröder
Whats the progress on this?
On my Raspberry Pi (wheezy) I have version 1.1.1:

usbip version
usbip (usbip-utils 1.1.1)

On Ubuntu Raring I have version 0.1.7 which seems to be hopelessly outdated:
usbip -v

** (process:19658): WARNING **: running non-root?
usbip 0.1.7 ($Id: vhci_attach.c 42 2007-09-07 12:07:51Z hirofuchi $)

These two different versions don't seem to work with each other:

Command (Client / Raring)
sudo usbip -D --list 192.168.178.35
usbip dbg: usbip_network.c: 221 (tcp_connect ) trying 192.168.178.35 port 3240

usbip dbg: usbip_network.c: 241 (tcp_connect ) connected to 192.168.178.35:3240
- 192.168.178.35
usbip err: usbip_network.c: 119 (usbip_recv_op_common) recv op_common, -1
usbip err: vhci_attach.c: 202 (query_exported_devices) recv op_common
usbip err: vhci_attach.c: 417 (show_exported_devices) query

Messages (Server / Wheezy)
sudo usbipd 
usbipd: info: starting usbipd (usbip-utils 1.1.1)
usbipd: info: listening on 0.0.0.0:3240
usbipd: info: connection from 192.168.178.32:36593

@Whoopie: Could you make your packages available for Raring?

-- 
You received this bug notification because you are a member of Kernel
Packages, which is subscribed to linux in Ubuntu.
https://bugs.launchpad.net/bugs/898003

Title:
  usbip source is maintained in kernel tree now

Status in “linux” package in Ubuntu:
  Won't Fix
Status in “usbip” package in Ubuntu:
  Confirmed

Bug description:
  Both the userspace and kernel module parts of usbip are in the linux
  kernel tree now.  The source used in this package is quite old.

  I'm not sure how to best handle the packaging aspects here -- I
  imagine that it would be undesirable for usbip to be built as a side
  effect of the main kernel package build, because then the kernel
  package build would be even slower and usbip is probably not updated
  enough to justify that.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux/+bug/898003/+subscriptions

-- 
Mailing list: https://launchpad.net/~kernel-packages
Post to : kernel-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kernel-packages
More help   : https://help.launchpad.net/ListHelp