-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
REFPLTB-3201 : Create RPI4 Reference Broadband Kirkstone JSON for Bun…
…dleGen templates/generic Reason for change : Creating the json files to support RPI4 kirkstone both 32 bit and 64 bit broadband bundles Test procedure : Created oci bundles and tested with DobbyTool Risk : Low Signed-off-by: SsandhyaR <[email protected]>
- Loading branch information
Showing
4 changed files
with
19,218 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,133 @@ | ||
{ | ||
"platformName": "rpi4_64_reference", | ||
"os": "linux", | ||
"arch": { | ||
"arch": "aarch64", | ||
"variant": "v8" | ||
}, | ||
"rdk": { | ||
"version": "2024Q3", | ||
"supportedFeatures": [ | ||
"DeviceInfo", | ||
"org.rdk.Network", | ||
"org.rdk.OCIContainer", | ||
"org.rdk.Proxies" | ||
] | ||
}, | ||
"hardware": { | ||
"graphics":false | ||
}, | ||
"storage": { | ||
"persistent": { | ||
"storageDir": "/opt/dac_apps/data/0", | ||
"maxSize": "100M" | ||
} | ||
}, | ||
"gpu": { | ||
"extraMounts": [ | ||
{ | ||
"source": "/etc/ssl/certs", | ||
"destination": "/etc/ssl/certs", | ||
"type": "bind", | ||
"options": [ | ||
"rbind", | ||
"nosuid", | ||
"nodev", | ||
"ro", | ||
"X-mount.mkdir" | ||
] | ||
}, | ||
{ | ||
"source": "/usr/share/ca-certificates", | ||
"destination": "/usr/share/ca-certificates", | ||
"type": "bind", | ||
"options": [ | ||
"rbind", | ||
"nosuid", | ||
"nodev", | ||
"ro", | ||
"X-mount.mkdir" | ||
] | ||
}, | ||
{ | ||
"source": "/tmp/{id}", | ||
"destination": "/tmp/rialto-0", | ||
"type": "bind", | ||
"options": [ | ||
"rbind", | ||
"rw", | ||
"X-dobby.optional" | ||
] | ||
} | ||
], | ||
"envvar": [ | ||
"XDG_RUNTIME_DIR=/tmp", | ||
"RIALTO_SOCKET_PATH=/tmp/rialto-0" | ||
], | ||
"devs": [ | ||
], | ||
"gfxLibs": [ | ||
] | ||
}, | ||
"mounts": [ | ||
{ | ||
"source": "/usr/lib/libstdc++.so.6", | ||
"destination": "/usr/lib/libstdc++.so.6", | ||
"options": [ | ||
"rbind", | ||
"nosuid", | ||
"nodev", | ||
"ro" | ||
], | ||
"type": "bind" | ||
}, | ||
{ | ||
"source": "/lib/libgcc_s.so.1", | ||
"destination": "/lib/libgcc_s.so.1", | ||
"options": [ | ||
"rbind", | ||
"nosuid", | ||
"nodev", | ||
"ro" | ||
], | ||
"type": "bind" | ||
}, | ||
{ | ||
"source": "tmpfs", | ||
"destination": "/tmp", | ||
"options": [ | ||
"nosuid", | ||
"strictatime", | ||
"mode=755", | ||
"size=65536k" | ||
], | ||
"type": "tmpfs" | ||
} | ||
], | ||
"network": { | ||
"options": [ | ||
"nat", | ||
"open", | ||
"private" | ||
] | ||
}, | ||
"envvar": [ | ||
], | ||
"resourceLimits": [ | ||
{ | ||
"type": "RLIMIT_NPROC", | ||
"hard": 300, | ||
"soft": 300 | ||
}, | ||
{ | ||
"type": "RLIMIT_RTPRIO", | ||
"hard": 6, | ||
"soft": 6 | ||
} | ||
], | ||
"disableUserNamespacing": true, | ||
"logging": { | ||
"mode": "file", | ||
"logDir": "/var/log" | ||
} | ||
} |
Oops, something went wrong.