mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 14:37:57 +00:00
598b29585e
Use SPDX license tags to allow machines to check licenses. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
20 lines
503 B
Makefile
20 lines
503 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
# Copyright (C) 2011 OpenWrt.org
|
|
|
|
define Profile/Default
|
|
NAME:=Default Profile
|
|
PRIORITY:=1
|
|
PACKAGES := badblocks block-mount e2fsprogs \
|
|
kmod-dm kmod-fs-ext4 kmod-fs-vfat kmod-usb-ledtrig-usbport \
|
|
kmod-md-mod kmod-nls-cp437 kmod-nls-iso8859-1 kmod-nls-iso8859-15 \
|
|
kmod-nls-utf8 kmod-usb3 kmod-usb-dwc2 kmod-usb-storage \
|
|
kmod-spi-gpio partx-utils
|
|
endef
|
|
|
|
define Profile/Default/Description
|
|
Default package set
|
|
endef
|
|
|
|
$(eval $(call Profile,Default))
|