initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
config BR2_PACKAGE_P910ND
bool "p910nd"
depends on BR2_USE_MMU # fork()
help
p910nd is a small printer daemon intended for diskless
workstations. Using ports 9100-9102, it accepts
print jobs and passes them directly to a USB printer.
http://p910nd.sourceforge.net/
+3
View File
@@ -0,0 +1,3 @@
# Locally computed:
sha256 4ac980a3ae24babae6f70f0a692625ece03a4a92c357fbb10d2e368386c3c26f p910nd-0.97.tar.bz2
sha256 91df39d1816bfb17a4dda2d3d2c83b1f6f2d38d53e53e41e8f97ad5ac46a0cad COPYING
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# p910nd
#
################################################################################
P910ND_VERSION = 0.97
P910ND_SITE = http://downloads.sourceforge.net/project/p910nd/p910nd/$(P910ND_VERSION)
P910ND_SOURCE = p910nd-$(P910ND_VERSION).tar.bz2
P910ND_LICENSE = GPL-2.0
P910ND_LICENSE_FILES = COPYING
define P910ND_BUILD_CMDS
$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) -C $(@D)
endef
define P910ND_INSTALL_TARGET_CMDS
$(INSTALL) -D -m 0755 $(@D)/p910nd $(TARGET_DIR)/usr/sbin/p910nd
endef
$(eval $(generic-package))