[Kernel-packages] [Bug 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-04-26 Thread Juerg Haefliger
I cannot reproduce this issue. Tried a current focal preinstalled server image 
with the 'writable' partition on a USB attached SSD. Works just fine. Tested 
kernels:
5.4.0-1013-raspi
5.4.0-1015-raspi
5.4.0-1034-raspi

Please provide an image that shows this problem.

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-03-24 Thread Juerg Haefliger
Is this still an issue with the latest 5.4 kernel?

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-11-25 Thread Oliver Grawert
so this is indeed not an issue with the modules but with the kernel
itself and the support for sas, uas or the enclosure services.

i test-built all tags from https://git.launchpad.net/~ubuntu-
kernel/ubuntu/+source/linux-raspi/+git/focal/refs/tags from 1023.26
going backwards and found that it reliably works until Ubuntu-
raspi-5.4.0-1013.13 and reliably hangs with Ubuntu-raspi-5.4.0-1014.14
so somewhere between these two tags the breakage was introduced ...

i have now also tried to boot either of the 20.10 images (desktop,
server, UC18) and they all expose the same behavior

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-12 Thread Juerg Haefliger
** Also affects: linux-raspi2 (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: linux-raspi (Ubuntu Bionic)
   Importance: Undecided
   Status: New

** Also affects: linux-raspi2 (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** Also affects: linux-raspi (Ubuntu Xenial)
   Importance: Undecided
   Status: New

** No longer affects: linux-raspi (Ubuntu Xenial)

** No longer affects: linux-raspi (Ubuntu Bionic)

** Also affects: linux-raspi2 (Ubuntu Focal)
   Importance: Undecided
   Status: New

** Also affects: linux-raspi (Ubuntu Focal)
   Importance: Undecided
   Status: New

** No longer affects: linux-raspi2 (Ubuntu Focal)

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  New
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-25 Thread Juerg Haefliger
https://people.canonical.com/~ogra/snappy/appliances/fabrica/

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  New
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-25 Thread Juerg Haefliger
All the relevant modules are already included in the uc18 initrd. I can
mount a USB-attached HDD just fine from within the initrd.


** Changed in: linux-raspi2 (Ubuntu Bionic)
   Status: New => Invalid

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-07-08 Thread Oliver Grawert
also note that the fabrica appliance you linked uses a re-built kernel

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-07-08 Thread Oliver Grawert
hmm, i wonder why they dont load then ?

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-07-09 Thread Oliver Grawert
in fact it seems like in 5.3 USB is not working at all !!! i verified
that today ...

my self-built kernel uses the focal 5.4 branch where USB works fine
then:

https://github.com/ogra1/linux-raspberrypi-
org/blob/master/snap/snapcraft.yaml

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-09-08 Thread Marc Doughty
I think this is affecting the latest 5.13 kernels, the usb-storage
modules appear to be missing, and USB storage isn't working, I get the
device detected when I plug it in, but modules to use it are missing
since the 5.13 update.

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-09-08 Thread Marc Doughty
My assessment of the reason appears to be wrong, USB storage at boot
time isn't working for me under 5.13, but the modules seem like they're
present.

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-09-08 Thread Juerg Haefliger
Can you provide steps to reproduce the issue you're seeing?

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-09-14 Thread Juerg Haefliger
Closing due to inactivity. Please open a new case if you encounter a
similar issue again.

** Changed in: linux-raspi (Ubuntu)
   Status: New => Invalid

** Changed in: linux-raspi (Ubuntu Focal)
   Status: New => Invalid

** Changed in: linux-raspi2 (Ubuntu)
   Status: Confirmed => Invalid

** Changed in: linux-raspi2 (Ubuntu Xenial)
   Status: New => Invalid

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  Invalid
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Xenial:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  Invalid

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-09-14 Thread Oliver Grawert
note that i did never really follow up with that setup in the end but i
found out that even modern SSDs (not only rotary HDDs) usually draw more
power than the USB3 port can provide, you will need an Y-Cable or
external power supply ... while i can not fully confirm (due to lack of
time and testing), i do assume it is not a kernel issue at all here,
feel free to close it for now.

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  Invalid
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Xenial:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  Invalid

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2021-09-14 Thread Juerg Haefliger
5.13 has other/unrelated issues: LP: #1943097.

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  Invalid
Status in linux-raspi2 package in Ubuntu:
  Invalid
Status in linux-raspi2 source package in Xenial:
  Invalid
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  Invalid

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-08-07 Thread Juerg Haefliger
This should be fixed in kernel linux-raspi2-5.3 5.3.0-1030.32~18.04.2.
Can you please verify?

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-08-07 Thread Oliver Grawert
i'll try over the weekend ...

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed
Status in linux-raspi2 source package in Xenial:
  New
Status in linux-raspi2 source package in Bionic:
  Invalid
Status in linux-raspi source package in Focal:
  New

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-01 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: linux-raspi2 (Ubuntu)
   Status: New => Confirmed

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi2 package in Ubuntu:
  Confirmed

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-01 Thread Oliver Grawert
** Description changed:

  when using a gadget.yaml like:
  
  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data
  
  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...
  
  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)
  
- adding the following to a re-built kernel makes everything work
+ adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)
  
    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y
  
  can we please have these either built into the kernel or added to the
  initrd as modules ?

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi2 package in Ubuntu:
  Confirmed

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi2/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-01 Thread Oliver Grawert
** Description changed:

  when using a gadget.yaml like:
  
  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data
  
  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...
  
  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)
  
  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)
  
    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y
  
  can we please have these either built into the kernel or added to the
- initrd as modules ?
+ core initrd as modules ?

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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 1881623] Re: USB support missing in initrd makes booting core with writable on USB impossible

2020-06-01 Thread Oliver Grawert
** Also affects: linux-raspi (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  USB support missing in initrd makes booting core with writable on USB
  impossible

Status in linux-raspi package in Ubuntu:
  New
Status in linux-raspi2 package in Ubuntu:
  Confirmed

Bug description:
  when using a gadget.yaml like:

  volumes:
    pi4-system-boot:
  schema: mbr
  bootloader: u-boot
  structure:
    - type: 0C
  filesystem: vfat
  filesystem-label: system-boot
  size: 512M
  content:
    - source: boot-assets/
  target: /
    pi4-usb-writable:
  schema: mbr
  structure:
    - name: writable
  type: 83
  filesystem: ext4
  filesystem-label: writable
  size: 650M
  role: system-data

  this creates two separate img files for a Pi image ... one for SD to
  hold the boot files, one for USB that carries the rootfs ...

  sadly our kernel will then not find the writable partition because it
  lacks support for usb disks (usb-storage seems to be there but not
  sufficient)

  adding the following to a re-built kernel snap makes everything work
  (verified with USB 3.1 SSD on a pi4 as well as various USB 3.0 keys)

    - CONFIG_ENCLOSURE_SERVICES=y
    - CONFIG_SCSI_SAS_ATTRS=y
    - CONFIG_USB_STORAGE=y
    - CONFIG_USB_UAS=y

  can we please have these either built into the kernel or added to the
  core initrd as modules ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/linux-raspi/+bug/1881623/+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