Radix cross Linux

The main Radix cross Linux repository contains the build scripts of packages, which have the most complete and common functionality for desktop machines

383 Commits   1 Branch   1 Tag
Index: radix-system/Makefile
===================================================================
--- radix-system/Makefile	(revision 372)
+++ radix-system/Makefile	(revision 373)
@@ -260,6 +260,12 @@
 	@echo "# HW Random:"                   >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
 	@echo "/sbin/modprobe rng-core"        >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
 endif
+ifneq ($(filter $(HARDWARE),$(HARDWARE_BAIKAL_M1)),)
+	@echo "# Panfrost GPU device driver:"  >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
+	@echo "/sbin/modprobe panfrost"        >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
+	@echo "# Bluetooth USB support:"       >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
+	@echo "/sbin/modprobe btusb"           >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
+endif
 ifneq ($(filter $(HARDWARE),$(HARDWARE_OMAP5UEVM)),)
 	@cat $(modprobes)/modprobe.$(HARDWARE) >> $(SYSINIT_BIN_PKG)/etc/rc.d/rc.modules.new
 endif
Index: radix-system/etc/rc.d/rc.modules
===================================================================
--- radix-system/etc/rc.d/rc.modules	(revision 372)
+++ radix-system/etc/rc.d/rc.modules	(revision 373)
@@ -25,3 +25,4 @@
 if [ -x "/etc/rc.d/rc.modules.local" ]; then
   /etc/rc.d/rc.modules.local
 fi
+