kconfigcheck: set USB_F_FS to =m
Setting it to =y requires also setting CONFIGFS=y, but since we have CONFIGFS=m this needs to be adjusted or else config generated from this toml will fail validation / kconfigcheck. ``` [09:25:01] Copy kernel config back to pmaports dir [09:25:02] (native) generate checksums for linux-postmarketos-asahi [09:25:03] INFO: config-postmarketos-asahi.aarch64: CONFIG_USB_F_FS is preferably y, but currently m (category:usb_gadgets) [09:25:03] Fragment pmos.config: CONFIG_USB_F_FS expected to be 'y' but has different value in final config [09:25:03] ERROR: Fragment validation failed: Some options from fragments did not make it to the final kernel config. This usually means missing dependencies. ``` Signed-off-by: Clayton Craft <craftyguy@postmarketos.org> Part-of: <https://gitlab.postmarketos.org/postmarketOS/pmaports/-/merge_requests/7713>
This commit is contained in:
parent
3139c36b86
commit
4e712841d7
1 changed files with 1 additions and 1 deletions
|
|
@ -333,7 +333,7 @@ USB_G_SERIAL = "n"
|
|||
# enable configfs gadgets
|
||||
USB_GADGET = "y" # Required by USB_CONFIGFS_*
|
||||
USB_CONFIGFS = "m" # Required by USB_CONFIGFS_*
|
||||
USB_F_FS = "y" # FunctionFS USB support
|
||||
USB_F_FS = "m" # FunctionFS USB support
|
||||
USB_CONFIGFS_ACM = "y" # Serial gadget for debug-shell
|
||||
USB_CONFIGFS_MASS_STORAGE = "y" # Mass storage gadget for debug-shell
|
||||
USB_CONFIGFS_NCM = "y" # USB networking via NCM
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue