Skip to content

Commit

Permalink
Merge pull request #119 from hkumar343/master
Browse files Browse the repository at this point in the history
RDKBACCL-326: Bundlegen support for BPI R4.
  • Loading branch information
goruklu authored Nov 5, 2024
2 parents 625bd92 + 745296e commit 22500db
Show file tree
Hide file tree
Showing 2 changed files with 8,031 additions and 0 deletions.
122 changes: 122 additions & 0 deletions templates/generic/bpir4_reference.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,122 @@
{
"platformName": "bpir4_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"
]
}
],
"envvar": [
"XDG_RUNTIME_DIR=/tmp"
],
"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 22500db

Please sign in to comment.