Advertisement
Guest User

Untitled

a guest
May 18th, 2013
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. # For customer releases the Linux Device Drivers will be provided as ARM proprietary and GPL releases:
  2. # The ARM proprietary product will only include the license/proprietary directory
  3. # The GPL product will only include the license/gpl directory
  4. ifeq ($(wildcard $(src)/linux/license/gpl/*),)
  5. ccflags-y += -I$(src)/linux/license/proprietary
  6. ifeq ($(CONFIG_MALI400_PROFILING),y)
  7. $(error Profiling is incompatible with non-GPL license)
  8. endif
  9. ifeq ($(CONFIG_PM_RUNTIME),y)
  10. $(error Runtime PM is incompatible with non-GPL license)
  11. endif
  12. ifeq ($(CONFIG_DMA_SHARED_BUFFER),y)
  13. $(error DMA-BUF is incompatible with non-GPL license)
  14. endif
  15. $(error Linux Device integration is incompatible with non-GPL license)
  16. else
  17. ccflags-y += -I$(src)/linux/license/gpl
  18. endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement