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

452 Commits   2 Branches   1 Tag
   213         kx 
   213         kx COMPONENT_TARGETS = $(HARDWARE_NOARCH)
   213         kx 
   213         kx 
   213         kx include ../../../build-system/constants.mk
   213         kx 
   213         kx 
   213         kx url         = $(DOWNLOAD_SERVER)/sources/Linux/StarFive
   213         kx 
   213         kx versions    = starfive-6.1.31-3.8.2
   213         kx 
   213         kx tarballs    = $(addsuffix .tar.xz, $(addprefix linux-, $(versions)))
   213         kx sha1s       = $(addsuffix .sha1sum, $(tarballs))
   213         kx 
   213         kx patches     = $(CURDIR)/patches/linux-starfive-6.1.31-3.8.2-host-limits.patch
   213         kx 
   213         kx .NOTPARALLEL: $(patches)
   213         kx 
   213         kx 
   213         kx BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
   213         kx 
   213         kx 
   213         kx include ../../../build-system/core.mk
   213         kx 
   213         kx 
   213         kx .PHONY: download_clean
   213         kx 
   213         kx 
   213         kx $(tarballs):
   213         kx 	@echo -e "\n======= Downloading source tarballs =======" ; \
   213         kx 	 for tarball in $(tarballs) ; do \
   213         kx 	   echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
   213         kx 	 done ; wait
   213         kx 
   213         kx $(sha1s): $(tarballs)
   213         kx 	@for sha in $@ ; do \
   213         kx 	   echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
   213         kx 	   echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
   213         kx 	   touch $$sha ; \
   213         kx 	   echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
   213         kx 	   sha1sum --check $$sha ; ret="$$?" ; \
   213         kx 	   if [ "$$ret" == "1" ]; then \
   213         kx 	     echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
   213         kx 	     exit 1 ; \
   213         kx 	   fi ; \
   213         kx 	 done
   213         kx 
   213         kx $(patches): $(sha1s)
   213         kx 	@echo -e "\n======= Create Patches =======\n" ; \
   213         kx 	 ( cd create-6.1.31-3.8.2-host-limits-patch ; ./create.patch.sh ) ; \
   213         kx 	 echo -e "\n"
   213         kx 
   213         kx download_clean:
   213         kx 	@rm -f $(tarballs) $(sha1s) $(patches)