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
   220         kx 
   220         kx COMPONENT_TARGETS = $(HARDWARE_NOARCH)
   220         kx 
   220         kx 
   220         kx include ../../../../build-system/constants.mk
   220         kx 
   220         kx 
   220         kx url         = $(DOWNLOAD_SERVER)/sources/U-Boot/OrangePi/edk2
   220         kx 
   220         kx versions    = 0.9.1.1
   220         kx 
   220         kx tarballs    = $(addsuffix .tar.xz, $(addprefix edk2-rk3588-, $(versions)))
   220         kx sha1s       = $(addsuffix .sha1sum, $(tarballs))
   220         kx 
   220         kx patches     = $(CURDIR)/patches/edk2-rk3588-0.9.1.1-f2.patch
   220         kx 
   220         kx .NOTPARALLEL: $(patches)
   220         kx 
   220         kx 
   220         kx BUILD_TARGETS = $(tarballs) $(sha1s) $(patches)
   220         kx 
   220         kx 
   220         kx include ../../../../build-system/core.mk
   220         kx 
   220         kx 
   220         kx .PHONY: download_clean
   220         kx 
   220         kx 
   220         kx $(tarballs):
   220         kx 	@echo -e "\n======= Downloading source tarballs =======" ; \
   220         kx 	 for tarball in $(tarballs) ; do \
   220         kx 	   echo "$(url)/$$tarball" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & \
   220         kx 	 done ; wait
   220         kx 
   220         kx $(sha1s): $(tarballs)
   220         kx 	@for sha in $@ ; do \
   220         kx 	   echo -e "\n======= Downloading '$$sha' signature =======\n" ; \
   220         kx 	   echo "$(url)/$$sha" | xargs -n 1 -P 100 wget $(WGET_OPTIONS) - & wait %1 ; \
   220         kx 	   touch $$sha ; \
   220         kx 	   echo -e "\n======= Check the '$$sha' sha1sum =======\n" ; \
   220         kx 	   sha1sum --check $$sha ; ret="$$?" ; \
   220         kx 	   if [ "$$ret" == "1" ]; then \
   220         kx 	     echo -e "\n======= ERROR: Bad '$$sha' sha1sum =======\n" ; \
   220         kx 	     exit 1 ; \
   220         kx 	   fi ; \
   220         kx 	 done
   220         kx 
   220         kx $(patches): $(sha1s)
   220         kx 	@echo -e "\n======= Create Patches =======\n" ; \
   220         kx 	 ( cd create-0.9.1.1-f2-patch ; ./create.patch.sh ) ; \
   220         kx 	 echo -e "\n"
   220         kx 
   220         kx download_clean:
   220         kx 	@rm -f $(tarballs) $(sha1s) $(patches)