This guide on how to convert an SVN repository to a git repository was mostly taken from John Albin Wilkins post on Converting a Subversion repository to Git.
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
| /home/hexc0de/dev/efidroid/out/target/arm/fuse/lib/.libs/libfuse3.a(fuse.o): In function `fuse_load_so_module': | |
| /home/hexc0de/dev/efidroid/out/target/arm/fuse/lib/fuse.c:256: warning: Using 'dlopen' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking | |
| /home/hexc0de/dev/efidroid/out/target/arm/busybox/libbusybox.a(ash.o): In function `argstr': | |
| ash.c:(.text.argstr+0x160): warning: Using 'getpwnam' in statically linked applications requires at runtime the shared libraries from the glibc version used for linking | |
| Build environment: Linux-4.18.12-xanmod7-x86_64-with-Ubuntu-18.04-bionic | |
| Build start time: 02:02:09, Oct.12 2018 | |
| WORKSPACE = /home/hexc0de/dev/efidroid/out/target/arm/uefiapp_EFIDroidUi | |
| PACKAGES_PATH = /home/hexc0de/dev/efidroid/out/target/arm/uefiapp_EFIDroidUi:/home/hexc0de/dev/efidroid/uefi/edk2:/home/hexc0de/dev/efidroid/uefi/edk2packages | |
| ECP_SOURCE = /home/hexc0de/dev/efidroid/uefi/edk2/EdkCompatibilityPkg |
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
| 00000000-0d3fffff : System RAM | |
| 00008000-01277b2b : Kernel code | |
| 0140e000-0175392b : Kernel data | |
| 0fe00000-9f7fffff : System RAM | |
| ac000000-bfffffff : System RAM | |
| f9017000-f9017fff : msm-watchdog | |
| f920c100-f92fbfff : f9200000.dwc3 | |
| f9824900-f9824a9f : mmc0 | |
| f9923000-f9923fff : spi_qsd | |
| f9925000-f9925fff : f9925000.i2c |
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
| // Slightly modified Adalight protocol implementation that uses FastLED | |
| // library (http://fastled.io) for driving WS2811/WS2812 led stripe | |
| // Was tested only with Prismatik software from Lightpack project | |
| #include "FastLED.h" | |
| #define NUM_LEDS 114 // Max LED count | |
| #define LED_PIN 6 // arduino output pin | |
| #define GROUND_PIN 10 | |
| #define BRIGHTNESS 255 // maximum brightness |
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
| <!-- | |
| To force Tomcat to redirect and revert all requested HTTP traffic over to HTTPS, configure the `conf/web.xml` file with the below block. | |
| This should be placed at the very end of the file near and above the ending `</webapp>` tag: | |
| --> | |
| <security-constraint> | |
| <web-resource-collection> | |
| <web-resource-name>Automatic Forward to HTTPS/SSL | |
| </web-resource-name> | |
| <url-pattern>/*</url-pattern> | |
| </web-resource-collection> |
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
| GNU gdb (GDB) Mer (7.5.1+git3) | |
| Copyright (C) 2012 Free Software Foundation, Inc. | |
| License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html> | |
| This is free software: you are free to change and redistribute it. | |
| There is NO WARRANTY, to the extent permitted by law. Type "show copying" | |
| and "show warranty" for details. | |
| This GDB was configured as "armv7hl-meego-linux-gnueabi". | |
| For bug reporting instructions, please see: | |
| <http://www.gnu.org/software/gdb/bugs/>... | |
| Reading symbols from /usr/lib/qt5/bin/qmlscene...Missing separate debuginfo for /usr/lib/qt5/bin/qmlscene |