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