aboutsummaryrefslogtreecommitdiffstats
path: root/package/libs/libnfnetlink/Makefile
blob: f9ade14bc795758e6c150823e85f83808b3a2ad7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
generated by cgit v1.2.3 (git 2.25.1) at 2024-07-28 17:34:33 +0000
 


>,
		action='store',
		type=auto_int,
		help='Load Address')

	parser.add_argument('--output-file',
		dest='output_file',
		action='store',
		type=str,
		help='Output file')

	args = parser.parse_args()

	if (not args.input_file) or (not args.output_file):
		parser.print_help()

	if not args.entry_addr:
		args.entry_addr = 0x80010000

	if not args.load_addr:
		args.load_addr = 0x80010000

	create_output(args)

main()