ff4ff35918
Red Bear OS is a full fork. All sources must be available from git clone with zero network access. Removed gitignore rules that excluded fetched source trees under recipes/*/source/, local/recipes/kde/*/source/, local/recipes/qt/*/source/, and vendor source trees. Build artifacts (target/, build/, source.tar, *.o, *.so) remain excluded. 127291 files added — kernel, relibc, base, bootloader, pkgar, all KDE/Qt frameworks, mesa, wayland, DRM drivers, and every other recipe source.
20 lines
832 B
XML
20 lines
832 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<scxml xmlns="http://www.w3.org/2005/07/scxml" version="1.0" name="TopMachine" datamodel="ecmascript">
|
|
<datamodel>
|
|
<data id="doneCounter" expr="0"/>
|
|
</datamodel>
|
|
<state id="topState">
|
|
<invoke type="scxml" id="submachine.1" src="file:submachineA.scxml"/>
|
|
<invoke type="scxml" id="submachine.2" src="file:submachineA.scxml"/>
|
|
<invoke type="scxml" id="submachine.3" src="file:submachineB.scxml"/>
|
|
<transition event="done.invoke">
|
|
<assign location="doneCounter" expr="doneCounter + 1"/>
|
|
<if cond="doneCounter === 3">
|
|
<send event="goToFinal" delay="1s"/>
|
|
</if>
|
|
</transition>
|
|
<transition event="goToFinal" target="finalState"/>
|
|
</state>
|
|
<final id="finalState"/>
|
|
</scxml>
|