出现如下错误:

module_name: Unknown symbol "symbol_name"

tail /var/log/messages查看具体错误

出现如下错误:

Unknown symbol platform_driver_unregister 

因为这一行:EXPORT_SYMBOL_GPL(platform_driver_unregister)
需要加入:MODULE_LICENSE(“GPL”)

出现如下错误:

module license 'unspecified' taints kernel

需要加入:MODULE_LICENSE(“GPL”)

相关文章:

  • 2022-02-08
  • 2021-08-10
  • 2022-12-23
  • 2022-12-23
  • 2021-11-17
  • 2022-12-23
  • 2022-12-23
  • 2021-05-20
猜你喜欢
  • 2022-12-23
  • 2021-05-31
  • 2021-08-10
  • 2021-06-10
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案