mirror of
				git://git.openwrt.org/openwrt/openwrt.git
				synced 2025-10-31 05:54:26 -04:00 
			
		
		
		
	With this commit the `profiles.json` contain both the target specific `default_packages` as well as the device specific `device_packages` as a array of strings. This information is required for downstream projects like the various web-based interactive firmware generators. Signed-off-by: Daniel Golle <daniel@makrotopia.org> Signed-off-by: Paul Spooren <mail@aparcar.org>
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env python3
 | |
| 
 | |
| from os import getenv
 | |
| from pathlib import Path
 | |
| from sys import argv
 | |
| import hashlib
 | |
| import json
 | |
| 
 | |
| if len(argv) != 2:
 | |
|     print("ERROR: JSON info script requires output arg")
 | |
|     exit(1)
 | |
| 
 | |
| json_path = Path(argv[1])
 | |
| bin_dir = Path(getenv("BIN_DIR"))
 | |
| image_file = bin_dir / getenv("IMAGE_NAME")
 | |
| 
 | |
| if not image_file.is_file():
 | |
|     print("Skip JSON creation for non existing image ", image_file)
 | |
|     exit(0)
 | |
| 
 | |
| 
 | |
| def get_titles():
 | |
|     titles = []
 | |
|     for prefix in ["", "ALT0_", "ALT1_", "ALT2_"]:
 | |
|         title = {}
 | |
|         for var in ["vendor", "model", "variant"]:
 | |
|             if getenv("DEVICE_{}{}".format(prefix, var.upper())):
 | |
|                 title[var] = getenv("DEVICE_{}{}".format(prefix, var.upper()))
 | |
| 
 | |
|         if title:
 | |
|             titles.append(title)
 | |
| 
 | |
|     if not titles:
 | |
|         titles.append({"title": getenv("DEVICE_TITLE")})
 | |
| 
 | |
|     return titles
 | |
| 
 | |
| 
 | |
| device_id = getenv("DEVICE_ID")
 | |
| image_hash = hashlib.sha256(image_file.read_bytes()).hexdigest()
 | |
| 
 | |
| image_info = {
 | |
|     "metadata_version": 1,
 | |
|     "target": "{}/{}".format(getenv("TARGET"), getenv("SUBTARGET")),
 | |
|     "version_code": getenv("VERSION_CODE"),
 | |
|     "version_number": getenv("VERSION_NUMBER"),
 | |
|     "profiles": {
 | |
|         device_id: {
 | |
|             "image_prefix": getenv("IMAGE_PREFIX"),
 | |
|             "images": [
 | |
|                 {
 | |
|                     "type": getenv("IMAGE_TYPE"),
 | |
|                     "name": getenv("IMAGE_NAME"),
 | |
|                     "sha256": image_hash,
 | |
|                 }
 | |
|             ],
 | |
|             "device_packages": getenv("DEVICE_PACKAGES").split(),
 | |
|             "supported_devices": getenv("SUPPORTED_DEVICES").split(),
 | |
|             "titles": get_titles(),
 | |
|         }
 | |
|     },
 | |
| }
 | |
| 
 | |
| json_path.write_text(json.dumps(image_info, separators=(",", ":")))
 |