Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5318ec6

Browse files
authoredDec 7, 2024
Merge branch 'project-chip:master' into issue_322_temp_8
2 parents 2fdc129 + 84fb78f commit 5318ec6

File tree

732 files changed

+19373
-13483
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

732 files changed

+19373
-13483
lines changed
 

‎.devcontainer/Dockerfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,11 @@ RUN apt-get update \
4040
icecc \
4141
&& :
4242

43-
RUN groupadd -g $USER_GID $USERNAME \
43+
RUN (getent passwd $USER_UID && userdel -f $(getent passwd $USER_UID | cut -d: -f1) || true) \
44+
&& (getent group $USER_GID && groupdel -f $(getent group $USER_GID | cut -d: -f1) || true) \
45+
&& (getent passwd $USERNAME && userdel -f $USERNAME || true) \
46+
&& (getent group $USERNAME && groupdel -f $USERNAME || true) \
47+
&& groupadd -g $USER_GID $USERNAME \
4448
&& useradd --no-log-init -s /bin/bash -u $USER_UID -g $USER_GID -G docker,sudo -m $USERNAME \
4549
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \
4650
&& chmod 0440 /etc/sudoers.d/$USERNAME \

‎.github/.wordlist.txt

+12
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ AFL
4141
AIDL
4242
algs
4343
alloc
44+
allocator
45+
allocators
46+
Ambrose
4447
Ameba
4548
amebad
4649
amebaiot
@@ -317,6 +320,7 @@ cryptographic
317320
CSA
318321
csg
319322
csrrequest
323+
cstdint
320324
csu
321325
csv
322326
ctl
@@ -440,6 +444,7 @@ DNSStubListener
440444
docbuild
441445
Dockerfile
442446
Dockerfiles
447+
docstrings
443448
Don'ts
444449
DoorLock
445450
DoorState
@@ -565,6 +570,8 @@ FlowMeasurement
565570
FluorideConcentrationMeasurement
566571
focusable
567572
forkpty
573+
formatter
574+
formatters
568575
FOTA
569576
FreeRTOS
570577
FreeRTOSConfig
@@ -731,6 +738,7 @@ IPython
731738
ISCAN
732739
isHexString
733740
isLowerCase
741+
isort
734742
isUpperCase
735743
itemName
736744
iterable
@@ -878,6 +886,7 @@ MediaPlayback
878886
MediaTek
879887
MEI
880888
mem
889+
memcpy
881890
memdf
882891
MemMonitoring
883892
menuconfig
@@ -933,6 +942,7 @@ mv
933942
MX
934943
mydir
935944
MyPASSWORD
945+
mypy
936946
MySSID
937947
NAMESERVER
938948
NAMESPACE
@@ -1185,6 +1195,7 @@ rebase
11851195
recommand
11861196
recommanded
11871197
recurse
1198+
refrigeratoralarm
11881199
regen
11891200
registerAttributeAccessOverride
11901201
RegisterCommandHandler
@@ -1442,6 +1453,7 @@ toJson
14421453
tokenization
14431454
tokenized
14441455
tokenizer
1456+
toml
14451457
toolchain
14461458
toolchains
14471459
topologies

0 commit comments

Comments
 (0)