- Create the disk
Let's create a raw disk (you can use other tools like dd
too)
qemu-img create -f raw kernel-dev.img 20G
Now install the system
#!/bin/sh | |
pdftotext -layout "$@" - | sed -e '/^[0-9][0-9][0-9][0-9][0-9][0-9]/!d' -e 's|,|\.|g' -e '/FALTOU/d'| awk -F '[[:space:]][[:space:]]+' '{print $4}' | R -e 'd <- density(scan(file("stdin"))); plot(d, main="Notas de SI"); polygon(d, col="red")' |
CFLAGS :=$(CFLAGS) -Wall -Wextra -std=c99 -pedantic -ggdb | |
LDFLAGS :=$(LDFLAGS) #-lm -pthread | |
PROGRAM =is_ASCII | |
SRCDIR =source | |
INCDIR =include | |
OUTDIR =out | |
SRCS :=$(wildcard $(SRCDIR)/*.c) |
# Maintainer: Filipe Laíns (FFY00) <[email protected]> | |
pkgname=discord-canary | |
_pkgname=DiscordCanary | |
pkgver=0.0.82 | |
pkgrel=4 | |
pkgdesc="All-in-one voice and text chat for gamers that's free and secure. (canary build)" | |
arch=('x86_64') | |
url='https://discordapp.com' | |
license=('custom') |
openapi: 3.0.0 | |
servers: | |
- url: 'http://localhost:8080' | |
info: | |
version: 0.0.1 | |
title: ratbag-emu | |
license: | |
name: MIT | |
url: 'https://raw.githubusercontent.com/libratbag/ratbag-emu/master/LICENSE' |
@pytest.fixture(autouse=True, scope='session') | |
@pytest.mark.first | |
def server(self, port_range=[9000, 9999]): | |
p = port = None | |
try: | |
stdout = open('ratbag-emu-log-stdout.txt', 'w') | |
stderr = open('ratbag-emu-log-stderr.txt', 'w') | |
def try_port(port): | |
ret = False |
U-Boot 2017.07-RELEASE-g78ed34f31579 (Sep 29 2017 - 07:43:44 -0700) | |
DRAM: 242 MiB | |
machid : 0x8010001 | |
Product: meraki_Maggot | |
NAND: ONFI device found | |
128 MiB | |
Using default environment | |
In: serial |
#!/bin/sh | |
pdftk $1 output fixed.pdf | |
pdftk fixed.pdf output uncompressed.pdf uncompress | |
sed -e 's|/Watermark||g' -e 's|<.*WatermarkSettings.*>||g' uncompressed.pdf > unwatermarked.pdf | |
pdftk unwatermarked.pdf output compressed.pdf compress |
Let's create a raw disk (you can use other tools like dd
too)
qemu-img create -f raw kernel-dev.img 20G
Now install the system
What is the current state/timeline?
GCC for FPGAs
prefix
(/usr/local
for users, /usr
for distributions)libdir
(lib
, lib32
or lib64
, distribution dependent)Allows setting libexecdir
(if used)
#!/usr/bin/python | |
import inspect | |
def introspect(obj, prefix=None, filter_underscore=False, walked=set()): | |
try: | |
for el in inspect.getmembers(obj): | |
name, child_obj = el |