00-default.mk 485 B

12345678910111213141516171819
  1. # SPDX-License-Identifier: GPL-2.0-only
  2. #
  3. # Copyright (C) 2013 OpenWrt.org
  4. define Profile/Default
  5. NAME:=Default Profile
  6. PACKAGES:= \
  7. kmod-usb-net-asix kmod-usb-net-asix-ax88179 kmod-usb-net-hso \
  8. kmod-usb-net-kaweth kmod-usb-net-pegasus kmod-usb-net-mcs7830 \
  9. kmod-usb-net-smsc95xx kmod-usb-net-dm9601-ether \
  10. wpad-basic-mbedtls
  11. PRIORITY := 1
  12. endef
  13. define Profile/Default/Description
  14. Default package set compatible with most boards.
  15. endef
  16. $(eval $(call Profile,Default))