00-default.mk 577 B

12345678910111213141516171819202122232425262728
  1. #
  2. # Copyright (C) 2017 Yousong Zhou
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. define Profile/Default
  8. NAME:=Default Profile (all drivers)
  9. PACKAGES:= \
  10. kmod-ata-core \
  11. kmod-ata-sunxi \
  12. kmod-brcmfmac \
  13. kmod-rtc-sunxi \
  14. kmod-rtl8192cu \
  15. kmod-rtl8xxxu \
  16. kmod-sun4i-emac \
  17. rtl8188eu-firmware \
  18. swconfig \
  19. uboot-sunxi-all \
  20. wpad-mini
  21. PRIORITY := 1
  22. endef
  23. define Profile/Default/Description
  24. Default profile with package set compatible with most boards.
  25. endef
  26. $(eval $(call Profile,Default))