Skip to content

Commit

Permalink
REFPLTB-3201 : Create RPI4 Reference Broadband Kirkstone JSON for Bun…
Browse files Browse the repository at this point in the history
…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
SsandhyaR committed Oct 17, 2024
1 parent 8022d49 commit cf8671d
Show file tree
Hide file tree
Showing 4 changed files with 19,218 additions and 0 deletions.
133 changes: 133 additions & 0 deletions templates/generic/rpi4_64_reference_bb_kirkstone.json
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"
}
}
Loading

0 comments on commit cf8671d

Please sign in to comment.