This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Press SPACE to abort autoboot in 1 seconds | |
| => mmc read 0x82000000 0 2 | |
| MMC: no card present | |
| => mmc dev 1 2 | |
| switch to partitions #2, OK | |
| mmc1(part 2) is current device | |
| => mmc read 0x82000000 0 2 | |
| MMC read: dev # 1, block # 0, count 2 ... 2 blocks read: OK | |
| => md.b 0x82000000 20 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (C) 2012 Texas Instruments Incorporated - http://www.ti.com/ | |
| * | |
| * This program is free software; you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License version 2 as | |
| * published by the Free Software Foundation. | |
| */ | |
| /dts-v1/; | |
| /plugin/; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/create_ap b/create_ap | |
| index 6b3b5ca..b214ab1 100755 | |
| --- a/create_ap | |
| +++ b/create_ap | |
| @@ -281,13 +281,13 @@ get_adapter_kernel_module() { | |
| can_be_sta_and_ap() { | |
| # iwconfig does not provide this information, assume false | |
| [[ $USE_IWCONFIG -eq 1 ]] && return 1 | |
| - if [[ "$(get_adapter_kernel_module "$1")" == "brcmfmac" ]]; then | |
| - echo "WARN: brmfmac driver doesn't work properly with virtual interfaces and" >&2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| diff --git a/.config b/home/voodoo/Downloads/config-4.14.79-ti-rt-r86.txt | |
| index f7f2b880c..963ebc78c 100644 | |
| --- a/.config | |
| +++ b/home/voodoo/Downloads/config-4.14.79-ti-rt-r86.txt | |
| @@ -216,8 +216,6 @@ CONFIG_SLAB_FREELIST_RANDOM=y | |
| # CONFIG_SYSTEM_DATA_VERIFICATION is not set | |
| CONFIG_PROFILING=y | |
| CONFIG_TRACEPOINTS=y | |
| -CONFIG_CRASH_CORE=y | |
| -CONFIG_KEXEC_CORE=y |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| voodoo@hades:/opt/github/omap-image-builder$ uname -m | |
| x86_64 | |
| voodoo@hades:/opt/github/omap-image-builder$ ./beagleboard.org_stretch_image.sh | |
| Already up to date. | |
| Current branch master is up to date. | |
| /opt/github/omap-image-builder | |
| Debug: .project | |
| ----------------------------- | |
| tempdir="/opt/github/omap-image-builder/ignore/tmp.PwXxEAQhLm" | |
| time="2019-04-01" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| sudo /opt/scripts/tools/grow_partition.sh | |
| cd ~/ | |
| wget https://remi.avignon.me/bbb/BBB-Patches.zip | |
| unzip BBB-Patches.zip | |
| rm BBB-Patches.zip | |
| sudo reboot | |
| sudo /opt/scripts/tools/update_kernel.sh |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Jumpers 1100 (microSD) | |
| #microSD in x86: (lsblk shows drive is /dev/sdf) | |
| wget https://rcn-ee.net/rootfs/2018-12-10/elinux/debian-9.6-console-armhf-2018-12-10.tar.xz | |
| tar xf debian-9.6-console-armhf-2018-12-10.tar.xz | |
| cd debian-9.6-console-armhf-2018-12-10/ | |
| sudo ./setup_sdcard.sh --mmc /dev/sdf --dtb hwpack/imx8mq-evk.conf | |
| git clone https://github.com/RobertCNelson/imx8-linux-dev |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * Copyright (C) 2018 Me | |
| * | |
| * Virtual cape for I2C1 on connector pins P9.24 P9.26 | |
| * | |
| * This program is free software; you can redistribute it and/or modify | |
| * it under the terms of the GNU General Public License version 2 as | |
| * published by the Free Software Foundation. | |
| */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ets Jun 8 2016 00:22:57 | |
| rst:0x1 (POWERON_RESET),boot:0x13 (SPI_FAST_FLASH_BOOT) | |
| configsip: 0, SPIWP:0xee | |
| clk_drv:0x00,q_drv:0x00,d_drv:0x00,cs0_drv:0x00,hd_drv:0x00,wp_drv:0x00 | |
| mode:DIO, clock div:2 | |
| load:0x3fff0018,len:4 | |
| load:0x3fff001c,len:5756 | |
| load:0x40078000,len:7684 | |
| load:0x40080000,len:7392 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash -x | |
| set -euo pipefail | |
| IFS=$'\n\t' | |
| # This file is part of BlockyTalky 3 | |
| # BlockyTalky 3 Installer | |
| # Configuration | |
| APT_GET=${APT_GET:-"apt-get"} |