This file contains 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
From: Enrico Jorns <[email protected]> | |
Date: Wed, 13 Dec 2017 16:56:52 +0100 | |
Subject: [PATCH] NOT FOR MAINLINE: src/bootchooser: add -i argument to | |
barebox-state call | |
This will load DTB from fixed EFI partition mount point on x86 | |
Signed-off-by: Enrico Jorns <[email protected]> | |
--- | |
src/bootchooser.c | 2 ++ |
This file contains 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
image boot.vfat { | |
vfat { | |
file barebox.bin { image = "barebox-raspberry-pi-3.img" } | |
files = { @BOOTFILES@ } | |
} | |
name = boot | |
} | |
image data.ext4 { | |
ext4 { |
This file contains 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/sh | |
# ------------------------------------------------------------------------------ | |
# Upload file or directory to your server. | |
# Directory will be compressed to a .tar.gz archive | |
# | |
# Note: Program 'xclip' recommended for copying to X clipboard | |
# ------------------------------------------------------------------------------ | |
[email protected]:subdir | |
OUTSERVER=http://subdir.server.de |
This file contains 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
SUBSYSTEMS=="usb", KERNEL=="ttyUSB[0-9]*", ATTRS{idVendor}=="0403", ATTRS{idProduct}=="6001", ATTRS{product}=="INGA", SYMLINK+="inga%s{serial}" |
This file contains 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
#ifndef _INGA_PIN_DBG_H_ | |
#define _INGA_PIN_DBG_H_ | |
/** | |
* @defgroup inga_pin_dbg INGA pin debugging library for timing analyzis | |
* | |
* This library provides simple macros for toggling or switching on/off I/O port pins | |
* of the INGA sensor platform. | |
* | |
* The pins are mapped to pin numbers from 0 to 7. |