Skip to content

Commit

Permalink
Merge pull request #22 from I2SE/master
Browse files Browse the repository at this point in the history
Some fixes and spec file update
  • Loading branch information
razzlefratz committed Nov 17, 2013
2 parents 7c1f177 + 7458fd3 commit 650c7ab
Show file tree
Hide file tree
Showing 9 changed files with 40 additions and 7 deletions.
2 changes: 1 addition & 1 deletion mme/UnwantedMessage.c
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@

/*====================================================================*
*
* bool UnwantedMessage (void const * memory, size_t extent, uint8_t MMV, uint16_t MMTYPE);
* signed UnwantedMessage (void const * memory, size_t extent, uint8_t MMV, uint16_t MMTYPE);
*
* mme.h
*
Expand Down
24 changes: 22 additions & 2 deletions open-plc-utils.spec
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@

Summary: Open version of the Qualcomm Atheros Powerline Toolkit
Name: open-plc-utils
Version: 0.0.2
Version: 0.0.3
Release: 1
Source: https://codeload.github.com/qca/open-plc-utils/zip/master/open-plc-utils-master.zip
URL: https://github.com/qca/open-plc-utils.git
License: ISC
License: BSD
Vendor: Qualcomm-Atheros <[email protected]>
Group: Productivity/Networking/Diagnostic
BuildRoot: {_tmppath}/%{name}-%{version}-build
Expand All @@ -18,6 +18,15 @@ AutoReqProv: on
This package installs the tools required to configure Qualcomm-Atheros
Powerline devices on the network.

%package slac
License: BSD
Summary: SLAC tools of the Qualcomm Atheros Powerline Toolkit
Group: Development/Tools/Other
AutoReqProv: on

%description slac
This package installs the tools for Signal Level Attenuation Characterization.

%prep -q
%setup -n open-plc-utils-master

Expand Down Expand Up @@ -250,6 +259,17 @@ rm -rf "%buildroot"
%{_mandir}/man1/weeder.1.gz
%{_mandir}/man1/xml2pib.1.gz

%files slac
%defattr (-,root,root)
/usr/local/bin/evse
/usr/local/bin/pev
%{_mandir}/man1/evse.1.gz
%{_mandir}/man1/pev.1.gz

%changelog
* Thu Nov 14 2013 Stefan Wahren <[email protected]> - 0.0.3-1
- Update License
- Add new package slac

* Sat Aug 31 2013 Stefan Wahren <[email protected]> - 0.0.2-1
- Initial package based on the debian branch
2 changes: 1 addition & 1 deletion pib/getpib.c
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ int main (int argc, char const * argv [])
argc--;
argv++;
header = (struct pib_header *)(buffer);
if (extent != LE16TOH (header->PIBLENGTH))
if (header->PIBLENGTH && (extent != LE16TOH (header->PIBLENGTH)))
{
error (1, ECANCELED, "Bad PIB filesize: %s", file.name);
}
Expand Down
1 change: 1 addition & 0 deletions plc/plc.c
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,7 @@ struct plc plc =
PLC_COUNT,
PLC_INDEX,
PLC_FLAGS,
PLC_FLAGS,
};


Expand Down
2 changes: 1 addition & 1 deletion plc/plchostd.c
Original file line number Diff line number Diff line change
Expand Up @@ -495,7 +495,7 @@ int main (int argc, char const * argv [])
extern void terminate (signo_t);
static char const * optv [] =
{
"dFi:n:N:p:P:qs:t:vw:x",
"dFi:n:N:p:P:qs:S:t:vw:x",
"-N file -P file [-S file] [-n file] [-p file]",
"Qualcomm Atheros PLC Host Daemon",
"d\texecute in background as daemon",
Expand Down
2 changes: 1 addition & 1 deletion scripts/baud.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
#!/bin/sh

# ====================================================================
# set serial port parameters on a Linux system;
Expand Down
10 changes: 10 additions & 0 deletions slac/evse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,16 @@
# configure a QCA7000 PIB file as a SLAC-EVSE on Linux or Cygwin.
#

if [ $# -ne 1 ]; then
cat << EOF
usage: evse.sh PIBFILE
This script configures a QCA7000 PIB file as a SLAC-EVSE
EOF
exit 1
fi

# ====================================================================
# Manufacturer HFID;
# --------------------------------------------------------------------
Expand Down
3 changes: 2 additions & 1 deletion slac/pev.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
#!/bin/sëÞöÏfile: slac/pev.sh
#!/bin/sh
# file: slac/pev.sh

#
# configure a QCA7000 PIB file as a SLAC-PEV on Linux or Cygwin.
Expand Down
1 change: 1 addition & 0 deletions slac/pl16-evse.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/bin/sh
# file: slac/pl16-evse.sh

# ====================================================================
Expand Down

0 comments on commit 650c7ab

Please sign in to comment.