diff --git a/docs/www/asset-manifest.json b/docs/www/asset-manifest.json new file mode 100644 index 000000000..d5a5ad1e5 --- /dev/null +++ b/docs/www/asset-manifest.json @@ -0,0 +1,19 @@ +{ + "files": { + "main.js": "./static/js/main.f1d41649.chunk.js", + "main.js.map": "./static/js/main.f1d41649.chunk.js.map", + "runtime-main.js": "./static/js/runtime-main.19678de4.js", + "runtime-main.js.map": "./static/js/runtime-main.19678de4.js.map", + "static/js/2.88eac816.chunk.js": "./static/js/2.88eac816.chunk.js", + "static/js/2.88eac816.chunk.js.map": "./static/js/2.88eac816.chunk.js.map", + "index.html": "./index.html", + "precache-manifest.66a6da2c9bd728142140b2820943c54e.js": "./precache-manifest.66a6da2c9bd728142140b2820943c54e.js", + "service-worker.js": "./service-worker.js", + "static/js/2.88eac816.chunk.js.LICENSE": "./static/js/2.88eac816.chunk.js.LICENSE" + }, + "entrypoints": [ + "static/js/runtime-main.19678de4.js", + "static/js/2.88eac816.chunk.js", + "static/js/main.f1d41649.chunk.js" + ] +} \ No newline at end of file diff --git a/docs/www/assets/img/mll_02.png b/docs/www/assets/img/mll_02.png index faf60e57e..de47b749f 100644 Binary files a/docs/www/assets/img/mll_02.png and b/docs/www/assets/img/mll_02.png differ diff --git a/docs/www/assets/img/mll_03.png b/docs/www/assets/img/mll_03.png index 91f4e4bf5..572125b7a 100644 Binary files a/docs/www/assets/img/mll_03.png and b/docs/www/assets/img/mll_03.png differ diff --git a/docs/www/assets/img/mll_04.png b/docs/www/assets/img/mll_04.png index a45590d6e..05dad110b 100644 Binary files a/docs/www/assets/img/mll_04.png and b/docs/www/assets/img/mll_04.png differ diff --git a/docs/www/assets/img/mll_05.png b/docs/www/assets/img/mll_05.png index 47340fde2..12ac35205 100644 Binary files a/docs/www/assets/img/mll_05.png and b/docs/www/assets/img/mll_05.png differ diff --git a/docs/www/assets/img/mll_06.png b/docs/www/assets/img/mll_06.png index dec8b5395..d9c45636d 100644 Binary files a/docs/www/assets/img/mll_06.png and b/docs/www/assets/img/mll_06.png differ diff --git a/docs/www/assets/js/main.js b/docs/www/assets/js/main.js deleted file mode 100644 index 1a7837489..000000000 --- a/docs/www/assets/js/main.js +++ /dev/null @@ -1,163 +0,0 @@ -function menuSwap(itemIndex) { - for(var i = 1; i <= 6; i++) { - var strItem = "item" + i; - var objItem = document.getElementById(strItem); - objItem.style.display = (i == itemIndex) ? "block" : "none"; - } -} - -function logSwap(itemIndex, show) { - for(var i = 1; i <= 7; i++) { - var showObj = document.getElementById("show" + i); - var hideObj = document.getElementById("hide" + i); - var textObj = document.getElementById("text" + i); - - if(i == itemIndex) { - if(show == true) { - showObj.style.display = "none"; - hideObj.style.display = "block"; - textObj.style.display = "block"; - } else { - showObj.style.display = "block"; - hideObj.style.display = "none"; - textObj.style.display = "none"; - } - } else if(show == true) { - showObj.style.display = "block"; - hideObj.style.display = "none"; - textObj.style.display = "none"; - } - } -} - -function defaultTab(item) { - var hrefPart = document.location.href.split('#')[1]; - - if(hrefPart == undefined) { - hrefPart = item; - } - - loadTab('#' + hrefPart); -} - -function loadTab(hrefPart) { - document.location.href=hrefPart; - loadUrl(); -} - -function loadUrl() { - var hrefPart = document.location.href.split('#')[1]; - switch(hrefPart) { - case 'home' : { - menuSwap(1); - break; - } - case 'changes' : { - menuSwap(2); - break; - } - case 'about' : { - menuSwap(3); - break; - } - case 'tutorial' : { - menuSwap(4); - break; - } - case 'emulator' : { - menuSwap(5); - break; - } - case 'download' : { - menuSwap(6); - break; - } - default: { - document.location.href='#home'; - menuSwap(1); - } - } -} - -function pageLoaded() { - defaultTab('home'); - thankYou(); -} - -function thankYou() { - var footer = document.getElementById("footer"); - var footerDiv = footer.getElementsByTagName("div")[0]; - var html = footerDiv.innerHTML; - - var sepa = ' | '; - var afterSepa = '{2}' - - var hostname = window.location.hostname; - - switch(hostname) { - case 'minimal.idzona.com' : { - html += sepa; - html += afterSepa.replace("{1}", 'microweber.com').replace("{2}", 'Microweber CMS'); - - footerDiv.innerHTML = html; - - break; - } - case 'skamilinux.hu' : { - html += sepa; - html += 'Hosted by skamilinux.hu - thank you!'; - - footerDiv.innerHTML = html; - - break; - } - case 'minimal.linux-bg.org' : { - html += sepa; - html += 'Hosted by linux-bg.org - thank you!'; - - footerDiv.innerHTML = html; - - break; - } - case 'ivandavidov.github.io' : { - document.getElementById('hm5').style.display="none"; - - document.getElementById('dl2').style.display="none"; - document.getElementById('dl5').style.display="none"; - document.getElementById('dl6').style.display="none"; - - document.getElementById('gh1').style.display="none"; - - html += sepa; - html += 'Development website - may not be fully functional.'; - - footerDiv.innerHTML = html; - - break; - } - case 'linux.idzona.com' : { - document.getElementById('hm5').style.display="none"; - - document.getElementById('dl2').style.display="none"; - document.getElementById('dl5').style.display="none"; - document.getElementById('dl6').style.display="none"; - - document.getElementById('gh1').style.display="none"; - - html += sepa; - html += 'Development website - may not be fully functional.'; - - footerDiv.innerHTML = html; - - break; - } - default: { - if(hostname != "") { - html += sepa; - html += afterSepa.replace("{1}", hostname).replace("{2}", hostname); - - footerDiv.innerHTML = html; - } - } - } -} diff --git a/docs/www/index.html b/docs/www/index.html index a9fa33b0c..12a916c48 100644 --- a/docs/www/index.html +++ b/docs/www/index.html @@ -1,593 +1 @@ - - -
- - - - - -sudo apt install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
\r\n set -ex
. Manually run the failing script and identify the failing part. If you are unable to find a solution to your problem, then you can ask someone more experienced Linux guy around you or as alternative you can submit an issue.\r\n dd if=minimal_linux_live.iso of=/dev/xxx
where /dev/xxx
is your USB flash device.\r\n static-get
to search and install software directly in MLL. If you use persistent storage, your installed software will be persisted after reboot.\r\n mll_hello
provides detailed explanation on how to write your own overlay bundle. This particular overlay bundle compiles simple C program and installs it in MLL as executable command.\r\n /etc/autorun
are automatically executed on boot. This feature is used by some overlay bundles which require some functionality to be triggered on boot (e.g. the DHCP overlay bundle).\r\n /minimal/rootfs/usr/src
(ISO image) or in /usr/src
(initramfs). This overlay bundle is enabled by default.\r\n mll_image.tgz
which contains all available software from the MLL ISO image. This image can be imported and used in Docker or in any other container system which supports raw filesystem import. You could add your own software in MLL (e.g. simple HTTP server like 'nweb' which is provided as overlay bundle) and then use Docker instead of running the entire OS.\r\n {MLL_VERSION}
are available as tar.xz archive.\r\n {MLL_VERSION}
are available as tar.xz archive.
+ sudo apt install wget make gawk gcc bc bison flex xorriso libelf-dev libssl-dev
+ set -ex
. Manually run the failing script and identify the failing part. If you are unable to find a solution to your problem, then you can ask someone more experienced Linux guy around you or as alternative you can submit an issue.
+ dd if=minimal_linux_live.iso of=/dev/xxx
where /dev/xxx
is your USB flash device.
+ /etc/autorun
are automatically executed on boot. This feature is used by some overlay bundles which require some functionality to be triggered on boot (e.g. the DHCP overlay bundle).
+ /minimal/rootfs/usr/src
(ISO image) or in /usr/src
(initramfs). This overlay bundle is enabled by default.
+ mll_image.tgz
which contains all available software from the MLL ISO image. This image can be imported and used in Docker or in any other container system which supports raw filesystem import. You could add your own software in MLL (e.g. simple HTTP server like 'nweb' which is provided as overlay bundle) and then use Docker instead of running the entire OS.
+ static-get
to search and install software directly in MLL. If you use persistent storage, your installed software will be persisted after reboot.
+ mll_hello
provides detailed explanation on how to write your own overlay bundle. This particular overlay bundle compiles simple C program and installs it in MLL as executable command.
+