Skip to content

Instantly share code, notes, and snippets.

diff --git a/target/linux/lantiq/dts/DM200.dts b/target/linux/lantiq/dts/DM200.dts
index 56c33dd..26783d7 100644
--- a/target/linux/lantiq/dts/DM200.dts
+++ b/target/linux/lantiq/dts/DM200.dts
@@ -33,12 +33,6 @@
lantiq,groups = "mdio";
lantiq,function = "mdio";
};
- conf_out {
- lantiq,pins = "io12", "io15"; // annexa, annexb
/dts-v1/;
#include "vr9.dtsi"
#include <dt-bindings/input/input.h>
/ {
model = "DM200 - Netgear DM200";
chosen {
root@LEDE:/# /etc/init.d/dsl_control status
ATU-C Vendor ID:
ATU-C System Vendor ID:
Chipset: Lantiq-VRX200 Unknown
Firmware Version: 5.8.0.11.1.1
API Version: 4.17.18.6
XTSE Capabilities: , , , , , , ,
Annex:
Line Mode:
Profile:
clang -target armv7a-linux-eabi -no-integrated-as -Qunused-arguments -ccc-gcc-name /home/edward/coreboot/util/crossgcc/xgcc/bin/armv7-a-eabi-gcc -m32 -MMD -pipe -g -nostdinc -nostdlib -Wall -Wundef -Wstrict-prototypes -Wmissing-prototypes -Wwrite-strings -Wredundant-decls -Wno-trigraphs -Wstrict-aliasing -Wshadow -fno-common -ffreestanding -fno-builtin -fomit-frame-pointer -Os -mno-unaligned-access -ffunction-sections -fdata-sections -Isrc -Isrc/include -Ibuild -Isrc/device/oprom/include -include src/include/kconfig.h -Isrc/arch/arm/include -D__PRE_RAM__ -march=armv7-a -mthumb -Isrc/arch/arm/include/armv7/ -D__COREBOOT_ARM_ARCH__=7 -c -o build/mainboard/cubietech/cubieboard/static.romstage.o build/mainboard/cubietech/cubieboard/static.c
/usr/bin/as: unrecognized option '-mfpu=neon'
clang-3.6: error: assembler command failed with exit code 1 (use -v to see invocation)
Makefile.inc:368: recipe for target 'build/mainboard/cubietech/cubieboard/static.romstage.o' failed
make: *** [build/mainboard/cubietech/cubiebo
#!/usr/bin/env python2
import glob
import re
def vendor():
vendor_kconfigs = glob.glob('src/mainboard/*/Kconfig')
for idx in vendor_kconfigs:
m = re.match(r'^src/mainboard/(.*)/Kconfig$', idx)
if m:
#!/usr/bin/env python2
# -*- coding: UTF-8 -*-
# vim: ai ts=4 sts=4 et sw=4
import xml.dom.minidom
import os
# abuild.xml testcase format:
#
This file has been truncated, but you can view the full file.
<?xml version="1.0" encoding="utf-8"?>
<testsuite>
<testcase classname='board' name='aaeon/pfm-540i_revb' time='6' >
<system-out>
<![CDATA[
GEN build.h
CC romstage.inc
POST romstage.inc
GEN generated/crt0.romstage.S
CC generated/crt0.s
// #include "northbridge/intel/sandybridge/sandybridge.h" /* For DEFAULT_RCBABASE. */
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
struct southbridge_usb_port {
int enabled;
int current;
int oc_pin;
From ce4b0728b1249163f667f295dbfa55795a3a59a2 Mon Sep 17 00:00:00 2001
From: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Date: Fri, 17 Oct 2014 20:57:37 +1100
Subject: [PATCH] Fix incorrectly type-dependence in vectors of VectorSpace
type-class
Organization: Altera Praxis Pty Ltd.
To: linux-kernel@vger.kernel.org
VectorSpace takes two types to construct, a Field and abelian Group
respecively. The second type field was incorrectly typed as the same
module Test
import Algebra.AbstractAlgebra
data Test : Type where
test : Test
instance Semigroup Test where
test <+> test = test