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
/* === This file is part of Calamares - <http://github.com/calamares> === | |
* | |
* Copyright 2014-2015, Teo Mrnjavac <[email protected]> | |
* | |
* Calamares is free software: you can redistribute it and/or modify | |
* it under the terms of the GNU General Public License as published by | |
* the Free Software Foundation, either version 3 of the License, or | |
* (at your option) any later version. | |
* | |
* Calamares is distributed in the hope that it will be useful, |
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
find_package( Qt5 ${QT_VERSION} CONFIG REQUIRED WebKit WebKitWidgets ) | |
include_directories( ${PROJECT_BINARY_DIR}/src/libcalamaresui | |
${QT_QTWEBKIT_INCLUDE_DIR} ) | |
set( CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} | |
${CMAKE_CURRENT_SOURCE_DIR}/CMakeModules ) | |
calamares_add_plugin( webview |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# === This file is part of Calamares - <http://github.com/calamares> === | |
# | |
# Copyright 2015, Rohan Garg <[email protected]> | |
# | |
# Calamares is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or |
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
#!/usr/bin/env python3 | |
# -*- coding: utf-8 -*- | |
# | |
# === This file is part of Calamares - <http://github.com/calamares> === | |
# | |
# Copyright 2015, Rohan Garg <[email protected]> | |
# | |
# Calamares is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or |
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
Mounted /dev/loop6p1 on /tmp/d20150813-16972-px628t | |
Mounted /dev/loop6p2 on /tmp/d20150813-16972-1d8wncr | |
Downloading firmware.tar.gz | |
Unmounting /dev/loop6p2 | |
Unmounting /dev/loop6p1 | |
umount: /tmp/d20150813-16972-1d8wncr: not mounted |
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
Mount.mount(@btldrmntpt) do |boot_dir| | |
Mount.mount(@rootfsmntpt) do |rootfs_dir| | |
r = Firmware.new(@c) | |
t[:boot] = boot_dir | |
t[:modules] = "#{rootfs_dir}/lib/modules/" | |
r.install(t) | |
end | |
end |
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
require 'tmpdir' | |
class Mount | |
def self.mount(path) | |
@mntdir = Dir.mktmpdir | |
fail 'Mounting boot partition failed!' unless system('sudo', | |
'mount', | |
path, | |
@mntdir) | |
puts "Mounted #{path} on #{@mntdir}" |
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
require 'tmpdir' | |
class Mount | |
def initialize | |
@mntdir = Dir.mktmpdir | |
end | |
def mount(path) | |
fail 'Mounting boot partition failed!' unless system('sudo', | |
'mount', |
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
Package: *kwin* | |
Pin: origin "http://pangea-data.s3.amazonaws.com/dci/odroid/debian/" | |
Pin-Priority: 700 |
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
[url "git://github.com/"] | |
insteadOf = ghub: | |
[url "[email protected]:"] | |
pushInsteadOf = ghub: |