Mainly 4 parts: - scripts for providing rpmdb and yum repos to VM (choosen by qvm-set-updatevm) - VM script for downloading updates (qubes_download_dom0_updates.sh) - qfile-dom0-unpacker which receive updates, check signatures and place its in dom0 local yum repo - qvm-dom0-upgrade which calls all of above and after all yum gpk-update-viewer Besides qvm-dom0-upgrade, updates are checked every 6h and user is prompted if want to download it. At dom0 side gpk-update-icon (disabled yet) should notice new updates in "local" repo.
		
			
				
	
	
		
			15 lines
		
	
	
		
			654 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			654 B
		
	
	
	
		
			Makefile
		
	
	
	
	
	
CC=gcc
 | 
						|
CFLAGS=-g -Wall -I../common -fPIC -pie
 | 
						|
all:	dvm_file_editor qfile-agent-dvm qfile-agent qfile-unpacker
 | 
						|
dvm_file_editor: dvm_file_editor.o ../common/ioall.o
 | 
						|
	$(CC) -pie -g -o $@ $^
 | 
						|
qfile-agent-dvm: qfile-agent-dvm.o ../common/ioall.o ../common/gui-fatal.o
 | 
						|
	$(CC) -pie -g -o $@ $^
 | 
						|
qfile-agent: qfile-agent.o ../common/ioall.o ../common/gui-fatal.o ../common/copy_file.o ../common/crc32.o
 | 
						|
	$(CC) -pie -g -o $@ $^
 | 
						|
qfile-unpacker: qfile-unpacker.o ../common/ioall.o ../common/gui-fatal.o ../common/copy_file.o ../common/unpack.o ../common/crc32.o
 | 
						|
	$(CC) -pie -g -o $@ $^
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f qfile-agent-dvm qfile-agent qfile-unpacker dvm_file_editor *.o *~
 |