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
do_expand_rootfs() { | |
# Get the starting offset of the root partition | |
PART_START=$(parted /dev/mmcblk0 -ms unit s p | grep "^2" | cut -f 2 -d:) | |
[ "$PART_START" ] || return 1 | |
# Return value will likely be error for fdisk as it fails to reload the | |
# partition table because the root fs is mounted | |
fdisk /dev/mmcblk0 <<EOF | |
p | |
d | |
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
#! /bin/bash | |
# Originally posted to http://www.raspberrypi.org/phpBB3/viewtopic.php?f=29&t=14255 | |
# This script is used to check a pin at half second intervals and | |
# will shutdown the system if the pin is at a low level. | |
# Portions of this script adapted from "GPIO Driving Example (Shell script)" | |
# found on elinux.org . |
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
14:54:14 T:1101049856 DEBUG: OnKey: 11 (0b) pressed, action is Select | |
14:54:14 T:1101049856 DEBUG: OnPlayMedia /media/iso/AVATAR.iso | |
14:54:14 T:1101049856 DEBUG: CPlayerCoreFactory::GetPlayers(/media/iso/AVATAR.iso) | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: system rules | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: matches rule: system rules | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtv | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: hdhomerun/myth/rtmp/mms/udp | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: lastfm/shout | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: rtsp | |
14:54:15 T:1101049856 DEBUG: CPlayerSelectionRule::GetPlayers: considering rule: streams |
NewerOlder