Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/58593115453199eb136f1c625bc29e44d057c07e You should set ROOT_URL correctly, otherwise the web may not work correctly.

dtoc: Move the struct import into the correct order

This should be in with the other system includes. Move it.

Signed-off-by: Simon Glass <sjg@chromium.org>
master
Simon Glass 9 years ago
parent 785f1548a9
commit 5859311545
  1. 3
      tools/dtoc/dtoc.py

@ -9,6 +9,7 @@
import copy
from optparse import OptionError, OptionParser
import os
import struct
import sys
import fdt_util
@ -29,8 +30,6 @@ except ImportError:
from fdt_fallback import Fdt
import fdt_fallback as fdt
import struct
# When we see these properties we ignore them - i.e. do not create a structure member
PROP_IGNORE_LIST = [
'#address-cells',

Loading…
Cancel
Save